If A7=21, which of the following =IF statements would produce the result of "Much Greater"?

A) =IF(A7<50,"Greater",IF(A7>20,"Much Greater","Not Greater than 20"))
B) =IF(A7<14,"Greater",IF(A7>20,"Much Greater","Not Greater than 20"))
C) =IF(A7<14,"Greater",IF(A7>20,"Much Greater","Not Greater than 20")
D) =IF(A7>14,"Greater",IF(A7>20,"Much Greater","Not Greater than 20"))


B

Computer Science & Information Technology

You might also like to view...

Select an activity of the Evaluation Phase

a. choose a web authoring tool b. verify that the HTML passes W3C validation c. determine if the goals for the website have been met d. none of the above

Computer Science & Information Technology

In a Calc sheet, rows are numbered sequentially

Indicate whether the statement is true or false

Computer Science & Information Technology

Consider the following class definition.public class Cylinder{    private double baseRadius;    private double height;    public Cylinder ()    {        baseRadius = 0;        height = 0;    }    public Cylinder (double l, double h)    {        baseRadius = l;        height = h;    }    public void set(double r, double h)    {        baseRadius = r;        height = h;    }    public String toString()    {        return (baseRadius + " " + height);    }    public double SurfaceArea()    {        return 2 * 3.14 * baseRadius * height;    }    public double volume()    {        return 3.14 * baseRadius * baseRadius * height;    }}Suppose that you have the following

declaration. Cylinder cyl = new Cylinder(1.5, 10);Which of the following sets of statements are valid in Java?(i)    cyl.surfaceArea();   cyl.volume();   cyl.print();(ii)       print(cyl.surfaceArea);   print(cyl.volume());   A. Only (i)      B. Only (ii) C. Both (i) and (ii)      D. None of these

Computer Science & Information Technology

Exploits that use malicious SQL statements to gain unauthorized access to a database are called SQL _____________.?

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology