COMPUTER SCIENCE AND ENGINEERING
ALGORITHMS
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
|
7
|
|
1
|
|
0
|
|
5
|
Detailed explanation-1: -4. What is answer of this expression, 22 % 3 is? a) 7b) 1c) 0d) 5Answer: bExplanation: Modulus operator gives remainder. So, 22%3 gives the remainder, that is, 1.
Detailed explanation-2: -What is the answer to this expression, 22 % 3 is? Explanation: Modulus operator gives the remainder. So, 22%3 gives the remainder, that is, 1. 5.
Detailed explanation-3: -20%3 will be solved as the remainder obtained after dividing 20 by 3. We know, 3 x 6 = 18. This leaves 2 as the remainder. Hence, 2 is the answer.
Detailed explanation-4: -The output of the expression-print (-18 //4) is-5. When using the floor division operator (//), the result is rounded to the next smallest (big negative) integer when the result is negative. The / operator can be used to divide by a floor, also known as integer division.