Explain the difference between abstract class and interface in c++?
describe private access specifiers?
Adobe Interview & Adobe Placement Paper
Do class declarations end with a semicolon?
What is c++ map?
class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected
What function initalizes variables in a class: a) Destructor b) Constitutor c) Constructor
How the keyword struct is different from the keyword class in c++?
Are c and c++ similar?
Is c++ proprietary?
What are the advantages of using a pointer?
How would you stop a class from class from being derived or inherited?The constructer should not be Private,as object instantiation should be allowed.
What is a Default constructor?