STL (140)
OOPS (873)
C++ General (2409) Tell us about yourself.
ABB, Amazon, Fidelity, Flextronics, Franklin Templeton, HCL, Hexaware, IBM, Impetus, Infosys, Reliance, Rofous, Silgate, Sutherland, TCS, Thomson Reuters, Virtusa, Wipro,
47 126493Given two strings like x=?hello? and y=?open?, remove any character from string x which is also used in string y, thus making the result x=?hll?.
IBM,
13 220721)#include
When is the last time you coded in C/C++? What is the most lines of original C/C++ code you have personally written in one project? How confident are you in your ability to write C or C++ without a reference?
1 4160Given a simple program designed to take inputs of integers from 1-1000 and to output the factorial value of that number, how would you test this program? You do not have access to the code. Please be as specific as possible.
4 10992What are the total number of lines written by you in C/C++? What is the most complicated or valuable program written in C/C++?
2 10121Assume I have a linked list contains all of the alphabets from "A" to "Z?" I want to find the letter "Q" in the list, how does you perform the search to find the "Q?"
2 6738Find the error in the following program struct point {struct point *next; int data; } x; main() {int...data; } x; main() {int i; for(x=p;x!=0;) x=x->next,x++; freelist(x); } freelist(x) {free(x); return }
1 5389
How does a C++ structure differ from a C++ class?
How does list r; differs from list r();?
What are vtable and vptr?
State two differences between C and C++.
Differentiate between a pointer and a reference with respect to c++.
How static variables and local variablesare similar and dissimilar?
What is the difference between delegation and implemented-in-terms-of?
Define pre-condition and post-condition to a member function in c++?
What data structure is fastest, on average, for retrieving data: a) Binary Tree b) Hash Table c) Stack
What is array in c++ example?
Explain pass by value and pass by reference.
What is #include ctype h in c++?
What are different oops concepts?
How can you tell what shell you are running on unix system?
What are the vectors in c++?