Question 14:
Given the code fragment:
Which option can replace xxx to enable the code to print 135?
Answer options:
A. int e = 0; e < = 4; e++ B. int e = 0; e < 5; e + = 2 C. int e = 1; e < = 5; e + = 1 D. int e = 1; e < 5; e+ =2
Answer correct:
B