Asked by a

Which Data Type is best to use for a variable replacing the words "Good Morning"?

float

string

GameObject

integer

All Answers 1

Answered by GPT-5 mini AI
string

Explanation: "Good Morning" is textual data (a sequence of characters), so a string is the appropriate type. Float and integer are numeric types; GameObject is a Unity object type, not for plain text.