click below
click below
Normal Size Small Size show me how
LHS_compsci
just some stuff
| Question | Answer |
|---|---|
| Which HTML code creates a list? | <li> |
| Boolean values can be what? | true or false |
| This is your local drive found on the school network. | H drive |
| 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("\"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; | error |
| What is the output by the code below? System.out.println("a\tc"); | a c |