Multiple choice general knowledge

FOR ASSIGNING THE VARIABLES PL/SQL USES '='SIGN

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
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.