🎴 Flashcard Mode
Java Thread Quiz
Card1 / 8
Mastered0
Review0
QuestionClick to flip
What is the name of the method used to start a thread execution?
AnswerClick to flip back
A
start();
💡 Explanation:
The start() method causes this thread to begin execution; the Java Virtual Machine calls the run method of this thread.