Which code, inserted at line 14, generates the output “3.14 10”?

Which code, inserted at line 14, generates the output “3.14 10”?
#include using namespace std; namespace myNamespace1
{ int x = 5; int y = 10;
}
namespace myNamespace2
{ float x = 3.14; float y = 1.5;
} int main () { //insert code here cout << x << " " << y; return 0; } A. using myNamespace2::y; using myNamespace1::x;
B. using namespace myNamespace1;
C. using namespace myNamespace1; using namespace myNamespace2;
D. using myNamespace1::y; using myNamespace2::x;

Download Printable PDF. VALID exam to help you PASS.

Posted in: CPA

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.