info@avatto.com
+91-9920808017
76. The prototype for the constructor for a Student class is Student (const int id Num = 0, const double gpa = 4.0); The definition Student Lynette (1, 2);
defines a student with idNum 0 and gpa 4.0
defines a student with idNum 0 and gpa 1.0
defines a student with idNum 1 and gpa 2.0
is illegal
Your email address will not be published. Required fields are marked *
Report
Name
Email
Website
Save my name, email, and website in this browser for the next time I comment.
Comment
77. The feature that allows to use the same function name for separate functions that have different argument lists is called
overriding
overloading
constructing
destructing
78. If you want to override constructor default values for an object you are instantiating, you must also override
all other parameters to that constructor
all parameters to the left of that value
all parameters to the right of that value
no other parameters to that constructor
79. If you omit any constructor argument when you instantiate an object, you must use default values
for all parameters to the constructor
for all parameters to the right of the argument
for all parameters to the left of the argument
for no other parameters.
80. A variable w with a value 67 may be defined with
int w = 67
int w(67);
int 67(w) ;
both (a) and (b)
Login with Facebook
Login with Google
Forgot your password?
Lost your password? Please enter your email address. You will receive mail with link to set new password.
Back to login