Classification of variables of C# programs
Mention the two categories which distinctly classifies the variables of the C# programs.
Expert
Variables which are defined in the C# program belongs to two major categories: a) Reference type and b) Value type.
Variables which are based on the value type contain a value which is either allocated on the stack or allocated in-line in the structure. Variables which are based on the reference types store the memory address of the variable, that in turn stores the value and are stored over the heap. The variables which are based on the value types have their own copy of data and thus, the operations done on one variable do not affects the other one.The reference-type variables reflect the changes which are made in the referring variables.
Briefly describe side-by-side execution and also explain whether two applications, one using the shared assembly and other private assembly be declared as side-by-side executables?
Explain the syntax of the “for” loop.
Explain what is meant by Procedure oriented language?
Write the name of event handlers which can be included in a Global.asax file?
Write down the importance of delegates. Where must they be employed? Write down the conditions where we need them?
Write main difference between classic ADO and ADO.NET?
Explain concept of the Destructor?
Explain what is meant by the IL?
Explain the code-behind feature of ASP.NET?
State the use of a .disco file?
18,76,764
1945085 Asked
3,689
Active Tutors
1451046
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!