27. Replace b with 7, making 6 + 3(7). The 3 and parentheses of 7 hint multiplication, so you multiply to make 21, then add 6 relating back to PEMDAS to teach you the correct order to solve the problem.
First of all, a bit of theory: since the area of a square is given by

where s is the length of the square. So, if we invert this function we have
.
Moreover, the diagonal of a square cuts the square in two isosceles right triangles, whose legs are the sides, so the diagonal is the hypothenuse and it can be found by

So, the diagonal is the side length, multiplied by the square root of 2.
With that being said, your function could be something like this:
double diagonalFromArea(double area) {
double side = Math.sqrt(area);
double diagonal = side * Math.sqrt(2);
return diagonal;
}
Answer:
A is the answer.
Step-by-step explanation:
A fraction plus a fraction is equal to a fraction. An irrational number cannot be expressed as a fraction.
0.3333333 even though it looks like an irrational number it is actually: 1/3
3/5 is already a fraction so adding it with another fraction will NOT equal an irrational number (decimal)
-0.75 is equal to -3/4 (75/100 => 3/4). Same thing that applies above.
However, Pi cannot be expressed as a fraction exactly. You can round up like 3.14. However it is not the full number. So 3.141592654....+(3/4) is not going to add up perfectly into a fraction.
In short, a fraction is a rational number. Rational + Rational = Rational. Irrational + Rational = Irrational.