Select RIGHT('HELLO', 3); What will be the output of the above code?

53. Select RIGHT('HELLO', 3)
What will be the output of the above code?

  1. HELL
  2. ELL
  3. OLL
  4. LLO

Answer: D) LLO

Explanation:

RIGHT function returns us the RIGHT part of the string, according to the specified number of characters, so the output would be LLO.

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.