120k views
24 votes
Test: Unit 1

Highlight both variables in the following code.
1 name =
input("What is your name?")
2 print("Hello
+ name)
3
Click and drag to highlight. Hold down the Cmd key (Mac) or Ctrl key (Windows) for multip!

1 Answer

5 votes

The words in bold are the variables.

1 name = input("What if your name?");

2 print("Hello" + name)

User Myl
by
3.4k points