1.

Select the correct differences between char and varchar datatypes?

1. varchar is non unicode and char is unicode character datatype
2. char is n bytes whereas varchar is actual length in bytes of data entered in terms of storage size
3. varchar is variable in length and char is the fixed length string
4. For varchar, if a string is less than the maximum length then it is stored in verbatim without any extra characters while for char if a string is less than the set length it is padded with extra characters to equalize its length to given length

A. 1, 3, 4
B. 2, 3, 4
C. 1, 2, 4
D. 3, 4
Answer» E.


Discussion

No Comment Found