Standard Naming Convention for ASP.NET and C# In programming language naming convention have great benefits to reduce the effort needed to read and understand source...
SQL Server offers six categories of data types for your use: Exact Numeric Data Types: DATA TYPEFROMTO bigint-9,223,372,036,854,775,8089,223,372,036,854,775,807 int-2,147,483,6482,147,483,647 smallint-32,76832,767 tinyint0255 bit01 decimal-10^38 +110^38 -1...
Char DataType Char datatype which is used to store fixed length of characters. Suppose if we declared char(50) it will allocates memory for 50 characters....
Static Class: Declared with Static keyword, methods in Static Class are also static along with variables of the class. This class cannot be instantiated, i.e...