Multiple choice

Each Java program has one thread, which is the ______ thread.

  1. calling

  2. called

  3. main

  4. child

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

Every Java program starts execution with a single thread known as the main thread. This thread is responsible for executing the main() method and serves as the starting point from which other threads can be spawned, making it the foundation of multi-threaded Java applications.