What is c++ in english?
No Answer is Posted For this Question
Be the First to Post Answer
What are the various operations performed on stack?
How would you differentiate between a pre and post increment operators while overloading?
Difference between overloading vs. Overriding
Can you be able to identify between straight- through and cross- over cable wiring? And in what case do you use straight- through and cross-over?
Is c++ vector a linked list?
Define a nested class. Explain how it can be useful.
When we use Abstract Class and when we use Interface?where we will implement in real time?
class Alpha { public: char data[10000]; Alpha(); ~Alpha(); }; class Beta { public: Beta() { n = 0; } void FillData(Alpha a); private: int n; }; How do you make the above sample code more efficient? a) If possible, make the constructor for Beta private to reduce the overhead of public constructors. b) Change the return type in FillData to int to negate the implicit return conversion from "int" to "void". c) Make the destructor for Alpha virtual. d) Make the constructor for Alpha virtual. e) Pass a const reference to Alpha in FillData
how many rounds and wt type of questios ask in the written test for first round 2. tech. round 3. and futher rounds
Why are arrays usually processed with for loop?
an operation between an integer and real always yeilds a) integer result b) real result c) float result
What is design pattern?