click below
click below
Normal Size Small Size show me how
LHS_COMPSCI
Question | Answer |
---|---|
Which HTML code creates a list? | <li></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.println("abc\\abc"); | 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 |