My opinion on Manual Scavenging in India : This is not a project file or any programming code , the below code embeds my opinion on manual scavenging in India..... plzzz comment your opinion on manual scavenging in India after understanding the below code and watching the videos .....
class Parent_ManualScavenger throws DonotCleanMyHouse,Street,Toilet,RoadException{
public Home h[];
public Road r[];
public Street s[];
public static String cast; //entire class qualifies with its cast
public String name;
String myWork(Home h,Road r,Street s,Toilet t){ //this is our work
h.clean(); //clean every home
r.clean(); // cleans every road
s.clean(); // cleans every street
t.clean(); // cleans every toilet
return "every thing is cleaned and manual scavenging is my work";
}
String fightAgainstGoverment(Public p){
String status=p.letsFight(); //Fight Against Government
return status;
}
}
class Child_ManualScravenger extends Parent_ManualScavenger throws DonotCleanMyHouse,Street,Toilet,RoadException{
public static String cast; // we are too qualified with our cast
public String name;
String doyourwork(){
Home h=new Home;
Road r=new Road;
Toilet t=new Toilet;
Street s=new Street;
String workStatus=super.myWork(h,r,s,t); /* even i want to do mywork because that i am child of a manual scavenger i do my parents job only */
return workstatus;
}
String fightAgainstGoverment(Public p){
String status=p.letsFight(); //Fight Against Government
return status;
}
}
public class Public{
Public static void main(String argv[]){
/* This block is entirely for your hands
if u want to fight against manual scavenging wake up the government by protesting against government and public [fightAgainstGoverment()]
(or)
else if u dont want to do make the manualscavengers to wake up and fight [fightAgainstGoverment]
(or)
else wake them up to clean your streets by making instances of them and waking doyourwork() up as usual;
*/
}
No comments:
Post a Comment