output of the given snippet
Attachments:
Answers
Answered by
3
The output of the following code will be:
50
0
Answered by
1
Answer:-
Here, a=1 and b=1 So,
a==1 && b==1 is true.
else block will execute.
Now,
m=10,n=5
m*n=50
m%n=0
Hence, output will be,
50
0
Similar questions