Describe your previous experiences
Product Development Interview Questions
3,726 product development interview questions shared by candidates
Why are you interested in working here?
tell me about your self
What experience do you have that could apply to this role?
Describe your daily day at work.
Questions from the online test
Creative focus
Name a time you were stressed at work and how you dealt with it.
What experience you had with going through the design process.
mCQ questions in C++. 1) what is min things a class should have ? - constructor, destructor, - constructor, destructor, copy constructor - only constructor, - only destructor 2) what can not be inherited from following options: - constructor - friend function - both a and b - neither of them 3) class base { public: virtual void print() { cout << "base"; }}; class derive { public: void print() { cout<<"derive"; } }; class d : public base, public derive { public: void print() { cout<< "d"; } }; int main() { d obj; base b; derive d; int i ; base *ptr[3]; ptr[0] = &b; ptr[1] = &obj; ptr[2] = &obj; ptr[i]->print(); } 4) difference between function overloading and overriding. 5) default allowing access specifier in C++ ? private, public, protected ? 6) destructor calling sequence in non-virtual function in multiple inheritance ?
Viewing 2531 - 2540 interview questions