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;
Give the basic syntax of LINQ query in Visual Basic as well as in C#.
Describe the major subsystems of the WPF (Windows Presentation Foundation) in brief?
In ASP.Net which namespaces imported automatically by Visual Studio?
Distinguish between Boxing and Unboxing.
Differentiate between Assembly and NameSpace?
By which command we can turn-off and turn-on CAS?
How one can create the ellipse, which is the non- rectangular window?
Explain what is the CLI and also if it is same as that of CLR?
Distinguish among a Thread and a Process?
What is the way to identify that a Page is Post Back?
18,76,764
1936584 Asked
3,689
Active Tutors
1445441
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!