gs gs108 Object Oriented Concepts - Interfaces Implementation - Quiz No.1
gs gs108 CSharp Quiz
This quiz belongs to book/course code gs gs108 CSharp of gs organization. We have 110 quizzes available related to the book/course CSharp. This quiz has a total of 10 multiple choice questions (MCQs) to prepare and belongs to topic Object Oriented Concepts. NVAEducation wants its users to help them learn in an easy way. For that purpose, you are free to prepare online MCQs and quizzes.
NVAEducation also facilitates users to contribute in online competitions with other students to make a challenging situation to learn in a creative way. You can create one to one, and group competition on an topic of a book/course code. Also on NVAEducation you can get certifications by passing the online quiz test.
interface a1 { void f1(); int f2(); } class a :a1 { void f1() { } int a1.f2() { } }
interface a1 { void f1(); void f2(); } class a :a1 { private int i; void a1.f1() { } }
interface abc { String FirstName { get; set; } String LastName { get; set; } void print(); void stock(); int fun(); }
interface abc { string name { get; set; } }
class emp :employee { private string str; public string firstname; { get { return str; } set { str = value; } } }
class emp :implements person { private string str; public string firstname { get { return str; } set { str = value; } } }
class emp: implements person { private string str; public string person.firstname { get { return str; } set { str = value; } } }
interface i1 { void m1(); } interface i2 { void m1(); } interface i3 :i1, i2 { } class c3 :i3 { void i1.m1() { } void i1.m1() { } }
interface i1 { void m1(); } interface i2 { void m1(); } interface i3 :i1, i2 { } class c3 :i3 { void i1.i2.m1() { } }
interface i1 { void m1(); } interface i2 { void m1(); } interface i3 :i1, i2 { } class c3 :i3 { void i1.m1() { } void i2.m1() { } }