0 of 9 questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
0 of 9
Time has elapsed
0 of 0 point(s), (0)
0 of 0, (0)
Essay(s) Pending: 0 (Possible Point(s): 0)
Which of the following is a method signature?
Select all of the following statements that are NOT true about constructors.
Which of the following shows an object constructor being used?
After using a Scanner
, what clean up step should be taken?
Review the code below.
Scanner scanner = new Scanner(System.in);
System.in is an argument that is passed to the Scanner
constructor.
What does Scanner
do with this argument?
What does the Scanner
class do in Java?
What is the difference between Scanner.next() and Scanner.nextLine()?
Which of the following is NOT a method of the Scanner class?
What is System.in
? Choose all that apply.