STL (140)
OOPS (873)
C++ General (2409) INSTANCE FIELDS DECLARED private ARE ACCESSIBLE BY THE METHODS ONLY.CAN WE CHANGE THE private FIELD OF AN OBJECT IN A METHOD OF SOME OTHER OBJECT OF THE SAME CLASS?
2213write a c++ program to create class student having datamember name,Roll_no,age,and branch intilcization all the member using constructor print the all the details on the screen.
2692In java a final class is a class that cannot be derived. How can you make a similar class in C++
1 4206if int1 has the value 12, int has the value 18, and int3 has the value 21, what is the result: int1 < int2 && int2 < int 3
3 8160create a class complex having real and imaginary part of a complex no. as a data member. overload the binary operators(+,- and *) to perform the operations on complex no. objects. overload binary operator using friend function.
2 5770write a program that withdrawals,deposits,balance check,shows mini statement. (using functions,pointers and arrays)
2392
Is arr and &arr are same expression for an array?
Explain polymorphism?
Why do we need constructors in c++?
How do you decide which integer type to use?
why is c++ called oops? Explain
What is exception handling? Does c++ support exception handling?
Briefly explain various access specifiers in C++.
Explain the operator overloading feature in C++ ?
Explain the use of vtable.
What are the 4 main oop principles?
What is object in oop with example?
What is the use of ::(scope resolution operator)?
What is the type of 'this' pointer?
Why is c++ difficult?
Name the operators that cannot be overloaded.