click below
click below
Normal Size Small Size show me how
LHS_COMPSCI
Question | Answer |
---|---|
11) Which html code creates a list? | <li> |
12) Boolean values can be what? | True or False |
13) This is your local drive found on the school network | H: Drive |
14) In Java, every program statement ends with a what? | ; |
15) What is the output by the code below? System.out.print( "ab\\ab" ); | ab\ab |
16)What is the output by the code below? System.out.println( 3 + "" + 3 ); | 3 3 |
17)What is the output by the code below? System.out.println( "\"9" ); | "9 |
18)What is the output by the code below? int x = 9; double y = x; System.out.println( y ) | 9.0 |
19) What is the output by the code below? double y = 9.0; int x = y; System.out.print( x ); | error |
20) What is the output by the code below? System.out.print( "a\tc" ); | a c |