Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

java Question 4 Design a class named QuadraticEquation for a quadratic equation ax2 + bx + x = 0. The class contains: Private data fields

java

image text in transcribed

Question 4 Design a class named QuadraticEquation for a quadratic equation ax2 + bx + x = 0. The class contains: Private data fields a, b, and that represent three coefficients. A constructor for the arguments for a, b, and c. - Three getter methods for a, b, and c. A method named getDiscriminant() that returns the discriminant, which is b2 - 4ac. . The methods named getRoot1() and getRoot2() for returning two roots of the equation 4ac 4ac -b + V 2a and 12 -b-V6 2a These methods are useful only if the discriminant is nonnegative. Let these methods return 0 if the discriminant is negative. a) Draw the UML diagram for the class b) Implement QuadraticEquation class. c) Write test program that prompts the user to enter values for a, b, and c and displays the result based on the discriminant. If the discriminant is positive, display the two roots. If the discriminant is 0, display the one root. Otherwise, display The equation has no roots

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Design And Implementation

Authors: Shouhong Wang, Hai Wang

1st Edition

1612330150, 978-1612330150

More Books

Students also viewed these Databases questions

Question

2. What additional techniques might be used to assess talent?

Answered: 1 week ago