- 
					 In C++, what is the sign of character data type by default?
 
- 
                        
- Unsigned
 - Implementation dependent
 - Signed
 - All of above
 - None of these
 
 
Correct Option: B
The standard does not specify if plain char is signed or unsigned. There are three distinct character types according to the standard: char, signed char and unsigned char.