Multiple choice technology programming languages What will be the value of %a in the expression %a = emp_num ? emp_num value of emp_num none null Reveal answer Fill a bubble to check yourself B Correct answer Explanation The expression %a = emp_num assigns the actual value stored in the emp_num variable to %a. The % symbol typically indicates a variable reference, and the assignment copies the value, not the variable name.