what is architecture code
C Software Developer Interview Questions
3,500 c software developer interview questions shared by candidates
Basic questions on C and C++.
what is an array ?
Interviewer asked me only 3-4 questions related to encapsulation and abstraction. and they he asked me to write down the class definition of STL array.(not how to use, its implementation)
Project related questions...ER diagram, module, database
Basic C/C++ knowledges
What is the difference between Table valued function and stored procedure. Why it is not good to use lot of non cluster index
all important topics of CPP
Q:Ask about yourself and your family ? Q: some technical question. Q: OOPs concept.
What is Union.Explain. I explained correctly. Then they gave a code snippet. And asked for output. I told the correct answer quickly. Then they gave me the following code and asked to print "There are 100 boxes" by the statement cout<< obj1.a; And told that there are some errors in the code, correct that. After discussing with them for about 15 minutes, I understood that they were quite unskilled and have conducted the Interview to clear their concepts. class ABC { public: string x; int y; ABC (string _x, int _y){ x=_x; y=_y } }; class XYZ { string a; } main() { ABC *obj = new ABC("There are _ boxes", 100); XYZ *obj1 ; obj1 = obj; cout<< obj1.a; //This statement should print "There are 100 boxes" }
Viewing 51 - 60 interview questions