0% found this document useful (0 votes)
3 views1 page

Questions Java

The document outlines the design of a class named QuadraticEquation that represents a quadratic equation of the form ax^2 + bx + c = 0. It includes private data fields for coefficients a, b, and c, a constructor, methods to retrieve these coefficients, and methods to calculate the discriminant and the roots of the equation. A test program is also described to prompt user input for coefficients and display the results based on the discriminant value.

Uploaded by

ommprasadjena10
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views1 page

Questions Java

The document outlines the design of a class named QuadraticEquation that represents a quadratic equation of the form ax^2 + bx + c = 0. It includes private data fields for coefficients a, b, and c, a constructor, methods to retrieve these coefficients, and methods to calculate the discriminant and the roots of the equation. A test program is also described to prompt user input for coefficients and display the results based on the discriminant value.

Uploaded by

ommprasadjena10
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

2

Design a class named QuadraticEquation for a quadratic equation a x +b x +c=0 The class contains:
Private data fields a, b, and c that represent three coefficients.
A constructor for the arguments for a, b, and c.
Three get methods for a, b, and c.
A method named getDiscriminant() that returns the discriminant, which is
b2−4 a c
The methods named getRoot1() and getRoot2() for returning two roots of
the equation
−b+ √ b2−4 ac −b− √ b2−4 ac
r 1= , r 2=
2a 2a
These methods are useful only if the discriminant is nonnegative. Let these methods return 0 if the discriminant is
negative.
Write a 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.”

You might also like