Answer:
(A). Is the “assignment” operator and computes the right side, takes that value and stores it in the variable on the left side.
Step-by-step explanation:
The "="(equal) sign is used as an assignment operator that is it evaluates the value on the right side of the operator and stores or assigns that value to the variable on left side of the operator."=" operator not to be confused with "==" equal to operator it checks the value on the right is equal to the value on the left.if it is returns true else returns false.