Leave a Reply 2

Your email address will not be published. Required fields are marked *


Kevin

Kevin

Answer given is correct

imyrta

imyrta

Answers: A, B

Explanation:

D is wrong because int a, b, c; can’t compile as long int a, b, c = 0; is present because we have duplicate variables.
C is wrong because Int k, l, m; = 0; can’t compile since Int is incorrectly written.
E is wrong because int g, int h, int i = 0; java doesn’t support this syntax.