Computer Science, asked by SHIKHZCHIKZ7267, 11 months ago

X=5
y=2
print(x%y)
print(x**y)
what is the output of this programe

Answers

Answered by sanchit5240
3

Answer:

The output of programs will this

3,10

Answered by bhattak9617
3

The output for this programme in Java is.

x%y = 1. (%basically means remainder )

x*y = 10

Similar questions