C# Programming - Datatypes - Discussion

Discussion Forum : Datatypes - General Questions (Q.No. 3)
3.
Which of the following is NOT an Integer?
Char
Byte
Integer
Short
Long
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
5 comments Page 1 of 1.

Gopichand ARikatla said:   8 years ago
In C#Programming Language char means character that means it represents only character's the remaining Byte, Int, Short, Long are Integers, I mean that these datatypes represent Numbers. So In this Question, apart From char remaining, all datatypes are integers.

Abhijit said:   1 decade ago
In C# IL Type of Char is System. Char where as IL Type of Byte is System. Byte and Integer, Short, Long is System. Int so Char is not an Integer.

Pooja said:   7 years ago
Byte, short, Integer and long comes under numerical data types whereas char comes under non-numerical data type.

Minu mohna said:   1 decade ago
char is not an integer because char stands for characters were integer stands for numbers.

Nikhitha said:   7 years ago
In c programming, 'char' stands for character. So,char doesn't store any integer.

Post your comments here:

Your comments will be displayed after verification.