Answered step by step
Verified Expert Solution
Question
1 Approved Answer
JAVA LANGUAGE PLEASE Computer Science - II Lab 3 1. Write the definition of a class Counter containing: a. An instance variable named counter of
JAVA LANGUAGE PLEASE
Computer Science - II Lab 3 1. Write the definition of a class Counter containing: a. An instance variable named counter of type int. b. An instance variable named limit of type int. C. A static int variable named Counters which is initialized to 0. d. A constructor taking two int parameters that assigns the first one to counter and the second one to limit. It also adds one to the static variable Counters. e. A method named increment. It does not take parameters or return a value; if the instance variable counter is less than limit, increment just adds one to the instance variable counter f. A method named decrement that also doesn't take parameters or return a value; if counter is greater than zero, it just subtracts one from the counter. g. A method named getValue that returns the value of the instance variable counter. h. A static method named getNCounters that returns the value of the static variable nCounters. Write a Test program to test the Counter class method. 2. Write an enum type Food, whose constants (APPLE, BANANA, CARROT) take two parameters the type (vegetable or fruit), and number of calories. Write a program to test the Food enum so that it displays the enum names and their information OUTPUT: APPLE Fruit 116 BANANA Fruit 89 CARROT Vegetable 41 Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started