Question: 1 . A constant variable does not have an l - value ( address ) . True or false? 2 . The r - value
A constant variable does not have an lvalue address True or false?
The rvalue content of a pointer variable must be a memory address. True or false?
An int variable cannot be dereferenced. True or false?
A static variable in a function will remain its value after the function is returned. True or false?
An operator is essentially the same as a function. True or false?
In general, callbyreference takes less time and memory than callbyvalue. True or false?
When calling a function, the name of a real argument must be different than the name of the corresponding formal parameter? True or false?
All C code for a program must be in a single cpp file. True or false?
A Cstring is essentially an array of chars. True or false?
If you declare a Cstring variable without initialization, its content is empty. True or false
Memory allocated by new operator will be released when execution is out of the block where new is used. True or false?
A friend function of a class cannot be a member function of that class. True or false?
Even if a function is a friend of a class, it cannot access the classs private members.
True or false?
Every object of a class has its own instance of a static data member of this class. True or false?
A data member can be changed by a const member function. True or false?
A class data member may be of a type which is another userdefined class. True or false?
All member functions of a class must be defined with its declaration. True or false?
A class data member must be private. True or false?
A class can have only one constructor. True or false?
Within a class definition, a member function cannot directly call another member function unless the latter is public. True or false?
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
