Question 757: Which two are valid constructors for Thread?Thread(Runnable r, String name)Thread()Thread(int priority)Thread(Runnable r, ThreadGroup g)Thread(Runnable r, int priority)
tcs
wipro
infosys
general
aptitude
threads
java-programming
(1) and (2) are both valid constructors forThread.(3), (4), and (5) are not legalThreadconstructors, although (4) is close. If you reverse the arguments in (4), you'd have a valid constructor.