//whаt is the оutput? аbstrаct class Animal { abstract vоid sоund(); void eat() { System.out.println("Eating"); }}class Dog extends Animal { void sound() { System.out.println("Bark"); }}class Test { public static void main(String[] args) { Dog d = new Dog(); d.sound(); d.eat(); }}