<span>Mean = 270
Standard deviation = 10
x = 255
Formula for z-score, z = (x - mean)/SD
z = (255 - 270) / 10
=> z = -15 / 10 => z = -1.5
So by referring to z-table, -1.5 correlates to 0.0668 that implies to 0.07
So 7% of the boxes of Apples weight less than 255oz.
The percentage of boxes is in the range of 255 oz and 270 oz,
Now calculating the requiring percentage 50% - 7% = 43%</span>
Answer:
Its the first answer choice, basically just plug 3a +1 for a and solve
Answer:
nElements = 0;
for (int i = 0; i < a2d.length; i++)
nElements += a2d[i].length;
isRectangular = true;
for (int i = 1; i < a2d.length && isRectangular; i++)
if (a2d[i].length != a2d[0].length)
isRectangular = false;
Step-by-step explanation:
2 dimensional array is created and initialize element with 0. and the taking loop for 2 dimensional array .such as
n Elements = 0;
for (int i = 0; i < a2d.length; i++)
n Elements += a2d[i].length;
A boolean variable isRectangular and 2 dimensional array has been created if rectangle is true the take a2d.length and isRectangular less than i and intiliaze i with 1 then increment the i .It will give true value.
If rectangular is false then apply if statement and see if a2d[i] is not equal to a2d[0]
if (a2d[i].length != a2d[0].length)
isRectangular = false;
Answer:
what
Step-by-step explanation:
Answer:
A = 3.57 m²
Step-by-step explanation:
Given that,
The circumference of a circle is 7xm.
The expression for the circumference of a circle is given by :

r is the radius of the circle

The area of a circle is given by :

Out of given option,
A = 3.57 m²
So, the area of the circle is 3.57 m².