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 are approximate numeric data types in ms sql server?
Can you give me some DBCC command options?(Database consistency check) - DBCC CHECKDB - Ensures that tables in the db and the indexes are correctly linked.and DBCC CHECKALLOC - To check that all pages in a db are correctly allocated. DBCC SQLPERF - It gives report on current usage of transaction log in percentage. DBCC CHECKFILEGROUP - Checks all tables file group for any damage.
How does using a separate hard drive for several database objects improves performance right away?
What is difference between table aliases and column aliases? Do they affect performance?
What is the difference between dataadapter and datareader?
New concepts of sql server 2005 use in your project.
What is the difference between TRUNCATE and DROP?
How do I get to sql server configuration manager?
Explain what are partitioned views and distributed partitioned views?
Explain difference between control flow and data flow?
What happens when converting big values to integers?
Explain about service Broker functions?
What is difference between commit and rollback when used in transactions?
What are the types of lock supported by ?
How to sort query output in descending order in ms sql server?