CBSE Class 10 Computer Science Function MCQs

Refer to CBSE Class 10 Computer Science Function MCQs provided below. CBSE Class 10 Computers MCQs with answers available in Pdf for free download. The MCQ Questions for Class 10 Computers with answers have been prepared as per the latest syllabus, CBSE books and examination pattern suggested in Class 10 by CBSE, NCERT and KVS. Multiple Choice Questions for Function are an important part of exams for Class 10 Computers and if practiced properly can help you to get higher marks. Refer to more Chapter-wise MCQs for CBSE Class 10 Computers and also download more latest study material for all subjects

MCQ for Class 10 Computers Function

Class 10 Computers students should refer to the following multiple-choice questions with answers for Function in Class 10. These MCQ questions with answers for Class 10 Computers will come in exams and help you to score good marks

Function MCQ Questions Class 10 Computers with Answers

(1) .......... shows one of the capabilities of C language.

(A) Making functions (B) Using functions (C) Both (A) and (B) (D) None of these

(2) The group of instructions solving the big problem by dividing it into small parts is known as ...........

(A) flowchart (B) algorithm (C) function (D) loop

(3) Function is also known as ...........

(A) method (B) sub routine (C) procedure (D) All

(4) ..........shows the function of C language.

(A) main() (B) printf() (C) scanf() (D) All

(5) ..........function must be there in any executable C program.

(A) main()(B) printf() (C) scanf() (D) All

(6) How many main() functions should be there in a C program ?

(A) Zero (B) One (C) Two (D) Many

(7) Use of functions makes a program...........

(A) Modular (B) Compress (C) Powerful (D) Executable

(8) Modularity means partitioning a complex problem into small sub-problems which are

(A) easy to understand but difficult to maintain (B) easy to understand and maintain.

(C) difficult to understand but easy to maintain (D) difficult to understand but difficult to maintain.

(9) How many types of functions are there in C ?

(A) Two (B) Three (C) Four (D) Five

(10) ........... shows the type of the function in C language.

(A) Library function/System defined function (B) User defined function (C) Both (A) and (B) (D) None of these

(11) How are the functions available in the library files ?

(A) Compiled (B) Non compiled (C) Not compilable (D) Compiled as par wish

(12) ..........is the library or system defined function.

(A) scanf(), printf() (B) sqrt(), pow() (C) cos(), sin() (D) All

(13) ..........is true for the functions of C library.

(A) They are already compiled (B) We can directly use them (C) User needs not to write such function (D) All

(14) ..........file is included while using the library functions.

(A) Header (B) Center (C) Footer (D) All of these

(15) C includes a group of .......... functions to be execute different processes.

(A) Pre defined functions (B) Inbuilt functions (C) Both (A) and (B)(D) None of these

(16) The collection of header files is known as

(A) header library (B) C library (C) function library (D) file library

(17) ......... file contains the standard input/output functions.

(A) (B) (C) (D)

(18) .......... file contains functions related to character checking.

(A) (B) (C) (D)

(19) .......... file holds the mathematical functions.

(A) (B) (C) (D)

(20) .......... file holds the functions for string comparison, string length etc.

(A) (B) (C) (D)

(21) For .........., file is useful.

(A) conversion of strings (B) allocation of memory (C) generating random numbers (D) All

(22) contains .......... types of functions.

(A) mathematical functions (B) functions for character checking and conversion (C) functions for standard inputs/outputs (D) functions for group of characters or string

(23) .......... is the function available in header file.

(A) getc(), getchar(), gets(), printf(), putc(), putchar(), puts(), scanf() (B) cos(), sin(), tan(), exp(), floor(), log(), pow(), sqrt() (C) isdigit(), islower(), isupper(), isprint(), isspace(), tolower(), toupper() (D) abs(), exit(), free(), rand()

(24) .......... is the function available in header file.

(A) sqrt() (B) pow() (C) cos() (D) All

(25) Function once defined which can be used multiple times in a program it is for...........

