Try-Catch-Finally
State the function of the “Try-Catch-Finally” block
Expert
“Try ” block includes those statements which may results in the exception and the Catch block handles this exception, if any occurs. “Catch ” block comprises of the statements which have to be executed, whenever an exception occurs. The “Finally ” block gets always executed, irrespective of the fact whether an exception occurs or not. The finally block is generally used to perform the clean-up process. In case any exception occurs within the try block, the control of the program is directly transferred to its corresponding catch block and then to the finally block. If no exception occurs within the try block, then control of the program is directly transferred to the finally block.
How a color is picked from the ColorDialog box?
Describe the appSettings Section which contains in a web.config file?
Explain the disconnected architecture of the ADO.NET's data access model.
Describe memory-mapped files?
What is Code Access Security (CAS)?
Differentiate between the ComboBox control and the ListBox control?
Explain the following methods DataAdapter.Update() and DataSetAcceptChanges()?
How can CAS be turn-on and turn-off?
How all items in the CheckedListBox control in .NET 4.0 can be checked/unchecked?
Differentiate between SqlClient and OLEDB Provider?
18,76,764
1940267 Asked
3,689
Active Tutors
1453850
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!