⟩ What is output of this program? #include <iostream> using namespace std; int main() { int a = 9; int & aref = a; a++; cout << "The value of a is " << aref; return 0; } a) 9 b) 10 c) error d) 11
b) 10
b) 10
Do you know what is class using C++?
Tell us what is the STL, standard template library?
Tell me what are the syntax and semantics for a function template?
Can you please explain what are the characteristics of Object Oriented programming language?
Tell me what are the basic Concepts used in the Object-Oriented Programming language?
What is Encapsulation in C++?
What is Template class?
What is Polymorphism in C++?
What is Inheritance in C++?
What is the validity of template parameters? a) inside that block only b) inside the class c) whole program d) any of the mentioned