7 years ago
in C++ Functions
Overall Stats
Attempted
66
Correct
5
Incorrect
23
Viewed
38
Answers
Nischal Karki -
2 months ago
Nischal Karki is saying Both B and C is correct answer
Blank OP -
4 years ago
Blank OP from Bacolod City, Philippines is saying Virtual function is correct answer
swathi -
4 years ago
swathi from Chennai, India is saying Member function is correct answer
Rohan Bhosale -
4 years ago
Rohan Bhosale from Pune, India is saying Both B and C is correct answer
Neyah Deshmukh -
4 years ago
Neyah Deshmukh from India is saying Static function is correct answer
Related Questions
A static function
- [A] should be called when an object is destroyed
- [B] is closely connected with an individual object of a class
- [C] can be called using the class name and function
- [D] is used when a dummy object must be created
What is true about inline functions ?
- [A] It's a compulsion on the compiler to make function inline
- [B] It's a request to the compiler to make te function inline
- [C] It's the indication to the compiler that the function is recursive
- [D] It's the indication to the compiler that the function is member function
Which of the following statement is correct?
- [A] Constructors can have default parameters.
- [B] Constructors cannot have default parameters.
- [C] Constructors cannot have more than one default parameter.
- [D] Constructors can have at most five default parameters.
The library function exit() causes an exit from ?
- [A] The loop in which it occurs
- [B] The block in which it occurs
- [C] The function in which it occurs
- [D] The program in which it occurs
Which of the following function prototype is perfectly acceptable?
- [A] int Function(int Tmp = Show());
- [B] float Function(int Tmp = Show(int, float));
- [C] Both A and B.
- [D] float = Show(int, float) Function(Tmp);