What are the important differences between c++ and java?


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

Post New Answer

More C++ General Interview Questions

How many bit combinations are there in a byte?

13 Answers   Intel, Microsoft,


What is the maximum combined length of command line arguments including the space between adjacent arguments?

0 Answers  


What are c++ storage classes?

0 Answers  


How come you find out if a linked-list is a cycle or not?

0 Answers  


Design a program to input a date from user in the form day/month/year (e.g. 2/6/2000) and report whether it’s a valid date or not. The program should take account of leap years. You will need to know that a leap year is a year that is exactly divisible by 4, except that century years are only leap years if they are divisible by 400.

1 Answers  






is throwing exception from a constructor not a good practice ?

5 Answers   Ericsson,


Are there any special rules about inlining?

0 Answers  


Can we use clrscr in c++?

0 Answers  


Inline parameters : What does the compiler do with the parameters of inline function, that can be evaluated in runtime ?

0 Answers  


Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.

1 Answers  


In a class only declaration of the function is there but defintion is not there then what is that function?

5 Answers   Hughes,


What is & in c++ function?

0 Answers  


Categories