Bird
Bird
Birds() {
String getFeatherColor() {
return FeatherColor;
}
void AnimalDetails() {
System.out.println("<<< THE DOG DETAILS >>>");
System.out.println(Name + " is a Bird having " + eyeColor + " eyes. Its
height is " + height
+ " inches, and a length of " +
lenght + " inches. It weight " + weight + " grams, with " +
noofLegs + " legs and " + FeatherColor
+ " fur color ");
System.out.println();
}
void makeSound() {
System.out.println("The bird is chirping Tweet. Tweet. Tweet");
}
void eatFood() {
System.out.println("The bird eats seeds or ripe fruits");
}
void Drink() {
System.out.println("The bird needs to drink at most 1 liter of water a
day");
}
}