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 126649Given 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 221441)#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 4168Given 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 11007What 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 10142Assume 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 6750Find 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 5396
What are the characteristics of friend functions?
what are the characteristics of Class Members in C++?
Why oops is important?
What is a string example?
What are the advantages of pointers?
What is the main purpose of overloading operators?
Is it possible for the objects to read and write themselves?
Can you please explain the difference between overloading and overriding?
What is the standard template library (stl)?
What is solid in oops?
Is turbo c++ free?
Which is best ide for c++?
What methods can be overridden in java?
What is stream in oop?
Difference between pointer to constant and constant pointer to a constant. Give example.