What is the quotient?? | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
+ 3

What is the quotient??

it's in the first bit?

1st Oct 2018, 6:28 AM
Tom Uren
Tom Uren - avatar
8 Antworten
+ 3
Dividend / Divisor = Quotient R Remainder
1st Oct 2018, 8:27 AM
👑 Prometheus 🇸🇬
👑 Prometheus 🇸🇬 - avatar
+ 3
a / b = c Dividend / divisor = quotient
1st Oct 2018, 6:54 AM
Anna
Anna - avatar
+ 3
\ gives exact value of divide which is quotient. 9\2=4.5 but \\ use for floor division. 9\\2 -------- 2| 9 |4 -------- 8 -------- 1 answer is 4 and here remainder is 1 which can find like this. 9%2=1
1st Oct 2018, 1:04 PM
Maninder $ingh
Maninder $ingh - avatar
+ 1
Take an example a = 13/5 Here, the output is 2.6 in mathematical term. Let's look at it from a programming Perspective 5 goes in 13 , two times and during the division we get 3 as a residue 2 2 --------- OR. ---------- 5) 13 5 ) 13 ( 3 - 10 -10 -------- 3 So here, 2 is a quotient and 3 is a remainder in Python the code would be a = 13/5 output: 2.6 # Gives us the output in decimals a = 13//5 output: 2 # Gives us just the Quotient a = 13%5 output: 3 #Gives us just the remainder
1st Oct 2018, 9:59 AM
Zubair Khan
Zubair Khan - avatar
+ 1
Quotient is the answer of division
3rd Oct 2018, 9:22 PM
Jason
Jason - avatar
0
all answered. thanks guys!
9th Oct 2018, 6:09 AM
Tom Uren
Tom Uren - avatar
0
hello
19th Oct 2018, 6:59 PM
Yusefabdallrhmun
0
guys i m need help
19th Oct 2018, 7:01 PM
Yusefabdallrhmun