Q: Observe the following statements and decide what they do: string mystring; getline(cin, mystring);
Q: Which of the header files must be included to use string stream?
Q: The location number of an item in an array is called?
Q: Strings are character arrays. The last index of it contains the null character?
Q: The phenomenon of having two or more functions in a program with the same names but different number and types of parameters is known as?
Q: We declare a function with _____ if it does not have any return type?
Q: Arguments of a function are separated with?
Q: Variables inside parenthesis of function declarations have _____ level access?
Q: Observe the following function declaration: int divide(int a, int b=2). Which is correct?
Q: If we have the statement int *Ptr; then to what does Ptr point?
Q: A pointer is?
Q: The operator used to get value at address stored in a pointer variable is?
Q: Which of the statements is correct about the following segment of code: int i=10; int *j=&i;?
Q: In pointers, dereference operator * is used to?
Q: A constructor is called whenever?
Q: Destructor is used for?
Q: The name of a destructor is always preceded by the symbol?
Q: Constructors are commonly used for?
Q: Inheritance is used to?
Q: eof stands for?