WorksheetsJava Quiz
Total questions: 8
Worksheet time: 4mins
What is the keyword to stop a loop?
stop
break
cancel
forcestop
What is the correct main method?
public main(String arg)
public static void main()
public static void main(String[] args)
public static boolean main(String args[])
How do you correctly delay the thread for 3 seconds correctly?
Thread.sleep(3);
Thread.delay(300);
Thread.sleep(3000);
Thread.sleepForSeconds(3);
Which if statement is the most correct?
if 5 > i
if (5) > (i++)
if (5 > i)
if (5 <= i)
You can move the expression:
package com.login;
anywhere in your class?
True
False
Can this ever be possible?:
public Main() {
True
False
What is the correct way to return the variable 'var' in a method?
returnValue(var);
return(var);
return var;
(return (var));
How would you print a message in java?
System.print("Hello World!");
println("Hello World!");
System.out.printline("Hello World!");
System.out.println("Hello World!");
