Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

public class Airplane { What is the output?private int totalSeats; private int passengers; public Airplane ( ) { this.totalSeats = 2 5 0 ; this.passengers

public class Airplane {
What is the output?private int totalSeats;
private int passengers;
public Airplane(){
this.totalSeats =250;
this.passengers =0;
}
public void addPassengers(int passengers){
this.passengers = this.passengers + passengers;
}
public int getAvailableSeats(){
return this.totalSeats - this.passengers;
}
}public class Airplane {
private int totalSeats;
private int passengers;
public Airplane(){
this.totalSeats =250;
this.passengers =0;
}
public void addPassengers(int passengers){
this.passengers = this.passengers + passengers;
}
public int getAvailableSeats(){
return this.totalSeats - this.passengers;
}
}public class Airplane {
private int totalSeats;
private int passengers;
public Airplane(){
this.totalSeats =250;
this.passengers =0;
}
public void addPassengers(int passengers){
this.passengers = this.passengers + passengers;
}
public int getAvailableSeats(){
return this.totalSeats - this.passengers;
}
}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

Explain the Content and Features of a Good Financial Report.

Answered: 1 week ago