C# Programming - Datatypes - Discussion
|
|
|
|
Read more:"Life is like riding a bicycle. To keep your balance you must keep moving."
- Albert Einstein
|
| 2. |
Which of the following is an 8-byte Integer? |
| [A]. |
Char | | [B]. |
Long | | [C]. |
Short | | [D]. |
Byte | | [E]. |
Integer |
Answer: Option D
Explanation:
No answer description available for this question.
|
|
Sunil said:
(Sun, Sep 30, 2012 12:58:30 PM)
|
|
| |
1 byte=8 bits.
Integer=32 bits.
Char=16 bits. |
|
Rehan Khan said:
(Thu, Apr 18, 2013 10:42:30 AM)
|
|
| |
integer = 4 byte.
long = 8 byte.
char = 2 byte.
short = 2 byte. |
|
|