Define Constant and Variable
Define constant and variable.
Expert
A variable is a meaningful name which is given to a data storage location in the computer memory which contains a value. Each variable that is associated with the data type finds out what type of value can be stored in variable, for example:, a decimal such as 30.05, an integer, like 100 or a character, such as 'A'.
Variables can be declared by using the following syntax:
<Data_type> <variable_name> ;
A constant is same as the variable except that the value, which is assigned to the constant, cannot be changed, as in the case of a variable. Constants should be initialized at the time of declaration.
Constants can be declared by using the following syntax:
const int interestRate = 10;
Briefly describe the ADO.NET architecture?
Write the use of MaxDate and MinDate properties of a MonthCalender control?
Write down the importance of delegates. Where must they be employed? Write down the conditions where we need them?
Briefly describe login controls?
Illustrate the terms Authorization as well as Authentication?
By which method we can sign out from the forms authentication?
What do you understand by Common Type System (CTS)?
Elucidate Master Pages in ASP.NET?
Write down the command which is used to run a batch?
Illustrate some of the points regarding UserControl in WPF?
18,76,764
1931442 Asked
3,689
Active Tutors
1425848
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!