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;
Explain what is Multicast delegate?
What is AdRotator Control?
List the types of generations there are in a garbage collector?
Explain the use of a DropDownStyle property of a ComboBox control?
What are Binders ?
Illustrate Application State in the ASP.NET.
Name the latest features that added in .NET Framework 4.0?
Write down the code for selecting an item in ListView control programmatically in the C#?
List the types of Cookies that are available in ASP.NET?
Describe the role of the JIT compiler in .NET Framework?
18,76,764
1933376 Asked
3,689
Active Tutors
1421267
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!