What is the Maximum Size that an Array can hold?
Answers were Sorted based on User's Feedback
What is virtual function? Explain with an example
Explain differences between new() and delete()?
What do you mean by function pointer?
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;
Differentiate between late binding and early binding. What are the advantages of early binding?
What is an explicit constructor?
What is a c++ vector?
Write about c++ storage classes?
What is the correct syntax for inheritance a) class aclass : public superclass b) class aclass inherit superclass c) class aclass <-superclass
Will the inline function be compiled as the inline function always? Justify.
What is the use of main function in c++?
Design a program to input a date from user in the form day/month/year (e.g. 2/6/2000) and report whether it’s a valid date or not. The program should take account of leap years. You will need to know that a leap year is a year that is exactly divisible by 4, except that century years are only leap years if they are divisible by 400.