Multiple choice technology platforms and products char_string(string_char("A",1)+1) A a B 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'.