Class 5 Mathematics Test Paper 10
Students should do the following test paper to prepare for the Mathematics Class test/ term examination. The below test papers of Mathematics are of 40 marks. Practice them before going for your Maths tests.
Class 5 Mathematics Test Paper 9
Students should do the following test paper to prepare for the Mathematics Class test/ term examination. The below test papers of Mathematics are of 40 marks. Practice them before going for your Maths tests.
Class 5 Mathematics Test Paper 8
Students should do the following test paper to prepare for the Mathematics Class test/ term examination. The below test papers of Mathematics are of 40 marks. Practice them before going for your Maths tests.
Class 5 Mathematics Test Paper 7
Students should do the following test paper to prepare for the Mathematics Class test/ term examination. The below test papers of Mathematics are of 40 marks. Practice them before going for your Maths tests.
Class 5 Mathematics Test Paper 6
Students should do the following test paper to prepare for the Mathematics Class test/ term examination. The below test papers of Mathematics are of 40 marks. Practice them before going for your Maths tests.
Class 5 Mathematics Test Paper 5
Students should do the following test paper to prepare for the Mathematics Class test/ term examination. The below test papers of Mathematics are of 40 marks. Practice them before going for your Maths tests.
Class 5 Mathematics Test Paper 4
Students should do the following test paper to prepare for the Mathematics Class test/ term examination. The below test papers of Mathematics are of 40 marks. Practice them before going for your Maths tests.
Class 5 Mathematics Test Paper 3
Students should do the following test paper to prepare for the Mathematics Class test/ term examination. The below test papers of Mathematics are of 40 marks. Practice them before going for your Maths tests.
Class 5 Mathematics Test Paper 2
Students should do the following test paper to prepare for the Mathematics Class test/ term examination. The below test papers of Mathematics are of 40 marks. Practice them before going for your Maths tests.
Class 5 Mathematics Test Paper 1
Students should do the following test paper to prepare for the Mathematics Class test/ term examination. The below test papers of Mathematics are of 40 marks. Practice them before going for your Maths tests.
CBSE Class 10 Computer Science C program to illustrate use of function with argument and return value
//program to illustrate use of function with argument and return value #include int sqr(int); //function declaration void main() { int number, result; printf("\n Enter your number = "); scanf("%d", &number); result=sqr(number); //function call printf("\n the square of %d is %d…
CBSE Class 10 Computer Science C program to illustrate use of function with argument and no return value
//program to illustrate use of function with argument and no return value #include void cube(int); //function declaration void main() { int number; printf("Enter your number = "); scanf("%d", &number); cube(number); //function call } void cube (int num1) //function definition {…
CBSE Class 10 Computer Science C program to illustrate use of function which return no value
//program to illustrate use of function which return no value #include void print_line(); //function declaration void main() { print_line(); //function call printf("Welcome to the world of C function……"); print_line(); //function call } void print_line() //function definition {…
CBSE Class 10 Computer Science C program of addition(function with return type and with arguments)
//program of addition(function with return type and with arguments) #include #include void main() { int n1,n2,res; int add(int,int); //function declaration clrscr(); printf("\n Enter number 1 = "); scanf("%d", &n1); printf("\n Enter number 2 = "); scanf("%d", &n2); res=add(n1,n2…
CBSE Class 10 Computer Science C program to print table of given number
//program to print table of given number #include #include void main() { int i,no; clrscr(); printf("\n Enter number for table = "); scanf("%d", &no); for(i=1;i