+ 3
What is the quotient??
it's in the first bit?
9 Answers
+ 3
Dividend / Divisor = Quotient R Remainder
+ 3
a / b = c
Dividend / divisor = quotient
+ 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
+ 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
+ 1
Quotient is the answer of division
0
all answered. thanks guys!
0
hello
0
guys i m need help