What is the difference between equal to (==) and assignment operator (=)?
What is a v-table?
What are the vectors in c++?
Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }
What is polymorphism in c++? Explain with an example?
What are mutator methods in c++?
Explain the properties and principles of oop.
What is the difference between an array and a list?
write a program to insert an element into an array
What is the extraction operator and what does it do?
How can you prevent accessing of the private parts of my class by other programmers (violating encapsulation)?
how to explain our contribution in the project?
what are the characteristics of Class Members in C++?