The result of the code execution

Report a typo

What will be the result of the following code execution:

import java.io.PrintStream;

public class Test {

    public static void main(String[] args) throws Exception {

        System.class
                .getField("out").getType()
                .getMethod("println", String.class)
                .invoke(new PrintStream(System.err), "Hello!");

    }
}

Select one option from the list
___

Create a free account to access the full topic