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;
Which method is used in .NET to enforce garbage collection?
How Web services can be prevented from the unauthorized access?
State some of the use of ScriptManager control in the AJAX?
Briefly state the characteristics of the value-type variables which C# programming language supports.
Write differences between the while and for loop in C#.
Write the syntax to declare the namespace in the .NET and in VB?
Write about the classes are supported to make an XML DOM?
Specify the requirements to run ASP.NET AJAX applications on the server?
What is Code Access Security (CAS)?
Describe the meaning of Serialization and Deserialization and its utilization?
18,76,764
1955641 Asked
3,689
Active Tutors
1458389
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!