What is null and void pointer?
What is size of a object of following class? class Foo { public: void foo(){} }
what is an array
What is the output of: String a1 = "Hello"; String a2 = "world!"; String* s1 = &a2; String& s2 = a1; s1 = &a1; s2 = a2; std::cout << *s1 << " " << s2 << std::endl;
What is a template in c++?
Write a program to encrypt the data in a way that inputs a four digit number and replace each digit by (the sum of that digit plus 7) modulus 10. Then sweep the first digit with the third, second digit with the fourth and print the encrypted number.
What are the various access specifiers in c++?
Is it possible for a member function to use delete this?
What is null pointer and void pointer and what is their use?
Do class declarations end with a semicolon? Do class method definitions?
What is stream and its types in c++?
What is the role of copy constructor in copying of thrown objects?
What is an action class?