InterviewSolution
Saved Bookmarks
| 1. |
Find the remainder when 923^(888) + 235^(222) is divided by 4. |
|
Answer» SOLUTION :REM `(923^888+235^222)/4` =Rem.`(3^888+3^222)/4` =Rem. `(1+1)/4=2/4` THUS the remainder is 2. |
|