Which of the following is an illegal use of function put?

a. cout.put( 'A' );
b. cout.put( "A" );
c. cout.put( 'A' ).put( '\n' );
d. cout.put( 65 );

b. cout.put( "A" );

Computer Science & Information Technology

You might also like to view...

Which command will show the path of routers between your computer and a web server?

a. ping b. ipconfig c. tracert d. nbtstat

Computer Science & Information Technology

What is the value of dblOutcome after the following section of code executes?

Dim dblA as Double Dim dblB as Double Dim dblC as Double Dim dblOutcome as Double dblA = 45 dblB = 30 dblC = 3 * dblA / dblB dblOutcome = 2 * (dblC + 15) a. 39 b. 24 c. 0 d. 80

Computer Science & Information Technology