Structures
What do you mean by Structures? Explain in brief?
Expert
Structure refers to the heterogeneous collection of the elements which are referenced by the same name. A structure is declared by using the “struct” keyword.
Following is an example that creates a structure to store the employee's information:
struct emp { fixed int empID[15]; fixed char name[30]; fixed char addr[50]; fixed char dept[15]; fixed char desig[15]; }
The above instance defines a structure emp and members of this structure specifies the information about the employee.
What is meant by the term Global Assembly Cache (GAC)?
A Destructor is defined in a class that is developed by using the C# programming language, but the destructor is never executed. Why did this happen?
Which method is used in .NET to enforce garbage collection?
What is meant by Delegate?
What do you mean by ASP?
Why there is a requirement of user-defined controls?
Explain the use of <sessionState> tag in a web.config file?
Is it possible to post and access view state in the other application?
Explain about standard query operators in LINQ?
Write about the AJAX and JavaScript?
18,76,764
1958665 Asked
3,689
Active Tutors
1449169
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!