Multiple choice

The _________ package is the default package included into every Java program.

  1. Java. lang

  2. Java. io

  3. Java. awt

  4. Java. applet

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The java.lang package is automatically imported into every Java program without requiring an explicit import statement. It contains fundamental classes like Object, String, Math, and System that are essential for basic Java operations. Packages like java.io, java.awt, and java.applet require explicit imports.