Refer to CBSE Class 10 Computer Science Function MCQs provided below available for download in Pdf. The MCQ Questions for Class 10 Computers with answers are aligned as per the latest syllabus and exam pattern suggested 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 improve your understanding and 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.
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)
(18) .......... file contains functions related to character checking.
(A)
(19) .......... file holds the mathematical functions.
(A)
(20) .......... file holds the functions for string comparison, string length etc.
(A)
(21) For ..........,
(A) conversion of strings (B) allocation of memory (C) generating random numbers (D) All
(22)
(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
(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
(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
MCQs for Function Computers Class 10
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 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 will help students to have stronger understanding of all concepts and also make them expert on all critical topics. After solving the questions given in the MCQs which have been developed as per latest books also refer to the NCERT solutions for Class 10 Computers. 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. After solving these you should also refer to Class 10 Computers MCQ Test for the same chapter.
You can download the CBSE MCQs for Class 10 Computers Function for latest session from StudiesToday.com
Yes, the MCQs issued by CBSE for Class 10 Computers Function have been made available here for latest academic session
You can find CBSE Class 10 Computers Function MCQs on educational websites like studiestoday.com, online tutoring platforms, and in sample question papers provided on this website.
To prepare for Function MCQs, refer to the concepts links provided by our teachers and download sample papers for free.
Yes, there are many online resources that we have provided on studiestoday.com available such as practice worksheets, question papers, and online tests for learning MCQs for Class 10 Computers Function