MindIQ Academy
1 / 150
OCJP 21 (1Z0-830) - Concurrency - 150 MCQs

Question 1

What is the result?

class Test {
    public static void main(String[] args) {
        Thread t = new Thread(() -> System.out.print("run"));
        t.start();
    }
}