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…

Write a C program and define a function that takes the length of your name as an input parameter and then allocates memory dynamically to store your name.

#include<stdio.h> #includeint main(){int *n; n = (char*) malloc (20 * sizeof(char) );pritf(“Enter your name”);gets(n); pritf(“Your name is”);while(n!=’0′); printf(“%c”,n++); 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 Computer…

Write a C program to dynamically allocate memory for an array to store runs scored by Virat Kohli and write a function to find the maximum one.

#include<stdio.h> #includeint main(){int *n,x,large=0; n = (int*) malloc (10 * sizeof(int) );pritf(“Enter the runs scored by Virat Kohli in the last ten ODI cricket matches”);for( int i=0; i<10; i++ ){scanf(“%d”,(n + i) );} for( int i=0; i<10; i++ ){for( int j=i+; i<10; j++ ){if((n+i)>(n+j)){x=*(n+i);*(n+i)=*(n+j);*(n+j)=temp;}}}pritf(“Maximum runs scored by Virat Kohli is %d”,*(n+9));return 0;} Are you looking…

Write a C program to dynamically allocate memory for an array to store 10 integers and display the first 5 out of them.

#include<stdio.h> #includeint main(){int *n; n = (int*) malloc (10 * sizeof(int) );pritf(“Enter the Number”);for( int i=0; i<10; i++ ){scanf(“%d”,(n + i) );}printf(“Your 1st 5 number are”)for( int i=0; i<5; i++ ){printf( “%d\n”,*(n + i) );}return 0;} Are you looking for the Class 10 Computer Science SEBA Solution? You are in the right place! This guide…