Examlex
class Rectangle
{
int length, breadth;
void show(int x, int y)
{
length = x;
breadth = y;
}
int calculate()
{
return(length * breadth);
}
}
public class EnteredValues
{
public static void main(String[] args)
{
Rectangle rectangle = new Rectangle();
_____________________________
_____________________________
rectangle.show(a, b);
System.out.println("You entered: " + a + " and " + b);
int area = rectangle.calculate();
System.out.println("The area of the rectangle is: " + area);
}
}
In the above program, the area of a rectangle is calculated by using two classes named Rectangle and EnteredValues. In the first class, two methods are used: show(int x, int y) and calculate(). The show() method takes two variables as input, and the calculate() method calculates the area of a rectangle.
In the second class, the main() method is declared. Inside this method, an object of a Rectangle class is created. The user will input two values and store the values in the variables. The entered values will be changed into integers using the parseInt() method. The variables are then passed in the show()method, and the area will be calculated by the calculate() method.
On the lines provided, create the parseInt() method statements to reformat the two String values.
Prepaid Expense
An expense that has been paid in advance and is recorded as an asset until it is actually incurred.
Accrued Liabilities
Obligations that a company has incurred during a specified accounting period but has not yet paid out, often appearing as current liabilities on the balance sheet.
Depreciation
The systematic allocation of the cost of a tangible asset over its useful life, reflecting the decrease in value over time.
Indirect Method
A technique used in cash flow statement preparation that adjusts net income for changes in balance sheet accounts to calculate operating cash flow.
Q18: Describe the main features of postmodern social
Q22: When you create a new subclass in
Q23: public class EnumExample<br>{<br>enum Day {SUNDAY, MONDAY, TUESDAY,
Q24: Used to create polygons<br>A)fill pattern<br>B)GREEN<br>C)acyclic gradient<br>D)3D method<br>E)Line2D.Float
Q25: What are the three arguments the BasicStroke
Q35: In random access files, records can be
Q35: What are the parts of a class
Q37: Many developers believe that it is poor
Q50: Programs would be less clear if you
Q51: You override the existing empty _ method