1Z0-811

Study mode — explanations shown

1

Primitives, Strings and Operators

medium

Refer to the exhibit. What is the output?

Exhibit

public class Test {
    public static void main(String[] args) {
        int a = 3;
        int b = 5;
        int c = a * b + 2;
        System.out.println(c);
    }
}
0 of 88 answered