1.

Which operator is used for percent? A..+B. %C..* ​

Answer» TION:% is the modulo operator, so for example 10 % 3 would result in 1. If you have some numbers a and B , a % b GIVES you just the REMAINDER of a divided by b . So in the example 10 % 3 , 10 divided by 3 is 3 with remainder 1, so the answer is 1.


Discussion

No Comment Found