Why will the following code not compile? Boolean b = new Boolean("false"); if (b) {}

    1. The quotes should not be around false.
    1. New should be after Boolean.
    1. A boolean is expected not a Boolean.
    1. The Semi-colon should not be used.

Correct Option: C

Find more quizzes: