Multiple choice technology platforms and products A Java Thread can be created by ____________ Implementing Thread interface. Implementing Cloneable interface. Implementing the Runnable interface. We can not create a Thread, JVM has to create it by it's own. Reveal answer Fill a bubble to check yourself C Correct answer Explanation A Thread can be created either by extending the Thread class or by implementing the Runnable interface. Option A is wrong because Thread is a class, not an interface. Option D is wrong - we can and do create Threads programmatically.