229k views
3 votes
If you want the data associated with a variable called “game” to appear in the interpreter with a space after it, which of the following should you use?

game,
game.
game+
game_

User Dumi
by
4.0k points

2 Answers

0 votes

Answer:

C. game+

Step-by-step explanation:

User Hwaxxer
by
4.4k points
1 vote

Answer:

game+

Step-by-step explanation:

The analysis given in the question is an illustration of concatenation.

Assume that variable game is a strong variable and we want a blank space appended to the data in this variable, we make use of the following syntax.

game + " "

The plus (+) sign between game and the blank space " " implies that space should appear immediately after the data in game.

Hence, option C answers the question.

User JPollock
by
4.5k points