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?
2207write 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 4196if 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 8151create 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 5765write a program that withdrawals,deposits,balance check,shows mini statement. (using functions,pointers and arrays)
2390
What is Difeerence between List obj=new ArrayList(); and ArrayList obj=new ArrayList()?
What are the benefits of pointers?
Can I create my own functions in c++?
Give the difference between the type casting and automatic type conversion. Also tell a suitable C++ code to illustrate both.
Explain Text Manipulation Routines?
Mention the ways in which parameterized can be invoked.
Explain the use of virtual destructor?
What are the new features that iso/ansi c++ has added to original c++ specifications?
What is the difference between #define debug 0 and #undef debug?
How to defines the function in c++?
Distinguish between a # include and #define.
What is a multimap c++?
What is the role of static keyword for a class member variable?
What is the difference between the compiler and the preprocessor?
How do you define/declare constants in c++?