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? | ; |
| What is the output by the code below? System.out.print("ab\\ab"); | ab\ab |
| What is the output by the code below? System.out.print(3+ "" +3); | 3 3 |
| What is the output by the code below? System.out.print("\"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.print("a\tc"); | a c |