What is polymorphism oop?
Out of 4 concepts, which 3 C++ Follow?
What is friend function?
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(); }
What is static modifier?
Can you name some types of inheritance?
WAP to generate 2n+1 lines of the following pattern on the computer screen:
why constructor cannt be declar virtually? why destructor cannt be overloaded?
what is ltti
In OverLoading concept,Why they are not consider return value and why they are consider only parameters in method? For ex: public int Add(int a,int b){...} public String Add(int a,int b){...}
When will a constructor executed?
what is main difference between object oriented object base
Write an operator overloading program to write S3+=S2.