What is output? public class Vehicle { public void drive () { } } } public class Plane extends Vehicle { @Override publi

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899603
Joined: Mon Aug 02, 2021 8:13 am

What is output? public class Vehicle { public void drive () { } } } public class Plane extends Vehicle { @Override publi

Post by answerhappygod »

What Is Output Public Class Vehicle Public Void Drive Public Class Plane Extends Vehicle Override Publi 1
What Is Output Public Class Vehicle Public Void Drive Public Class Plane Extends Vehicle Override Publi 1 (28.06 KiB) Viewed 25 times
What is output? public class Vehicle { public void drive () { } } } public class Plane extends Vehicle { @Override public void drive () { System.out.println("Flying plane"); } System.out.println("Driving vehicle"); public static void main(String args[]) { Vehicle myVehicle = new Plane (); myVehicle.drive (); } A. Driving vehicle B. syntax error O C. Flying plane D. Driving vehicle
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply