Question: How do you create and run a Thread for this class?

  1. `Thread thread = new Thread(new CurrentDateRunnable()); thread.start();`
  2. `new Thread(new CurrentDateRunnable()).join();`
  3. `new CurrentDateRunnable().run();`
  4. `new CurrentDateRunnable().start();`

Answer: The correct answer of the above question is Option A:`Thread thread = new Thread(new CurrentDateRunnable()); thread.start();`