import ann.easyio.*; public class Quadratic { //Quiz: Write realRoots method here. public static boolean realRoots(double a, double b, double c) { if(Math.pow(b,2) - 4*a*c) < 0) return false; return true; } //Driver }