Multiple choice Which of these variables is a string? name = "Hello!" string = 33 name = 3.22 Reveal answer Fill a bubble to check yourself A Correct answer Explanation A string is a sequence of characters enclosed in quotes. 'name = "Hello!"' correctly assigns a string literal to a variable.