FOR ASSIGNING THE VARIABLES PL/SQL USES '='SIGN
B
Correct answer
Explanation
In PL/SQL, the assignment operator is ':=' not '='. The '=' sign is used for comparison (equality check) similar to other programming languages. This distinction is crucial because using '=' for assignment will result in a syntax error. The ':=' operator is specifically designed for variable assignment in PL/SQL blocks.