Give an example where we have to specifically use C programming language and C++ programming language cannot be used?
why c++ is called OOPS? waht is inherutance? what is compiler?
Which is better struts or spring?
What is the highest level of cohesion?
what is an qt4 interface?
WAP to generate 2n+1 lines of the following pattern on the computer screen:
write a progra in c++ using class & object to find out wheather a given no. is prim or not.
What is Difference Between Inheritance and creating object and getting data? means Class A extends B{ B.getMethod();} (OR) Class A{ b obj=new B(); obj.getMethod(); }
c++ provides classes...and classes do what we want but why then strcut are used...if we say data hiding... it is also provided by c++ in structs then why to prefer clasess
What is the difference between pass by value,pass by pointer,pass by reference in the catch block in the exception handling in c++
Why and when is a virtual destructor needed?
how can we design a magic square in c++?or suggest me the basic idea of it.
There are 2 classes defined as below public class A { class B b; } public class B { class A a; } compiler gives error. How to fix it?