Шукаєте відповіді та рішення тестів для BCSE102L Structured and Object-Oriented Programming (Theory) Winter 2024-25 (B2) [VL2024250501473]? Перегляньте нашу велику колекцію перевірених відповідей для BCSE102L Structured and Object-Oriented Programming (Theory) Winter 2024-25 (B2) [VL2024250501473] в moovit.vit.ac.in.
Отримайте миттєвий доступ до точних відповідей та детальних пояснень для питань вашого курсу. Наша платформа, створена спільнотою, допомагає студентам досягати успіху!
Which of the following is called address operator?
a) *b) &c) _d) %
Which of the following is the correct identifier?
Which of the following feature of OOPs is not used in the following C++ code?class A
{
int i;
public:
void print(){cout<<"hello"<<i;}
}
class B: public A
{
int j;
public:
void assign(int a){j = a;}
}
a) Abstractionb) Encapsulationc) Inheritanced) Polymorphism