Question-5 What is the output
of given code: { int p=12.q=13;
System.out.println
(p+q)%2==0 ?"Even" : "Odd"); }
Answers
Answered by
0
Answer:
Output will be "Odd"
Explanation:
As we know that % is used to find remainder in java
Similar questions