CPA-21-02 Web TestEngine demo

Exit VCEDump CPA-21-02 CPA - C++ Certified Associate Programmer
Question 9 of 39
0% complete
Q9 Single choice

What is the output of the program?

#include <iostream>
#include <string>
using namespace std;
int main()
{
string s1[]= {"H" , "t" };

string s;
for (int i=0; i<2; i++) {
s = s1[i];
s.insert(1,"ow");
cout << s;
}
return( 0 );
}

Sign in to mark questions

Sign in to save marked questions and return to this demo.

Sign in