A class that extends Thread cannot extend another concrete class.
Practice this question from Quiz: Java Concurrency, with options and an explanation.
Question
A class that extends Thread cannot extend another concrete class.
Option A — Correct answer
True
Java has single class inheritance, so implementing Runnable preserves the superclass slot.
Option B
False
Java has single class inheritance, so implementing Runnable preserves the superclass slot.