Which programming language's unsatisfactory performance led to the discovery of c++?


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

Post New Answer

More C++ General Interview Questions

When is the last time you coded in C/C++? What is the most lines of original C/C++ code you have personally written in one project? How confident are you in your ability to write C or C++ without a reference?

1 Answers   Microsoft,


Write a String class which has: 1) default constructor 2) copy constructor 3) destructor 4) equality operator similar to strcmp 5) constructor which takes a character array parameter 6) stream << operator

2 Answers   HCL, Lehman Brothers, Zoomerang,


How many ways can a variable be initialized into in C++?

0 Answers   HCL,


Can a constructor be private?

0 Answers  


What is problem with overriding functions?

0 Answers  






What is a tuple c++?

0 Answers  


What are pointers, when declared, intialized to a) NULL b) Newly allocated memory c) Nothing. Its random

0 Answers  


What is array in c++ pdf?

0 Answers  


What is c++ hash?

0 Answers  


What is the output of: String a1 = "Hello"; String a2 = "world!"; String* s1 = &a2; String& s2 = a1; s1 = &a1; s2 = a2; std::cout << *s1 << " " << s2 << std::endl;

4 Answers   Lehman Brothers,


Explain virtual class?

0 Answers  


What will i and j equal after the code below is executed? Explain your answer.

1 Answers  


Categories