Class B is the subclass of class A. Which of the following describes the relationship?
A.…..is a……
B.….has a…..
C.…..implemented as……
Language : VB
Latest Answer: member functions declared as "virtual", can be over-ridden in the derived class.non-virtual members are reolved at compile time,or static binding.virtual functions are resolved at run-time,or dynamic binding. ...
Latest Answer: regsvr32 -u "MYCOM.dll" ...
A
Latest Answer: “a” will return the address location which the pointer is using, *a the value, &a the address where the address for a is stored. ...
How to pass two arguments to a function prompted to by function pointer
A. g -> (1,2)
B. *g(1,2)
C. (*g)(1,2)
D. g(1,2)
C
Encapsulation
A. Aggregation of member objects
B. Aggregation of member functions
C. Used to incorporate data hiding
C
Float_ptr = new float[100]
In order to deallocate this memory use
A. delete float_ptr
B. delete [] float_ptr
C. delete float_ptr [100]
D. delete float_ptr []
B
i = 12
int *p = &I;
print ("%d %d", p/p,*p**p)
What is the output?
A. 1144
B. 144144
C. O/p Error
D. Junk
C
B
Latest Answer: They are objects of istream and ostream classes respectively... ...
View page [1] 2 3 4 5 Next >>

Go Top