1. Strong name
2. how to prevent a class from being inherited
3. delegates
4. default modifier for interface
5. default modifier for class
6. base class for exception
7. diff bet trigger and view in sql
8. how to exchange values from one page to another page
9. can multiple catch block ll be executed at same time
10. can u store different data types in an array & array list
11. when we ll use trigger
12. try,catch,finally usage

Answer Posted / abhishek

1. Strong Name is the name that consists of an assembly's identity—its simple text name, version number,
and culture information (if provided)—strengthened by a
public key and a digital signature generated over the
assembly.

2. Make the constructor of the class as "private".

3. Delegates are the function pointers which help you to
call a function without knowing it's name. More detailed
explanation: http://www.devhood.com/tutorials/tutorial_details.aspx?tutorial_id=361

4. They all are, and must be public, by default.

5. Public.

6. Object. For more info see, http://msdn.microsoft.com/en-us/library/z4c5tckx(VS.71).aspx

7. Trigger is something which get fired when some event occurs. It is coupled/associated with an event.
A view is, in essence, a virtual table.
It does not physically exist. Rather, it is created by a query joining one or more tables.
http://www.techonthenet.com/sql/views.php

8.
9. Multiple catch blocks can't be executed at the same ,time if they are handling the same try block.

10. No we can't.
11. Refer answer of Q 7.
12. try: The code after the try clause is the guarded section of code. The throw expression throws (raises) an exception.
catch: The code block after the catch clause is the exception handler, and catches (handles) the exception thrown by the throw expression.
finally: The code in the finally part of the statement is always executed, regardless of an exception.
http://support.microsoft.com/kb/815662

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why do we use class?

635


What is the benefit of oop?

570


write a program using c++ to implement single contiguous memory mangement techniques.display the content of the main memory after yhe allocation of jobs and percentage of the wastage of the main memory

2763


What is polymorphism programming?

605


What is a class in oop?

606






How do you achieve polymorphism?

618


What polymorphism means?

624


What is object in oops?

615


String = "C++ is an object oriented programming language.An imp feature of oops is classes and objects".Write a pgm to count the repeated words from this scenario?

1944


write a code for this:trailer recordId contains a value other than 99, then the file must error with the reason ‘Invalid RECORD_ID’(User Defined Exception).

1645


write a program that takes input in digits and display the result in words from 1 to 1000

1989


What are the components of marker interface?

602


What is encapsulation in simple terms?

541


What do you mean by Encapsulation?

643


what is the 3 types of system development life cycle

2435