Skip to main content

FEATURED POST

Why the World is Running Out of Computers

Create a base class called “Vehicle” that stores number of wheels and speed.

 Create a base class called “Vehicle” that stores number of wheels and speed. Create the following derived classes:
Ø “Car” that inherits “Vehicle” and also stores number of passengers.
Ø “Truck” that inherits “Vehicle” and also stores the load limit.
Write a main() function to create objects of these classes and display all the information about Car and Truck. Also, compare the speed of the two vehicles, Car and Truck and display “faster” or “slower” if Car is faster or slower than Truck.


import java.util.*;

class Vehicle{

 int wheels;

 double speed;

}

class Car extends Vehicle{

 int pass;

 void input(){

   Scanner sc=new Scanner(System.in);

System.out.println("Enter the car's details:\nNo. of wheels:");

   wheels=sc.nextInt();

System.out.println("Speed of Car(Km/hr):");

   speed=sc.nextDouble();

System.out.println("No. of passengers:");

   pass=sc.nextInt();

}

void display(){

System.out.println("No. of wheels:"+wheels+"\nSpeed:"+speed+"km/hr\nNo. of passengers:"+pass);

    }

}

class Truck extends Vehicle{

 double limit;

 void input()  {

    Scanner sc=new Scanner(System.in);

System.out.println("Enter the Truck's details:\nNo. of wheels:");

    wheels=sc.nextInt();

System.out.println("Speed of Truck(Km/hr):");

    speed=sc.nextDouble();

System.out.println("Load limit:");

    limit=sc.nextDouble();

}

 void display()  {

System.out.println("No. of wheels:"+wheels+"\nSpeed:"+speed+"km/hr\nLoad limit:"+limit);}

    }

class test{

public static void main(String ts7[]){

Car ob1= new Car();

Truck ob2=new Truck();

ob1.input();

ob2.input();

if(ob1.speed>ob2.speed)

System.out.println("Car is faster");

else

System.out.println("Truck is faster");

ob1.display();

ob2.display();

    }

}


Keyword:
How to recover the classnotfoundexception in Java?
What are the top most requirements or expectations of client for develop Java web application?
Java program question paper in 2020
java applet
applet programming in java
creating applet in java

Comments

Popular Posts

Question: Create a base class called “Vehicle” that stores number of wheels and speed. Create the following derived classes

Question: Create a base class called “Vehicle” that stores number of wheels and speed. Create the following derived classes:  Ø “Car” that inherits “Vehicle” and also stores number of passengers.  Ø “Truck” that inherits “Vehicle” and also stores the load limit.  Write a main() function to create objects of these classes and display all the information about Car and Truck. Also, compare the speed of the two vehicles, Car and Truck and display “faster” or “slower” if Car is faster or slower than Truck. import java.util.*; class Vehicle{   int wheels;   double speed; } class Car extends Vehicle{   int pass;   void input(){    Scanner sc=new Scanner(System.in); System.out.println("Enter the car's details:\nNo. of wheels:");    wheels=sc.nextInt(); System.out.println("Speed of Car(Km/hr):");    speed=sc.nextDouble(); System.out.println("No. of passengers:");   ...

Question: Write a java program that implements bank transactions using user defined exception.

Question: Write a java program that implements bank transactions using user defined exception. import java.util.*; class UDE{     public static void main(String ts7[]) throws MinimumBal {         Scanner sc= new Scanner(System.in);         double bal; System.out.println("Enter current balance:"); bal=sc.nextDouble(); System.out.println("Enter amount to withdrawal");         int n = sc.nextInt();         try {             if (bal<n)                   throw new MinimumBal("Account ae taka nei bhai !\nYour Current balance is "+bal);             else      System.out.print...

How to view hidden files in computer?

It is very easy to see hidden files or folders in a Windows computer. In this answer, I will show you how to hidden files as well as how to hide a file or folder. So let's understand step-by-step How to hide a file or folder: Step 1 : Select any file (or folder) you want to hide by clicking once on the icon of that folder.                                                                     Safe Online - सेफ ऑनलाइन Step 2: Now right-click it on the folder and click on 'Properties' at the bottom of the menu which is open. To open the properties of a folder, you can also select the folder and use the shortcut Alt + Enter.                                                 ...