Give two examples of secondary memories.

`Floppy disk Hard disk. #FloppyDisk #HardDisk #ComputerStorage #DataStorage #TechBasics #ITfundamentals #DigitalStorage #ComputerHardware #StorageDevices Are you looking for the Class 9 Computer Science SEBA Solution? You are in the right place! This guide provides accurate, well-structured, and easy-to-understand solutions to all topics covered in the SEBA Class 9 Computer Science syllabus. Our Class 9 Computer Science…

What is AI?

`Artificial Intelligence (AI) is the science of creating machines that can think like humans. It can perform tasks that are considered “smart.” AI technology can handle and process large amounts of data in ways that humans cannot. #ArtificialIntelligence #SmartTechnology #MachineLearning #TechInnovation Are you looking for the Class 9 Computer Science SEBA Solution? You are in…

Give two examples of second-generation computers.

`IBM604, IBM1401, UNIVAC 1108 IBM604 #IBM1401 #UNIVAC1108 #MainframeComputers #RetroComputing #HistoryOfComputing #VintageTech #TechHistory #ComputingEvolution #Innovation Are you looking for the Class 9 Computer Science SEBA Solution? You are in the right place! This guide provides accurate, well-structured, and easy-to-understand solutions to all topics covered in the SEBA Class 9 Computer Science syllabus. Our Class 9 Computer…

Give the full from of ENIAC and EDVAC.

`ENIAC – Electronic Numerical Integrator and computerEDVAC – Electronic Discrete Variable Automatic Calculator. #EDVAC #ComputerHistory #EarlyComputers #TechPioneers #ElectronicComputers #HistoryOfComputing #InnovationInTech #VintageComputing #FirstComputers Are you looking for the Class 9 Computer Science SEBA Solution? You are in the right place! This guide provides accurate, well-structured, and easy-to-understand solutions to all topics covered in the SEBA Class…

Who invented Jacquard’s loom?

`Joseph Jacquard invented Jacquard loom. `HistoryOfTechnology #JosephJacquard #JacquardLoom #Invention #TextileInnovation #IndustrialRevolution #TechPioneer #AutomationHistory #WeavingTechnology Are you looking for the Class 9 Computer Science SEBA Solution? You are in the right place! This guide provides accurate, well-structured, and easy-to-understand solutions to all topics covered in the SEBA Class 9 Computer Science syllabus. Our Class 9 Computer…

Name a popular pointing device.

`Mouse is a popular pointing device. ComputerBasics #PointingDevice #Mouse #Tech101 #ComputerHardware #ITfundamentals #TechLearning #BeginnerTech #DigitalLiteracy Are you looking for the Class 9 Computer Science SEBA Solution? You are in the right place! This guide provides accurate, well-structured, and easy-to-understand solutions to all topics covered in the SEBA Class 9 Computer Science syllabus. Our Class 9…

What is a computer?

`A computer is an electronic device that accept data from the user, process the given data and generate the processed output. `Computer #Technology #DataProcessing #ElectronicDevice #TechBasics Are you looking for the Class 9 Computer Science SEBA Solution? You are in the right place! This guide provides accurate, well-structured, and easy-to-understand solutions to all topics covered…

Who is known as the ‘father of the modern computer’?

Charles Babbage is known as the ‘father of the modern computer’ `#Computer #Technology #DataProcessing #ElectronicDevice #TechBasics Are you looking for the Class 9 Computer Science SEBA Solution? You are in the right place! This guide provides accurate, well-structured, and easy-to-understand solutions to all topics covered in the SEBA Class 9 Computer Science syllabus. Our Class…

Write a C program to store some integer variables in an array. (Q9)

#include<stdio.h> #includeint main(){int n[10],count=0,sum=0;int *ptr; ptr = (int*) malloc (10 * sizeof(int) );pritf(“Enter array elements”);for (int i=0;i<10;i++){scanf(“%d”,&n[i]);} for(inti=0;i<10;i++){if(n[i]%3==0){(ptr+i)=n[i]; count++; printf(“%d\n”,(ptr+i));sum=sum+*(ptr+i);} } printf(“Number of non zero elements that is divisible by 3 is %d”,count);printf(“The sum is %d”,sum); return 0;} Are you looking for the Class 10 Computer Science SEBA Solution? You are in the right place!…

Write a C program to store some integer variables in an array. (Q8)

#include<stdio.h>int main(){int n[10];int *ptr; ptr = (int*) malloc (10 * sizeof(int) );pritf(“Enter array elements”);for (int i=0;i<10;i++){scanf(“%d”,&n[i]);} for(inti=0;i<10;i++){if(n[i]%2==0){(ptr+i)=n[i]; printf(“%d\n”,(ptr+i));} } return 0;} Are you looking for the Class 10 Computer Science SEBA Solution? You are in the right place! This guide provides accurate, well-structured, and easy-to-understand solutions to all topics covered in the SEBA Class 10…