MCQ 11 Mark
Which of the following is not an in$-$built library function?
- A
pow $( )$
- B
printf $( )$
- ✓
sum $( )$
- D
sqrt $( )$
AnswerCorrect option: C. sum $( )$
View full question & answer→MCQ 21 Mark
By default the main function returns$..........$
View full question & answer→MCQ 31 Mark
The main function in $C$ language is a$..........$
View full question & answer→MCQ 41 Mark
In $..........$ category of function, there is two way communication between the calling and the called function.
- A
A function with no arguments and no return values
- B
function with arguments and no return values
- ✓
function with arguments and return values
- D
AnswerCorrect option: C. function with arguments and return values
View full question & answer→MCQ 51 Mark
In $..........$ category of function, the arguments are passed from the calling function to the called function but the called function do not return any value.
- A
function with no arguments and no return values
- ✓
function with arguments and no return values
- C
function with arguments and return values
- D
AnswerCorrect option: B. function with arguments and no return values
View full question & answer→MCQ 61 Mark
In $……$ category of function, there is no communication between the called and caller function.
- ✓
function with no arguments and no return values
- B
function with arguments and no return values
- C
function with arguments and return values
- D
AnswerCorrect option: A. function with no arguments and no return values
View full question & answer→MCQ 71 Mark
The user defined function is of $……$ types.
View full question & answer→MCQ 81 Mark
The formal and actual argument should have $……$ relationship.
- ✓
one$-$to$-$one
- B
one$-$to$-$many
- C
many$-$to$-$many
- D
AnswerCorrect option: A. one$-$to$-$one
View full question & answer→MCQ 91 Mark
The formal and actual arguments should match in
View full question & answer→MCQ 101 Mark
Which of the following arguments are not used in main $C$ program?
View full question & answer→MCQ 111 Mark
When the values or variables declared in a main program are used with a function, they are known as$……$
View full question & answer→MCQ 121 Mark
The arguments that are used at the time of function definition $($other than main$)$ are known as $……$ arguments.
View full question & answer→MCQ 131 Mark
The arguments that are used with function call within main function are known$……$argument.
View full question & answer→MCQ 141 Mark
The function prototype is needed when function is defined after the in the program.
AnswerCorrect option: B. main $( )$
View full question & answer→MCQ 151 Mark
When a function is called in a program, compiler searches for a corresponding function $……$
View full question & answer→MCQ 161 Mark
$……$means declaration of a function before their use in a main function.
View full question & answer→MCQ 171 Mark
The statements of the functions are written within$……$
AnswerCorrect option: C. $\{ \}$
View full question & answer→MCQ 181 Mark
When some user defined function is used in a program within main$( )$, that user defined function becomes$……$function..
View full question & answer→MCQ 191 Mark
When some other user defined function is used in a program main$()$ becomes function.
View full question & answer→MCQ 201 Mark
When the calling function sends the data to the called function it is called as$……$
AnswerCorrect option: C. $A$ or $B$
View full question & answer→MCQ 211 Mark
Which of the following is defined before defining the main function?.
AnswerCorrect option: D. Both $A$ and $C$
View full question & answer→MCQ 221 Mark
The statements placed between opening and closing curly braces are known as$……$
View full question & answer→MCQ 231 Mark
When the function do not return any value. It's return_data_type should be$……$
View full question & answer→MCQ 241 Mark
When function's return_data_type is $……$ there is no need to write return statement.in the end of the function.
View full question & answer→MCQ 251 Mark
If function's return_data_type is void, there is no need to write $……$ in the end of the function.
View full question & answer→MCQ 261 Mark
If the function is having more than one argument, all arguments are separated by $……$
View full question & answer→MCQ 271 Mark
In syntax of function, return_data_type functionname $($arguments$)……$ shows the Input values provided to function along with their datatypes.
View full question & answer→MCQ 281 Mark
In syntax of function, return_data_type functionname $($arguments$)$ some meaning $……$ should have.
View full question & answer→MCQ 291 Mark
In syntax of function, return_data_type functionname $($arguments$)……$ specifies the type of information return by the function.
View full question & answer→MCQ 301 Mark
________ of the following is not a library function. $20.$
- A
sqrt $( )$
- B
cost$)$
- C
log$()$
- ✓
View full question & answer→MCQ 311 Mark
$..........$ of the following is user defined function.
- A
time $( )$
- B
strcmp $( )$
- C
log $( )$
- ✓
main $( )$
AnswerCorrect option: D. main $( )$
main $( )$
View full question & answer→MCQ 321 Mark
The function developed for personal use is called_______.
View full question & answer→MCQ 331 Mark
The _______ header file contains mathematical functions such as cos( ). log( ), sqrt ( ),etc.
View full question & answer→MCQ 341 Mark
The _______header file contains functions related to string conversions, memory allocations, random number generation, etc.
View full question & answer→MCQ 351 Mark
The_______header file contains functions related to string such as stremp$( ).$ strlen$( ),$ etc.
View full question & answer→MCQ 361 Mark
The ______header file contains functions related to standard I/0 such as printf $( ),$ scantf $( )$ ,etc.
View full question & answer→MCQ 371 Mark
What types of functions are contained by header file?
- A
Functions related to time.
- ✓
Functions related to character testing and conversions
- C
Functions related to string
- D
AnswerCorrect option: B. Functions related to character testing and conversions
Functions related to character testing and conversions
View full question & answer→Question 381 Mark
_______header file contains functions related to time like time$( ).$ difftime$( ),$ etc.
View full question & answer→MCQ 391 Mark
________are examples of library functions.
View full question & answer→MCQ 401 Mark
The functions that are available in compiled form in C library are called_______ functions.
View full question & answer→MCQ 411 Mark
_______ reduces the actual length of program and saves memory.
View full question & answer→MCQ 421 Mark
_______is an important element of C language.
View full question & answer→MCQ 431 Mark
The approach to divide a complex and big problem into sub-problem is called as_______.
View full question & answer→MCQ 441 Mark
_______ means partitioning a complex problem into small sub-problems which are easy to understand and maintain.
View full question & answer→MCQ 451 Mark
The function is also known as______.
View full question & answer→MCQ 461 Mark
_______Is a group of statements that perform a specific task.
View full question & answer→