Multiple choice technology programming languages

$PAD('54345','0','6) equals

  1. '054345''

  2. '0054345''

  3. 54345'0'

  4. d'54345'00'

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

$PAD adds padding characters to the left side of a string to reach the target length. '54345' (5 characters) padded with '0' to length 6 becomes '054345', with one zero added to the left.