Computer Science, asked by anujkumar1992, 8 months ago

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 Aditya231960
0

Answer:

Output will be "Odd"

Explanation:

As we know that % is used to find remainder in java

Similar questions