

InterviewSolution
Saved Bookmarks
1. |
Which of the following is the truncation division operator?(a) /(b) %(c) //(d) | |
Answer» Right option is (c) // To explain: // is the operator for truncation division. It is called so because it returns only the integer part of the quotient, truncating the decimal part. For example: 20//3 = 6. |
|