Choose the correct option 1)Which functions allow to change the location of the get and put positions ? a)sg() and sp() b)sekg() and sekp() c)gog() and gop() d)seekg() and seekp() 2)Which of the following operator is used to release the dynamically allocated memory in CPP? a) remove b)free c)delete d)both b and c 3) Local variables are stored in an area called ___________ a) Heap b) Permanent storage area c) Free memory d) Stack 4)Choose the correct option? #include using namespace std; class Base {}; class Derived: public Base {}; int main() { Base *bp = new Derived; Derived *dp = new Base; } a. No Compiler Error b.Compiler Error in line “Base *bp = new Derived;” c. Compiler Error in line ” Derived *dp = new Base;” d. Runtime Error 5)When the inheritance is private, the private methods in base class are __________ in the derived class (in C++). a. Inaccessible b.. Accessible c.. Protected d. Public
Choose the correct option
1)Which functions allow to change the location of the get and put positions ?
a)sg() and sp()
b)sekg() and sekp()
c)gog() and gop()
d)seekg() and seekp()
2)Which of the following operator is used to release the dynamically allocated memory in CPP?
a) remove
b)free
c)delete
d)both b and c
3) Local variables are stored in an area called ___________
a) Heap
b) Permanent storage area
c) Free memory
d) Stack
4)Choose the correct option?
#include<iostream>
using namespace std;
class Base {};
class Derived: public Base {};
int main()
{
Base *bp = new Derived;
Derived *dp = new Base;
}
a. No Compiler Error
b.Compiler Error in line “Base *bp = new Derived;”
c. Compiler Error in line ” Derived *dp = new Base;”
d. Runtime Error
5)When the inheritance is private, the private methods in base class are __________ in the derived class (in
C++).
a. Inaccessible
b.. Accessible
c.. Protected
d. Public
Step by step
Solved in 3 steps