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
Answers were Sorted based on User's Feedback
Answer / guest
pass a const reference to Alpha in FillData i.e Ans e)
Is This Answer Correct ? | 16 Yes | 4 No |
What is the maximum value of a unsigned char a) 255 b) 256 c) 128
diff between pointer and reference in c++?
what is pulse code modulation?
How do c++ struct differs from the c++ class?
Differentiate between an external iterator and an internal iterator? What is the advantage of an external iterator.
What is the difference between operator new and the new operator?
What is meant by const_cast?
1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v
What is the extension of c++?
What is the difference between map and hashmap in c++?
Can I have a reference as a data member of a class? If yes, then how do I initialise it?
What are dynamic type checking?