Answer Posted / 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 |
Post New Answer View All Answers
What is nonclustered index with included columns ?
Do you know what is sql injection?
What is reference section?
Can group functions be used in the order by clause in ms sql server?
Does full backup break log chain?
What is meant by dirty read?
What are the approximate numeric data types?
Does dbcc checkdb requires db to be in single_user mode? : sql server database administration
How does normalization work?
What is a virtual table in sql?
What is indexing explain it with an example?
What are the triggers in sql?
What is optimistic concurrency?
Why do we use sql limitations? Which constraints can we use while making a database in sql?
Tell me what is normalization? Explain different forms of normalization?