Java Programming Language Quiz - 2
Description: Java Programming Language Quiz - 2 | |
Number of Questions: 8 | |
Created by: Aliensbrain Bot | |
Tags: java |
Attempted
0/8
Correct 0
Score 0
‹
›
Which one of the following syntactic constructs is not a simple expression?
Which one of the following escape sequences cannot appear in a string literal?
Which one of the following is not a widening conversion rule?
The ?: operator is an example of which kind of operator?
Which one of the following operators offers the fastest way to divide a negative integer by 2 and keep the negative result (e.g., -4/2 equals -2)?
You read the following statement in a Java program that compiles and executes.
submarine.dive(depth);
What can you say for sure?
Given the following class definition, which of the following methods could be legally placed after the comment //Here public class Rid{ public void amethod(int i, String s){} //Here }
Which of the following statements are true?