C. Mantle would be correct
Answer:
Nothing, just exit out of it
Explanation:
Answer:
DNA obj =new DNA;//obj object created dynamically.
DNA *dnaPtr=&obj.//dnaPtr to store the address of the object.
Explanation:
The above written statements are in C++.The DNA object is created dynamically and it is done in C++ by using new keyword which allocates the heap memory for the object.
Then a dnaPtr is created of type DNA so that it can store the address of the DNA objects.
Your answer is False my fellow samurai
Answer:
A,C,D,E are the answers at least on the test i took
Explanation: