C++ Programming and Technical Programming Program

Which constructor is invalid for class cat?

Options
1) void cat :: cat() { feet=4;}
2) cat::cat(int f){feet=f;}
3) cat::cat(void){feet=8;}
4) cat::cat(int f){this->feet=f;}

Read Solution (Total 4)

C++ Other Question

In a function declaration, what does extern mean? What is the part of compiler that keeps track of names and their attributes?

Options
1) Compile Table
2) Symbol Table
3) Table
4) Logical Table