Is c++ the best programming language?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What is the latest c++ standard?

0 Answers  


class A { public: void f(); protected: A() {} A(const A&){} }; Examine the class declaration shown above. Why are the default and copy constructors declared as protected? 1. To ensure that A cannot be created via new by a more derived class 2. To ensure that A cannot be copied 3. To ensure that A cannot be used as a base class except when public inheritance has been used 4. To ensure that A cannot be created/copied outside the inheritance chain 5. To ensure that A cannot be instantiated as a static variable

1 Answers  


how to find the maximum of 10 numbers ?

5 Answers  


Write syntax to define friend functions in C++.

0 Answers   HAL,


What is the difference between cin.read() and cin.getline()?

0 Answers  






Does there exist any other function which can be used to convert an integer or a float to a string?

0 Answers  


When you overload member functions, in what ways must they differ?

0 Answers  


I want to write a C++ language program that: 1. Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. The program should work for squares of all side sizes between 1 and 20.

0 Answers  


What are the two types of comments?

0 Answers  


In a function declaration what does extern means?

0 Answers   Flextronics,


Difference between struct and class in terms of access modifier.

0 Answers  


List the advantages of inheritance.

0 Answers  


Categories