Multiple choice technology web technology

The left association operator % is used in PHP for

  1. percentage

  2. bitwise or

  3. division

  4. modulus

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

In PHP, the % operator is the modulus operator, which returns the remainder of division between two operands. For example, 10 % 3 returns 1. It is not used for percentage calculation (no built-in percentage operator), bitwise OR (that's |), or division (that's /).