Card 29 / 42: When creating a thread by implementing Runnable interface :
A)
you must implement the method run()
B)
you can override run(), but in case you don't you'll be restricted to the provided run() method, which contains no code and does nothing
Answer:
A) you must implement the method run()