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?
2209write 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 4198if 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 8153create 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 5766write a program that withdrawals,deposits,balance check,shows mini statement. (using functions,pointers and arrays)
2390
Which is not an ANSII C++ function a) sin() b) tmpnam() c) kbhit()
Differentiate between declaration and definition.
What is a far pointer? where we use it?
What are the unique features of C++.
How to run C++ program in cmd
Why do we use iterators?
What are the major differences between C and C++?
What is an adaptor class or wrapper class in c++?
What are the differences between the function prototype and the function defi-nition?
What is endianness?
Can I make ios apps with c++?
Can we make copy constructor private in c++?
What is the difference between an external iterator and an internal iterator?
Define a pdb file.
assume the program must insert 4 elements from the key board and then do the following programs.sequential search(search one of the elements),using insertion sort(sort the element) and using selection sort(sort the element).