Part B: 12 questions worth 2marks each. (Total 24 Marks)
1) Assume that Test is a class provided so the code below compiles, and that Test doesn't generate additional internal Test objects. Explain where and how many Test objects will be created by the following code. If you provide the correct number with no justification you will receive 0.5 mark.
void testOne(Test &C)
{
cout << "Testing" << endl;
}
void testTwo(Test C)
{
cout << "More testing" << endl;
}
int main()
{
Test A;
Test B = A;
testOne(A);
testTwo(B);
return 0;
}