-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPractice11_Interface.java
More file actions
220 lines (174 loc) · 3.76 KB
/
Practice11_Interface.java
File metadata and controls
220 lines (174 loc) · 3.76 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
package com.company;
//1. & 2.
abstract class pen {
abstract void refill();
abstract void write();
}
class pen1 extends pen {
@Override
void refill() {
System.out.println("Refilling the pen");
}
@Override
void write() {
System.out.println("Writing....");
}
void changeNib(){
System.out.println("Changing the Nib...");
}
}
//3.
class Monkey {
void jump(){
System.out.println("Monkey is jumping...");
}
void bite(){
System.out.println("Minkey is biting...");
}
}
interface BasicAnimal{
void eat();
void sleep();
}
class Human extends Monkey implements BasicAnimal{
void speak(){
System.out.println("Hello....");
}
void watchTV(){
System.out.println("Watching TV.");
}
@Override
public void eat() {
System.out.println("Eating...");
}
@Override
public void sleep() {
System.out.println("Sleeping....");
}
}
//4.
abstract class Phone {
abstract void pickPhone();
abstract void ringPhone();
abstract void endCall();
}
interface GPS{
void tracking();
void location();
}
interface camera{
void clickPic();
void recordVideo();
}
interface playGame{
void game();
void pubg();
}
class SmartPhone extends Phone implements GPS,camera,playGame{
@Override
void pickPhone() {
System.out.println("Picking Phone...");
}
@Override
void ringPhone() {
System.out.println("Phone is ringing...");
}
@Override
void endCall() {
System.out.println("Disconnected");
}
@Override
public void tracking() {
System.out.println("Tracking Phone..");
}
@Override
public void location() {
System.out.println("Finding Location...");
}
@Override
public void clickPic() {
System.out.println("Clicking picture.");
}
@Override
public void recordVideo() {
System.out.println("Recording Video.");
}
@Override
public void game() {
System.out.println("Playing Game...");
}
@Override
public void pubg() {
System.out.println("Playing PUBG");
}
}
//6.
interface remote {
void upChannel();
void downChannel();
void upVolume();
void downVolume();
}
interface smartRemote extends remote {
void changeScreen();
}
//7.
class TVRemote implements smartRemote {
@Override
public void upChannel() {
System.out.println("Channel Changed..");
}
@Override
public void downChannel() {
System.out.println("Channel Changed..");
}
@Override
public void upVolume() {
System.out.println("Volume up...");
}
@Override
public void downVolume() {
System.out.println("Volume down");
}
@Override
public void changeScreen() {
System.out.println("Screen Changed...");
}
}
public class Practice11_Interface {
public static void main(String[] args) {
// 1. & 2.
pen1 p = new pen1();
p.refill();
p.write();
p.changeNib();
// 3.
Human Abhay = new Human();
Abhay.eat();
Abhay.sleep();
Abhay.watchTV();
Abhay.speak();
Abhay.bite();
Abhay.jump();
// 4.
SmartPhone mi = new SmartPhone();
mi.clickPic();
mi.endCall();
mi.game();
mi.location();
mi.pickPhone();
mi.recordVideo();
mi.ringPhone();
// 5.
Monkey Ashu = new Human();
Ashu.bite();
Ashu.jump();
// 6. & 7.
TVRemote remote = new TVRemote();
remote.changeScreen();
remote.downChannel();
remote.upChannel();
remote.upVolume();
remote.downVolume();
}
}