(A) to make the program shorter (B) it saves the memory (C) both (A) and (B) (D) program becomes complex

(26) Who is to be informed when user defined function is used ?

(A) Programmer (B) Administrator (C) Compiler (D) All of these

(25) .......... defines the type of data in the syntax of defining function.

(A) function_name (B) return_data_type (C) list of arguments (D) Any of these

(26) .......... defines the user defined function in the syntax of defining function.

(A) function_name (B) return_data_type (C) list of arguments (D) Any of these

(27) ..........defines the input values with data type in the syntax of defining function.

(A) function_name (B) return_data_type (C) list of arguments (D) Any of these

(28) If the return value is integer for return_data_type, then what is taken as return_data_type ?

(A) float (B) int (C) void (D) string

(29) If the return value is not there for return_data_type, then what is taken as return_data_type ?

(A) float (B) int (C) void (D) string

(30) How should be the name of a function ?

(A) Meaningful (B) Meaningless (C) Extra meaningful (D) Multipurposeful

(31) More than one arguments are separated using...........

(A) dot (.) (B) comma (,) (C) colon (:) (D) semicolon (;)

(32) The statements written between two { } are known as ...........

(A) function body (B) loop body (C) library body (D) prototype body

(33) ..........type of function need not to be defined ?

(A) User defined function (B) Library function  (C) Both (A) and (B) (D) None of these

(34) .......... type of functions are already defined previously.

(A) Library function (B) User defined function (C) Both (A) and (B) (D) None of these

(35) To define the user defined before the main() function is known as ...........

(A) process of data (B) data type (C) function prototype (D) none of these

(36) Each C program starts with ..........function.

(A) main() (B) void() (C) printf() (D) scanf()

(37) .......... function can be called in main() function.

(A) User defined function (B) Library function (C) Both (A) and (B) (D) None of these

(38) Which important information is to be given while calling the function ?

(A) Prototype (B) Parameter (C) Variable (D) All of these

(39) ..........function prints the messages.

(A) printf (B) Printf (C) print (D) Print

(40) When main() function is not returned any value then return type is ...........

(A) int (B) float (C) string (D) void

(41) Which statement returns only the control to its calling function ?

(A) void (B) main (C) return (D) int

(42) If return type of function is .........., then return statement is not needed.

(A) void (B) main (C) return (D) int

(43) The variable defined before the main() function is known as ...........

(A) global variable (B) local variable (C) both (A) and (B) (D) none of these

(44) .......... variable can be used in either main() function or user defined function.

(A) Global variable (B) Local variable (C) Both (A) and (B) (D) None of these

(45) The function which is calling another function is known as ...........

(A) caller function (B) called function (C) function call (D) user function

(46) The function which is being called by the other function is known as ...........

(A) caller function (B) called function (C) function call (D) user function

(47) In the beginning of the program, user gives the information about the function is...........

(A) figure of the function (B) nature of the function (C) activity of the function (D) prototype of function

(48) Calling function and called function should be compatible in ...........

(A) number of arguments (B) type of arguments (C) both (A) and(B) (D) none of these

(49) Function prototype is given in which part of the program ?

(A) Beginning (B) In the center (C) At the end (D) Any of these

(50) When the calling function sends the data to the called function, it is known as ...........

(A) arguments (B) parameter passing (C) (A) or (B) (D) none of these

(51) When the parameter is transferred ?

(A) When calling function receives the data from the called function. (B) When calling function sends the data to the called function. (C) When calling function and the called function send the data. (D) When calling function or the called function send the data.

(52) While defining a function, what kind of parameter can be there ?

(A) Formal Arguments (B) Actual Arguments (C) (A) or (B) (D) None of these

(53) When the function is called, same number of parameters are transferred, they are known as

(A) formal arguments (B) actual arguments (C) (A) or (B) (D) none of these

(54) Which is the type of user defined function ?

(A) Function with no arguments and no return values (B) Function with arguments and no return values

