Data Types
- Which of the following will not return a value?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
void
- ____ have the return type void?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: E
Constructor creates an Object and Destructor destroys the object. They are not supposed to return anything, not even void.
- What does the following statement mean?
void a;
-
View Hint View Answer Discuss in Forum
NA
Correct Option: B
There are no void objects.