C Sharp (C#) - Inheritance
Identify the error in the following code snippet:
class Parent {
protected int data = 100;
}
class Child {
void Show() {
Parent p = new Parent();
System.Console.WriteLine(p.data);
}
}Identify the error in the following code snippet:
class Parent {
protected int data = 100;
}
class Child {
void Show() {
Parent p = new Parent();
System.Console.WriteLine(p.data);
}
}15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions