|
.Net Debugging and tracing - Interview Questions
Break mode lets you to observe code line to line in order to locate error.
VS.NET provides following option to step through code............
Both these objects are found in the System.Diagnostics namespace.
Both are used for diagnose problems...............
The trace class in the code is used to diagnose problem.
You can use trace messages to your project to monitor events in the released
version of the application................
The Trace and Debug objects contain a Listeners collection.
These Listeners collection collect output from the trace statements.
There are three types of predefined listeners:...............
Trace switches are used to configure tracing behavior.
There are two kinds of trace switches: BooleanSwitch and TraceSwitch.
BooleanSwitch: It is either on or off..............
Also read
Here you can learn about break mode, options to step through code in .Net, Debug
Vs Trace in .Net, trace class, listeners collection of Trace and Debug objects
and Trace Switches.
JIT compiler is a part of the runtime execution environment that helps in a
higher performance by placing the complied code in the cache for a faster
execution.............
An assembly is a collection of files (dll’s, exe’s), group of resources that
help in creating a logical unit of functionality...........
Here are the general steps that are followed during a transaction....
MVC, which stands for Model View Controller, is a design pattern that helps us
achieve the decoupling of data access and business logic from the presentation
code , and also gives us the opportunity to unit test the GUI effectively and
neatly, without worrying about GUI changes at all..........
Here you have details about session state, its modes and advantages and
disadvantages of using session state management in ASP.NET.
|