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

Answers were Sorted based on User's Feedback



1. Strong name 2. how to prevent a class from being inherited 3. delegates 4. default modifier fo..

Answer / 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

1. Strong name 2. how to prevent a class from being inherited 3. delegates 4. default modifier fo..

Answer / hi_five462000

hope u guys know ans for des

all d best

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More OOPS Interview Questions

c++ is a purely oop concept?

3 Answers   Google, TCS,


What is polymorphism and example?

0 Answers  


What causes polymorphism?

0 Answers  


What is abstract class in oops?

0 Answers  


1. Define a class.

6 Answers  






What is polymorphism used for?

0 Answers  


How to handle exception in c++, For example in a functions i am assigning memory to some variables and also in next instructions in am dividing one variable also. If this functions generates a error while allocating memory to those variable and also while dividing the variable if i divide by zero then catch block how it will identify that this error has cone from perticular instruction

0 Answers  


why constructor cannt be declar virtually? why destructor cannt be overloaded?

2 Answers   Infosys,


We have a scale and 7 balls. 1 ball is heavier than all the rest. How to determine the heaviest ball with only 3 possible weighing attempts?

8 Answers   IBM, Sage, Vertex,


What's the full form of STL?

2 Answers  


What is inheritance in simple words?

0 Answers  


What is difference between inheritance and polymorphism?

0 Answers  


Categories