-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQ5.java
More file actions
49 lines (37 loc) · 930 Bytes
/
Q5.java
File metadata and controls
49 lines (37 loc) · 930 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package CodingChalange;
abstract class Vehicle{
final void StartEngine()
{
System.out.println("Engine Started...");
}
static String getVehicleType()
{
return"Generic Vehicle";
}
abstract void drive();
}
class car extends Vehicle{
@Override
void drive(){
System.out.println("Drive a Car");
}
}
class bike extends Vehicle{
@Override
void drive(){
System.out.println("Drive a Bike");
}
}
public class Q5 {
public static void main(String[] args) {
car c1 = new car();
c1.drive();
System.out.println(Vehicle.getVehicleType());
c1.StartEngine();
System.out.println("---------------------------");
bike b1 = new bike();
b1.drive();
b1.StartEngine();
System.out.println(Vehicle.getVehicleType());
}
}