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;
What do you mean by the term non_deterministic finalization?
What is a static constructor and also explain its features?
What is the concept of CAS?
Specify the operating systems over which the .NET Framework runs upon?
Write the major differences between the classic ADO and ADO.NET?
Distinguish the terms Asp.net and Vb.net?
Explain what is meant by Procedure oriented language?
Describe about the characteristic of Anonymous type?
How we can enable impersonation in the web.config file?
How one can put a border around the picture box?
18,76,764
1934061 Asked
3,689
Active Tutors
1461626
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!