What Does The Following C Code Signifyp Pre Langcsharp Line1 #343
What does the following C# code signify?</p> <pre><code class="language-csharp" line="1"> class a { } class b : a { variable declaration; method declaration; } </code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs108 CSharp. It can also be found in gs gs108 Object Oriented Concepts - Fundamentals of Inheritance - Quiz No.1.
What does the following C# code signify?
class a { } class b : a { variable declaration; method declaration; }
Declaration of a base class
Declaration of a subclass
Declaration of base class & subclass and how subclass inherits the base class
None of the mentioned