Is java as fast as c++?


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

Post New Answer

More C++ General Interview Questions

When must you use a pointer rather than a reference?

0 Answers  


Is c or c++ more useful?

0 Answers  


Explain virtual class and friend class.

0 Answers  


What is object in c++ wikipedia?

0 Answers  


Why namespace is used in c++?

0 Answers  






Write a corrected statement in c++ so that the statement will work properly. if (x = y) x = 2*z;

2 Answers  


What is pointer to member?

0 Answers  


Define private, protected and public access control.

0 Answers  


Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1

4 Answers   Quark,


What is guard code in c++?

0 Answers  


What is an object in c++?

0 Answers  


What gives the current position of the put pointer?

0 Answers  


Categories