class Foo {
const int x;
protected:
Foo(int f);
~Foo();
};
Foo f;
Referring to the sample code above, why will the class
declaration not compile?
a) The variable x is const.
b) The destructor is protected.
c) The destructor is not public.
d) The constructor is protected.
e) There is no default constructor.

Answer Posted / guest

There is no default Constructor

Is This Answer Correct ?    11 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the use of this pointer in c++?

562


Write a program to add three numbers in C++ utilizing classes.

614


what is the difference between linear list linked representaion and linked representation? what is the purpose of representing the linear list in linked represention ? is it not avoiding rules of linear represention?

1744


What is the difference between while and do while loop?

550


What are its advantages and disadvantages of multiple inheritances (virtual inheritance)?

599






How java is different from c and c++?

631


Define a constructor?

583


Do vectors start at 0?

588


Define the process of error-handling in case of constructor failure?

557


What are the important differences between c++ and java?

592


A prime number is a number which is divisible only by itself and 1. Examples of the first few primes are 2, 3, 5, 7, 11. Consider writing a program which can generate prime numbers for you. Your program should read in and set a maximum prime to generate and a minimum number to start with when looking for primes. This program should be able to perform the following tasks: 1. Read the maximum number from user (keyboard input) to look for primes. The program should not return any primes greater than this number. 2. Read the minimum number from user (keyboard input) to look for primes. The program should not return any primes less than this number. 3. Generate and print out every prime number between the maximum prime and minimum number specified by the user.

1738


What is the best it certification?

575


What jobs can you get with a c++ certification?

575


What is low level language in simple words?

551


What is c++ flowchart?

671