Multiple choice java What is the name of the method used to start a thread execution? init(); start(); run(); resume(); Reveal answer Fill a bubble to check yourself B Correct answer Explanation The start() method causes this thread to begin execution; the Java Virtual Machine calls the run method of this thread.