KevantheKid4348 KevantheKid4348 25-02-2020 Computers and Technology contestada public class Parent { private int value = 100; public int getValue() { return value; } } public class Child extends Parent { private int value; public Child(int number) { value = number; } public int getValue() { return value; } }