Question: Question 1 [ 5 marks ] : Write a Java class with a method that takes integer value as a parameter. If the remainder of

Question 1[5 marks]:
Write a Java class with a method that takes integer value as a parameter. If the remainder of the division of this number by 2 is different from zero, it throws an ArithmeticException otherwise it prints a message Even number. Write a main method to test your code.
Question 1[5 marks]:
Write two Java classes that implement differently an abstract method of an interface. This method calculates the distance between two points. The distance can be calculated as follows (x1, x2, y1, y2 are double variables):
1) Math.sqrt((y2- y1)*(y2- y1)+(x2- x1)*(x2- x1))
2) Point2D.distance(x1, y1, x2, y2)
Write a main method to test your code.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!