What is a base class?
No Answer is Posted For this Question
Be the First to Post Answer
List out some of the OODBMS available?
Can java be faster than c++?
How do you link a C++ program to C functions?
given unsigned int ui1=3,ui2=7; what are the outputs of a)ui1 & ui2 b)ui1 && ui2 c)ui1 | ui2 d)ui1 || ui2 i also need the justification for the answers thank you
How compile and run c++ program in turbo c++?
class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;
What does new do in c++?
Write about c++ storage classes?
an operation between an integer and real always yeilds a) integer result b) real result c) float result
Explain 'this' pointer and what would happen if a pointer is deleted twice?
Is c++ the hardest programming language?
Write a Program to find the largest of 4 no using macros.