Answer: A) Set of related,reusable classes that provide a well defined set of functionality
Explanation: Tool kit is defined as single program for utilization that has set of software plan that has numerous functions. It is also used for developing and maintaining applications and databases. It is the basic collection of the tools that help in the functioning of class. The classes present can be re-utilized. Therefore, Option (A) is the correct option.
Answer:
0xff
Explanation:
the thing is that hexadecimal always starts with 0x
and theres only one option that starts with 0x
Answer:
the first constructor invocation will work.
pet temp("mouse", 5.99);
Explanation:
This will create a pet object on the stack, using the constructor.
If you want to create an object on the heap, you would use the new operator:
pet* pTemp = new pet("mouse", 5.99);
The answer to your question, is true
hope this helps :D