COMPUTER PROGRAMMING FUNDAMENTALS
WHAT IS PROGRAMMING
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
Which Data Type represents text?
|
Boolean
|
|
Integer
|
|
String
|
|
Float
|
Explanation:
Detailed explanation-1: -The TEXT data type stores any kind of text data. It can contain both single-byte and multibyte characters that the locale supports. The term simple large object refers to an instance of a TEXT or BYTE data type.
Detailed explanation-2: -The string data types are CHAR, VARCHAR, BINARY, VARBINARY, BLOB, TEXT, ENUM, and SET .
Detailed explanation-3: -A string represents alphanumeric data. This means that a string can contain many different characters, but they are all considered as if they were text, even if the characters are numbers.
Detailed explanation-4: -Well, strings in C are actually a type of array – specifically, they are a character array . Strings are a collection of char values.
There is 1 question to complete.