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;
Where the ViewState information can be stored?
State the use of the Panel control? Does it is displayed at the runtime.
Explain why SiteMapPath control is being referred as eyebrow or breadcrumb navigation control?
What is meant by the Cloud Service?
Explain some of the versions of .NET?
What is .NET Framework? Specify its applications?
Explain about the DataContext class and also how it is related to the LINQ?
Write differences between Int32 and Int.
Illustrate the term LinqDataSource control?
18,76,764
1938561 Asked
3,689
Active Tutors
1421850
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!