5. Characters In, Characters Out

Answer:

The characters '1' , '2' , '3' , and '4' .

Characters In, Characters Out

charsINcharsOUT

The keyboard sends character data to the computer, even when the characters look like numbers. And the program sends characters to the monitor, even when it has calculated a numerical result. (Actually, characters are not sent directly to the monitor. They are sent to the graphics card which converts them into a video signal which is displayed on the monitor.)

If your program does arithmetic, the input characters must be converted into one of the primitive numeric data types. This is done using a Scanner object. Then a result is calculated using arithmetic with the numeric data. The result must then be converted into character data before it is sent to the monitor. This is done using a method of System.out.


Question 5:

Have you already used System.out?