Please go up to the white board and write an example of a java class with some methods and variables.
Sigiloso
It should be some attributes and methods (we call that attributes in Java precisely) Use a UML diagram: Class: Animal Attributes: private int weight (in kilograms) private int height (in centimeters) Methods: int getWeight() int getHeight() double getBMI() // BMI calculates whether the animal is too fat or too thin .....