STL (140)
OOPS (873)
C++ General (2409) what is the virtual function overhead, and what is it used for ? i hope i can get and appropriate answers, thanks a lot....
6 11775what is a ststic variable and stiticfunction briefly explain with exmple and in which case we use
HCL,
2 7264In the following declaration of main, "int main(int argc, char *argv[])", to what does argv[0] usually correspond? 1) The first argument passed into the program 2) The program name 3) You can't define main like that
6 15275What is the output of the following code:
int v()
{
int m=0;
return m++;
}
int main()
{
cout<
What is the correct syntax for inheritance? 1) class aclass : public superclass 2) class aclass inherit superclass 3) class aclass <-superclass
6 15206Q1. A. What is unary operator? List out the different operators involved in the unary operator. B. What is an adjust field format flag? Q2. A. Distinguish between a # include and #define. B. Can a list of string be stored within a two dimensional array? Q3. A.Explain how a pointer to function can be declared in C++? B.List the merits and demerits of declaring a nested class in C++? Q4. A. What are the syntactic rules to be avoid ambiguity in multiple inheritence? B. Explain the operation of overloading of an assignment operator. Q5. A. Explain how the virtual base class is different from the conventional base classes of the opps. B. Explain how an exception handler is defined and invoked in a Program. Q6. A. What is a binary file? List the merits and demerits of the binary file usagein C++. B. Write short notes on Text Manipulation Routines. C. Write bites in Turbo c++ Header (“Include”) Files.
2858"How will you merge these two arrays? Write the program Array: A 1 18 22 43 Array: B 3 4 6 20 34 46 55 Output Array: C 1 3 4 6 18 20 22 34 43 46 55"
9 24599
What is #include iostream in c++?
What is methods in oop?
What does sksksk mean in text slang?
What is setfill c++?
What is the use of class in c++?
How can a called function determine the number of arguments that have been passed to it?
What is basic concept of oop?
What is the difference between the indirection operator and the address of oper-ator?
What are different oops concepts?
What are its advantages and disadvantages of multiple inheritances (virtual inheritance)?
In a function declaration, what does extern mean?
What is tellg () in c++?
What is abstraction in oop with example?
How do you find out if a linked-list has an end? (I.e. The list is not a cycle)
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);