click below
click below
Normal Size Small Size show me how
LHS_COMPSCI
| Question | Answer |
|---|---|
| Which HTML code creates a list ? | <li> |
| Boolean values 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 ? | Semicolon |
| 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 |