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
Computer Science Ics Part 2 Chapter 13 Online Test MCQs With Answers
Question # 1
Which of the following is true about a function call?
Choose an answer
Stops the execution of the program
Transfer control to the called function
Transfer control to the main function
Resumes the execution of the function
Previous
Skip
Next
Question # 2
Which of the following is true for return statement in a function?
Choose an answer
It can return one value only
It can return integer value
It cannot return any value
It cannot be used in a function
Previous
Skip
Next
Question # 3
Which of the following looks for the prototypes of function used in a program?
Choose an answer
Linker
Loader
Compiler
Parser
Previous
Skip
Next
Question # 4
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 function body are executed
The control returns back to the calling funciton
All of these
Previous
Skip
Next
Question # 5
In a C program, two function can have:
Choose an answer
Same name
Same parameters
Same name & Same parameters
Same name but different parameters
Previous
Skip
Next
Question # 6
The statement that activities a function is known as:
Choose an answer
Function call
Function output
Function design
Function definition
Previous
Skip
Next
Question # 7
Which statement is used by a function use to return a value?
Choose an answer
Give
Return
Continue
Send
Previous
Skip
Next
Question # 8
Th process of sending an argument to a function is called:
Choose an answer
Sending
Filtering
Delivering
Passing
Previous
Skip
Next
Question # 9
Function prototype for built-in-function are specified in:
Choose an answer
Source file
Header file
Object file
Image files
Previous
Skip
Next
Question # 10
Memory is allocated to a local variable at the time of the :
Choose an answer
Declaration
Destruction
Definition
First reference
Previous
Skip
Next
Back