Consider the following C++ program
Answer / Jitendra Singh Saini
(Question does not provide a program for this QNO)
| Is This Answer Correct ? | 0 Yes | 0 No |
How does stack look in function calls? When does stack overflow? What can you do to remedy it?
Identify the errors in the following program. #include <iostream> using namespace std; void main() { int i=5; while(i) { switch(i) { default: case 4: case 5: break; case 1: continue; case 2: case 3: break; } i-; } }
What does it mean to take the address of a reference?
Define type casting in C++.
Explain about Searching and sorting algorithms with complexities
What is Boyce Codd Normal form?
What are pass by value and pass by reference?what is the disadvantage of pass by value?
What is placement new?
Explain the importance of method overloading in C++?
1 Answers Akamai Technologies, Infogain,
what do you mean by exception handling in C++?
When would you use a pointer? A reference?
Mention the default functions in C++, how would you detect that error has occurred inside the constructor and destructor.