InterviewSolution
Saved Bookmarks
| 1. |
6.What will be the output of the following expressionsa. 20/3 b. 21%3 |
|
Answer» a) 6.666666666666667b) 0Explanation:a). a/B DIVIDES a with b and RETURNS the output. b). a%b returns the REMAINDER when a is DIVIDED by b. |
|