Quotient & Remainder | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Quotient & Remainder

how do you translate quotient & remainder to german? remainder does not make any sense to me

1st Mar 2018, 12:43 PM
Egon Programming
Egon Programming - avatar
3 Answers
+ 2
17 ÷ 3 = (3*5 + 2) / 3 here, 5 is quotient 2 is remainder. In Python3 remainder is expressed: 17 % 3 = 2 print (17 % 3) = 2 ,it means if we divide number 17 by 3, remainder is 2
1st Mar 2018, 1:46 PM
📈SmileGoodHope📈
📈SmileGoodHope📈 - avatar
+ 3
32 / 9 = 3 Rest 5 5 ist der Rest und 3 ist der Quotient. ** I used Google Translate as I dont speak German. **
1st Mar 2018, 5:23 PM
Gami
Gami - avatar
+ 2
We use a remainder operation to determine if the number is odd, and we use the quotient to determine the result of one division. By example: 7/3 =2 quotient and 7%3 = 1 remainder
6th Mar 2018, 5:29 PM
David Rueda 🇪🇸
David Rueda  🇪🇸 - avatar