Explain how to create a thread and start it running.
Ask by Anonymous User
Updated 14 Sep 2020
By extending the Thread class wherein the subclass needs to override the run method. Then just an instance of that class needs to be created and [classname].start() would start it running.