You are creating a variable for an application.
You need to store data that has the following characteristics in this variable:
Consists of numbers and characters
Includes numbers that have decimal points
Which data type should you use?
A.
Decimal
B.
Char
C.
String
D.
Single
Explanation:
Need a string to store characters.
C: String
Only string or char allows characters, but since char only allows a single character, it’s not an option.