Explanation : A member function can access it's class member variables, irrespective of the access specifier in which the member variable is declared.So, a member function can always access the data in the class of which it is a member.
So, option (A) is correct.
Explanation : In C++ class template and function template are similar in the way the are initiated. Class template are not used for storage class. Class templates and function templates are instantiated in the same way and Class template is not initiated by defining an object using the template.
So (2), (3), (4) are not correct in C++. So, option (C) is correct.
Explanation : A 'view' is virtual table and it is not a special stored. View only occurs after executing a pre-complied query.
So, option (B) is correct.
Explanation : An aggregate function allows you to perform a calculation on a set of values to return a single scalar value. AVG, COUNT, MIN, MAX, SUM are aggregate functions. In SQL SELECT is used to choose a column from a database table. CREATE is used to create a DB table. AVG is a aggregate function. MODIFY is used to modify DB table content. So,option (C) is correct.