Test description

This test assesses basic knowledge of Java.
Topics: Java language syntax, object-oriented programming, operators, data types, …

Sample questions

1
What will be result of compiling and running the following class?

public class Main {
	public static void main(String[] args) {
		System.out.println("Hello world");
	}
}