Multiple choice technology web technology

select RTRIM('fasdfsadf ')

  1. fasdfs

  2. fas

  3. fasd

  4. fasdfsadf

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

RTRIM removes trailing spaces from a string. When applied to 'fasdfsadf ' (with trailing spaces), it returns 'fasdfsadf' with all trailing spaces removed. Options A, B, and C incorrectly truncate characters from the end of the actual string content rather than just removing spaces.