CuriousTab
Search
CuriousTab
Home
Aptitude
Computer
C Programming
C# Programming
C++ Programming
Database
Java Programming
Networking
Engineering
Biochemical Engineering
Biochemistry
Biotechnology
Chemical Engineering
Civil Engineering
Computer Science
Digital Electronics
Electrical Engineering
Electronics
Electronics and Communication Engineering
Mechanical Engineering
Microbiology
Technical Drawing
GK
Current Affairs
General Knowledge
Reasoning
Data Interpretation
Logical Reasoning
Non Verbal Reasoning
Verbal Ability
Verbal Reasoning
Exams
AIEEE
Bank Exams
CAT
GATE
IIT JEE
TOEFL
Jobs
Analyst
Bank PO
Database Administrator
IT Trainer
Network Engineer
Project Manager
Software Architect
Discussion
Home
‣
C++ Programming
‣
Functions
Comments
Question
Which of the following statement is correct?
Options
A. Two functions having same number of argument, order and type of argument can be overloaded if both functions do not have any default argument.
B. Overloaded function must have default arguments.
C. Overloaded function must have default arguments starting from the left of argument list.
D. A function can be overloaded more than once.
Correct Answer
A function can be overloaded more than once.
Functions problems
Search Results
1. Which of the following statement is correct?
Options
A. Only one parameter of a function can be a default parameter.
B. Minimum one parameter of a function must be a default parameter.
C. All the parameters of a function can be default parameters.
D. No parameter of a function can be default.
Show Answer
Scratch Pad
Discuss
Correct Answer: All the parameters of a function can be default parameters.
2. Which of the following statement is incorrect?
Options
A. A default argument is checked for type at the time of declaration and evaluated at the time of call.
B. We can provide a default value to a particular argument in the middle of an argument list.
C. We cannot provide a default value to a particular argument in the middle of an argument list.
D. Default arguments are useful in situations where some arguments always have the same value.
Show Answer
Scratch Pad
Discuss
Correct Answer: We can provide a default value to a particular argument in the middle of an argument list.
3. Which of the following statement is correct?
Options
A. Overloaded functions can accept same number of arguments.
B. Overloaded functions always return value of same data type.
C. Overloaded functions can accept only same number and same type of arguments.
D. Overloaded functions can accept only different number and different type of arguments.
Show Answer
Scratch Pad
Discuss
Correct Answer: Overloaded functions can accept same number of arguments.
4. Which of the following function / type of function cannot be overloaded?
Options
A. Member function
B. Static function
C. Virtual function
D. Both B and C
Show Answer
Scratch Pad
Discuss
Correct Answer: Virtual function
5. Which of the following statement is correct?
Options
A. The order of the default argument will be right to left.
B. The order of the default argument will be left to right.
C. The order of the default argument will be alternate.
D. The order of the default argument will be random.
Show Answer
Scratch Pad
Discuss
Correct Answer: The order of the default argument will be right to left.
6. Which of the following statement will be correct if the function has three arguments passed to it?
Options
A. The trailing argument will be the default argument.
B. The first argument will be the default argument.
C. The middle argument will be the default argument.
D. All the argument will be the default argument.
Show Answer
Scratch Pad
Discuss
Correct Answer: The trailing argument will be the default argument.
7. Which of the following statement is correct?
Options
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.
Show Answer
Scratch Pad
Discuss
Correct Answer: Constructors can have default parameters.
8. Which of the following statement is correct?
Options
A. C++ enables to define functions that take constants as an argument.
B. We cannot change the argument of the function that that are declared as constant.
C. Both A and B.
D. We cannot use the constant while defining the function.
Show Answer
Scratch Pad
Discuss
Correct Answer: Both A and B.
9. Which of the following statement is incorrect?
Options
A. The default value for an argument can be a global constant.
B. The default arguments are given in the function prototype.
C. Compiler uses the prototype information to build a call, not the function definition.
D. The default arguments are given in the function prototype and should be repeated in the function definition.
Show Answer
Scratch Pad
Discuss
Correct Answer: The default arguments are given in the function prototype and should be repeated in the function definition.
10. Which of the following statement is correct?
Options
A. Overloaded functions can have at most one default argument.
B. An overloaded function cannot have default argument.
C. All arguments of an overloaded function can be default.
D. A function if overloaded more than once cannot have default argument.
Show Answer
Scratch Pad
Discuss
Correct Answer: All arguments of an overloaded function can be default.
Comments
There are no comments.
Enter a new Comment
Save
More in C++ Programming:
Constructors and Destructors
Functions
Objects and Classes
OOPS Concepts
References