A) AbstractB) OverrideC) MustoverrideD) Implements
Latest Answer : C) MustOverride ...
A) ImplementsB) UsesC) ImportsD) Overrides
Latest Answer : class implements ...
What is the out put NotInheritable Class A Public sub printA End sub Public sub PrintB End subEnd ClassClass B Inherits A End Class
A) Both PrintA & PrintB are available at Class BB) Only PrintA is available at Class BC) Class B Can not inherit classA as it is not inheritable
Whats the output of following codeClass A Public Overridable Sub F() End SubEnd ClassClass B Inherits A Public Overridable Sub F() End SubEnd Class
A) Runtime ErrorB) Compiler ErrorC) Compiler Throws a warning message
A) DisposeB) CloseC) FinalizeD) Nothing
Latest Answer : C ...
A) With the help of Inherits keywordB) With the help of Using KeywordC) With the help of Implements Keyword
Latest Answer : : A) With the help of Inherits keyword ...
A) Using Inherits KeywordB) Using Implements KeywordC) Private interfaces can not be implementedExplanation: Interfaces must always be declared as public so that they can be implemented or inherited
Latest Answer : Interface should be in public so private is wrong ...
To implement an interface it is not necessary to implement all the methods and properties defined by the interface.
A) TrueB) FalseExplanation: Any class, which implements an interface, must implement all the members of that interface
A) With the help of Using KeywordB) With the help of Imports keywordC) With the help of Inherits keyword
Latest Answer : B) With the help of Imports keyword ...
What is the difference between Implements and Inherits keyword?