Computer Science, asked by explorer61, 16 days ago

System.out.println(20/5==25%5) ;​

Answers

Answered by kalyanluckym
0

Answer:

0

Explanation:

20/5= 4

25%5=0

Ans:- 4==0

Answered by BrainlyProgrammer
3

Answer:

false

Explanation:

The answer will be in Boolean data type because of a relational operator i.e. '==' which checks

System.out.println(20/5==25%5);

Calculating...

20/5==25%5

4==0

Is 4 equal to 0? No, it will return false.

Correct Answer: False.

Similar questions