Is c++ a difficult language?


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

Post New Answer

More C++ General Interview Questions

class professor {}; class teacher : public virtual professor {}; class researcher : public virtual professor {}; class myprofessor : public teacher, public researcher {}; Referring to the sample code above, if an object of class "myprofessor" were created, how many instances of professor will it contain? a) 0 b) 1 c) 2 d) 3 e) 4

4 Answers   Quark,


Why do we need templates?

0 Answers  


What do you mean by translation unit in c++?

1 Answers  


Why c++ is better than c language?

0 Answers  


Explain register storage specifier.

0 Answers  






what is static function

2 Answers   Patni,


int main() { int i ,a[i]; i = 0; a[i] = 10; cout<< a[i] << endl; return 0; } What will be output of this program?

11 Answers   HCL, Mphasis,


Write a C++ Program to check whether a number is prime number or not?

0 Answers   IBS,


What do nonglobal variables default to a) auto b) register c) static

0 Answers  


Explain the term memory alignment?

0 Answers  


What are the advantages of using friend classes?

0 Answers  


Why would you make a destructor virtual?

3 Answers   Lehman Brothers,


Categories