(C) Function with arguments and return values (D) All of these

(55) When the calling function provides the data to the called functions, such argument are known as ..........arguments.

(A) actual argument (B) formal argument (C) both (A) and (B) (D) none of these

More Study Material

CBSE Class 10 Computers Function MCQs

We hope students liked the above MCQs for Function designed as per the latest syllabus for Class 10 Computers released by CBSE. Students of Class 10 should download the Multiple Choice Questions and Answers in Pdf format and practice the questions and solutions given in above Class 10 Computers MCQs Questions on daily basis. All latest MCQs with answers have been developed for Computers by referring to the most important and regularly asked topics which the students should learn and practice to get better score in school tests and examinations. Studiestoday is the best portal for Class 10 students to get all latest study material free of cost.

MCQs for Computers CBSE Class 10 Function

Expert teachers of studiestoday have referred to NCERT book for Class 10 Computers to develop the Computers Class 10 MCQs. If you download MCQs with answers for the above chapter daily, you will get higher and better marks in Class 10 test and exams in the current year as you will be able to have stronger understanding of all concepts. Daily Multiple Choice Questions practice of Computers and its study material will help students to have stronger understanding of all concepts and also make them expert on all critical topics. You can easily download and save all MCQs for Class 10 Computers also from www.studiestoday.com without paying anything in Pdf format. After solving the questions given in the MCQs which have been developed as per latest course books also refer to the NCERT solutions for Class 10 Computers designed by our teachers

Function MCQs Computers CBSE Class 10

All MCQs given above for Class 10 Computers have been made as per the latest syllabus and books issued for the current academic year. The students of Class 10 can refer to the answers which have been also provided by our teachers for all MCQs of Computers so that you are able to solve the questions and then compare your answers with the solutions provided by us. We have also provided lot of MCQ questions for Class 10 Computers so that you can solve questions relating to all topics given in each chapter. All study material for Class 10 Computers students have been given on studiestoday.

Function CBSE Class 10 MCQs Computers

Regular MCQs practice helps to gain more practice in solving questions to obtain a more comprehensive understanding of Function concepts. MCQs play an important role in developing understanding of Function in CBSE Class 10. Students can download and save or print all the MCQs, printable assignments, practice sheets of the above chapter in Class 10 Computers in Pdf format from studiestoday. You can print or read them online on your computer or mobile or any other device. After solving these you should also refer to Class 10 Computers MCQ Test for the same chapter

CBSE MCQs Computers Class 10 Function

CBSE Class 10 Computers best textbooks have been used for writing the problems given in the above MCQs. If you have tests coming up then you should revise all concepts relating to Function and then take out print of the above MCQs and attempt all problems. We have also provided a lot of other MCQs for Class 10 Computers which you can use to further make yourself better in Computers

Where can I download latest CBSE MCQs for Class 10 Computers Function

You can download the CBSE MCQs for Class 10 Computers Function for latest session from StudiesToday.com

Can I download the MCQs of Function Class 10 Computers in Pdf

Yes, you can click on the links above and download topic wise MCQs Questions PDFs for Function Class 10 for Computers

Are the Class 10 Computers Function MCQs available for the latest session

Yes, the MCQs issued by CBSE for Class 10 Computers Function have been made available here for latest academic session

How can I download the Function Class 10 Computers MCQs

You can easily access the links above and download the Function Class 10 MCQs Computers for each topic

Is there any charge for the MCQs with answers for Class 10 Computers Function

There is no charge for the MCQs and their answers for Class 10 CBSE Computers Function you can download everything free

How can I improve my MCQs in Class 10 Computers Function

Regular revision of MCQs given on studiestoday for Class 10 subject Computers Function can help you to score better marks in exams

What are MCQs for Class 10 Computers Function

Multiple Choice Questions (MCQs) for Function Class 10 Computers are objective-based questions which provide multiple answer options, and students are required to choose the correct answer from the given choices.