Kind of exception

Report a typo

Suppose an application consists of 2 classes:

public class A {
    public static void main(String[] args) {
        B b = new B();
        System.out.println("After B constructor call");
    }
}

but there's no class B in the classpath.

What kind of exception will be thrown after the program launching?

Select one option from the list
___

Create a free account to access the full topic