McqMate
Sign In
Hamberger menu
McqMate
Sign in
Sign up
Home
Forum
Search
Ask a Question
Sign In
McqMate Copyright © 2025
→
Computer Science Engineering (CSE)
→
Object Oriented Programming (OOP)
→
Functions can returns
Q.
Functions can returns
A.
arrays
B.
references
C.
objects
D.
all of above
Answer» D. all of above
3.6k
0
Do you find this helpful?
44
View all MCQs in
Object Oriented Programming (OOP)
Discussion
No comments yet
Login to comment
Related MCQs
Which of the following is true about new when compared with malloc. 1) new is an operator, malloc is a function 2) new calls constructor, malloc doesn't 3) new returns appropriate pointer, malloc returns void * and pointer needs to typecast to appropriate type.
When a function returns a value, the entire function call can appear on the right side of the equal sign and be assigned to another variable.
Variables declared in the body of a particular member function are known as data members and can be used in all member functions of the class.
In C++, const qualifier can be applied to Member functions of a class Function arguments To a class data member which is declared as static Reference variables
Which of the following operators allow defining the member functions of a class outside the class?
In a class definition, data or functions designated private are accessible
Dividing a program into functions
Overloaded functions
C++ programmers concentrate on creating , which contain data members and the member functions that manipulate those data members and provide services to clients.
Which of the following is true about inline functions and macros.