How many bytes do we need to store the name 'Sachin Tendulkar' using the char data type?
32
16
15
30
Correct Answer : A
Size of char datatype is 2 bytes i.e.16 bits. Given the name 'Sachin Tendulkar' which has 16 characters (including 1 character for space in between). So total size will be 16 * 2 = 32 Bytes.