Multiple choice technology programming languages

What are the implicit packages that need not get imported into a class file?

  1. java.object

  2. java.io

  3. java.lang

  4. java.applet

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

Java automatically imports java.lang, which contains fundamental classes like String, Object, System, Math, and wrapper classes. All other packages (java.io, java.util, etc.) must be explicitly imported.