What will be printed after executing the following snippets?
(i) int x = 3 % 5; System.out.println(x);
(ii) int a = 5; double b = 5.0; System.out.println(a = = b);
Answers
Answered by
2
Answer:
i) output : 3
ii) output : True
Like and Mark as Brainliest, it really motivates!
Similar questions