arunkumar


{ City } hyderabad
< Country > india
* Profession * trainee programeer
User No # 79457
Total Questions Posted # 0
Total Answers Posted # 2

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

Users Marked my Answers as Correct # 12
Users Marked my Answers as Wrong # 1
Questions / { arunkumar }
Questions Answers Category Views Company eMail




Answers / { arunkumar }

Question { 4749 }

What is difference between Abstract Class and Interface?


Answer

Abstract class is a class in which it will contain both the
abstract and non-abstract methods.The abstract class must
be inheritable by another class. In vb.net it will be
defined using mustinheritable keyword.
The syntax is :
Public MustInheritable Class classname

Interface is a class in which it will contain only the
abstract methods. The interface can be implemented or not
by the another class.The functions in interface will be
implemented by the another class which implements the
interface.
The syntax is :
Public Interface interfacename

Is This Answer Correct ?    1 Yes 0 No

Question { GHK, 14449 }

What is difference between a panel and GroupBox ?


Answer

The working of panel and groupbox is same but the
difference is
1) In panel we can have the scroll bar but in groupbox we
will not have scroll bar
2) For panel we cannot provide the name or heading and for
the groupbox we can provide the name or heading

Is This Answer Correct ?    11 Yes 1 No