Which command(s) is/are the correct to solve the following code segment? Choose THREE answers. } System.out.print ("Computer can apply to run and show application."); } public class Computer extends Ability implements Moveable ( public void run () { System.out.print("Run application. "); public static void main(String[] args) { Computer laptop = new Computer (); laptop.run(); laptop.show(); Output is Run application. Computer can apply to run and show application O interface Moveable Oclass Ability O Method overriding { public void run(); public void show() [