Question 6 of 40
The following declaration:
int i = 0b10;
    Correct Answer: C

Question 7 of 40
The following declaration:
int i = 010;
    Correct Answer: D

Question 8 of 40
Which of the following operators accept integer arguments only? (Choose two.)
    Correct Answer: A, C

Question 9 of 40
Which of the following expressions decrement variable i by 2? (Choose two.)
    Correct Answer: B, C

Question 10 of 40
What happens when you attempt to compile and run the following code?
Exam CPA-21-02: Question 10 - Image 1
    Correct Answer: B