Given below the sample code :
class Hotel {
public int bookings;
public void book() {
bookings++;
}
}
public class SuperHotel extends Hotel {
public void book() {
bookings--;
}
public void book(int size) {
book();
super.book();
bookings += size;
}
public static void main(String args[]) {
Hotel hotel = new Hotel();
hotel.book(2);
System.out.print(hotel.bookings);
}
}
What will be the output ?
A) 2
B) Compilation fails.
C) 0
D) 1
(B)
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.