Computer Science, asked by RaikaPaul112, 3 months ago

PRINT 65 MOD 3 - what will be the output of this statement?



please answer quickly ​

Answers

Answered by atrs7391
1

Answer:

PRINT 65 MOD 3, the output of this statement is 2

MOD is a modulo operator which returns the remainder. So, here the statement is PRINT 65 MOD 3, so when we divide 65 by 3 we gets 21 quotient and 3 remainder, so the result here is 3 and PRINT prints the result which is 3 here.

Similar questions