click below
click below
Normal Size Small Size show me how
LHS_COMPSCI
Question | Answer |
---|---|
which HTML code creates a list? | <li> |
boolean vales can be what? | true / false 0 / 1 |
this is your local drive found on the school network. | h |
in java, every program statement ends with a what? | ; |
what is the output by the code below? System.out.println("ab\\ab"); | ab\ab |
what is the output by the code below? System.out.println(3 + " " + 3); | 3 3 |
what is the output by the code below? System.out.println("\"9"); | "9 |
what is the output by the code below? int x = 9; double y = x; System.out.println(y); | 9.0 |
what is the output by the code below? double y = 9.0; int x = y; System.out.println(x); | error |
what is the output by the code below? System.out.println("a\tc"); | a c |