What is the default value of CHAR type?

Answers were Sorted based on User's Feedback



What is the default value of CHAR type?..

Answer / bijoy vp

'\u0000'

Is This Answer Correct ?    34 Yes 6 No

What is the default value of CHAR type?..

Answer / yash

The default value of a variable of value type is the value
assigned in the default constructor. For simple types this
value corresponds to a bit pattern of all zeros:
• For integer types, the default value is 0
• For char, the default value is `\u0000' //Unicode
• For float, the default value is 0.0f
• For double, the default value is 0.0d
• For decimal, the default value is 0.0m
• For bool, the default value is false

Is This Answer Correct ?    26 Yes 2 No

What is the default value of CHAR type?..

Answer / venky

Blank Space

Is This Answer Correct ?    2 Yes 0 No

What is the default value of CHAR type?..

Answer / mallesh

In Sybase the default value for Char is NULL
you can check it as

declare @val char(5)
select @val
o/p is NULL

Is This Answer Correct ?    4 Yes 3 No

What is the default value of CHAR type?..

Answer / foolishchild

'c'. where c represent any character.

Is This Answer Correct ?    1 Yes 0 No

What is the default value of CHAR type?..

Answer / samrat sen

In Sql Server 2000 the default value for char datatype is 10

Is This Answer Correct ?    5 Yes 6 No

What is the default value of CHAR type?..

Answer / satish

8

Is This Answer Correct ?    2 Yes 7 No

What is the default value of CHAR type?..

Answer / asha

Null

Is This Answer Correct ?    8 Yes 15 No

What is the default value of CHAR type?..

Answer / chiru

1

Is This Answer Correct ?    3 Yes 13 No

What is the default value of CHAR type?..

Answer / sujitha

1

Is This Answer Correct ?    7 Yes 27 No

Post New Answer

More SQL Server Interview Questions

What is explicit cursors?

0 Answers  


What about UPDATESTATISTICS ?

2 Answers   HCL, Intelligroup,


What is a mutating table error and how can you get around it?

0 Answers  


Explain what are the different index configurations a table can have?

0 Answers  


What is an indexing strategy?

0 Answers  






How can u get the number of pupils connecting the database?

1 Answers   Cap Gemini,


How to list all schemas in a database?

0 Answers  


What protocol does sql server use?

0 Answers  


What are the transaction properties?

0 Answers  


Write a query for primary key constraint with identity key word?

0 Answers   MindCracker,


Define inner join in sql server joins?

0 Answers  


Who is the owner of a schema in ms sql server?

0 Answers  


Categories