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

How does a C++ structure differ from a C++ class?

630


What is runtime polymorphism in c++?

598


What happens when you make call 'delete this;'?

609


What is meant by entry controlled loop?

662


Why is that unsafe to deal locate the memory using free( ) if it has been allocated using new?

635






Would you rather wait for quicksort, linear search, or bubble sort on a 200000 element array? (Or go to lunch...) a) Quicksort b) Linear Search c) Bubble Sort

643


Why is c++ still popular?

595


Explain the problem with overriding functions

609


Write about the role of c++ in the tradeoff of safety vs. Usability?

608


Name the implicit member functions of a class.

604


Describe the advantages of operator overloading?

580


What is implicit pointer in c++?

611


What information can an exception contain?

673


What are the two types of comments, and how do they differ?

579


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.

1754