Identify and give the application of the following operators.
(a) / (b) //
Answers
Answered by
3
Answer:
a) / is division operator and it performs regular division with decimals.
b) // operator returns quotient.
Answered by
5
/ is the division operator.
Example
x = 5 / 2
x is 2.5
// is the floor division operator
y = 5 // 2
y is 2
santimeher40737:
hiiii babu
Similar questions