Computer Science, asked by suriyasurimsk, 1 year ago

Consider the variables a and b. Values of a and b are 280 and 15 respectively. The operation that will return a remainder is

Answers

Answered by ashwinnadal7
0

Answer:

a%b

Explanation:a mod b gives the remainder of the term

Answered by ankurbadani84
0

Answer:

280 % 15 = 10 - Remainder

Explanation:

Modulus operator will result in remainder. It is denoted by %.

It is given by a % b => r where a - dividend, b - divisor, r - remainder.

In this case, 280 % 15 = 10 - here 280 - dividend, 15 - divisor, 10 - remainder.

Similar questions