Multiple choice technology platforms and products

char_string(string_char("A",1)+1)

  1. A

  2. a

  3. B

  4. b

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

string_char("A",1) returns the ASCII/unicode code of 'A' (65). Adding 1 gives 66. char_string(66) converts back to character, which is 'B'.