More Classes
5th Class
6th Class
7th Class
8th Class
9th Class
10th Class
11th Class
12th Class
NAT I
NAT II
CSS
IQ
General Knowledge
MDCAT
ECAT
GAT General
GAT Subject
Other Links
Go to Home
Online Tests
ECAT Computer Science Chapter 12 Introduction to C Language Online Test MCQs With Answers
Question # 1
Which of the following is true about a function call?
Choose an answer
Stops to execution of the program
Transfer control to the called function
Transfer control to the main function
Resumes the execution of the program
Previous
Skip
Next
Question # 2
Function declaration can be written:
Choose an answer
Before main() function
After main() function
In a separate file
All of these
Previous
Skip
Next
Question # 3
Which statement is used by a function used to return a value:
Choose an answer
Given
Return
Continue
Send
Previous
Skip
Next
Question # 4
Which of the following is incorrect?
Choose an answer
A function can call another function
A function can be calling many times in a program
A function can return values input by user
A function must have at least one value parameter
Previous
Skip
Next
Question # 5
Another name for built in function:
Choose an answer
User defined function
Library function
Arithmetic function
Both A and B
Previous
Skip
Next
Question # 6
Which of the following can return a value
Choose an answer
Function
Procedure
Both A and B
None of above
Previous
Skip
Next
Question # 7
Which of the following steps takes place when function is called:
Choose an answer
The control moves to the function that is called
All statements in the body of function are executed
The control returns back to the calling function
All of these
Previous
Skip
Next
Question # 8
The printf is a:
Choose an answer
Built-in function
User defined function
Local function
Keyword
Previous
Skip
Next
Question # 9
The parameters in function declaration is called:
Choose an answer
Formal parameters
Actual parameters
Both A and B
Returned parameters
Previous
Skip
Next
Question # 10
Function declaration consists of
Choose an answer
Function name
Function return type
Number and types of parameters
All of these
Previous
Skip
Next
Question # 11
The parameters in function declaration is called:
Choose an answer
Formal parameters
Actual parameters
Both A and B
Returned parameters
Previous
Skip
Next
Question # 12
Variable is allocated to a local variable at the time of its:
Choose an answer
Declaration
Destruction
Definition
First reference
Previous
Skip
Next
Question # 13
Which of the following is type of function available in C language?
Choose an answer
User defined
Built in
Subprogram
Both A and B
Previous
Skip
Next
Question # 14
A built-In function
Choose an answer
Cannot be redefined
Can be redefined
Cannot return a value
Should be redefined
Previous
Skip
Next
Question # 15
Function prototype for built-in functions are specified In
Choose an answer
Source file
Header file
Object file
Image file
Previous
Skip
Next
Back