vimal


{ City }
< Country > india
* Profession *
User No # 2761
Total Questions Posted # 0
Total Answers Posted # 3

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 348
Users Marked my Answers as Wrong # 51
Questions / { vimal }
Questions Answers Category Views Company eMail




Answers / { vimal }

Question { TCS, 36168 }

What is the DIfference between Friend and Protected Friend?


Answer

friend------access is limited to the current assembly
(application)
protected friend----access is limited to the current
assembly and types derived from the containing class..

Is This Answer Correct ?    18 Yes 7 No

Question { 7580 }

What is an abstract class?


Answer

its a class which can not be instantiated...the class must
be inherited and the methods can be overridden.

Is This Answer Correct ?    6 Yes 0 No


Question { TCS, 89444 }

What is the Difference between Overriding and overloading?


Answer

overloading-------having same method name with different
signatures.
overriding--------methods name and signatures must be same.

Is This Answer Correct ?    324 Yes 44 No