The amount of blue color in the green paint is an illustration of ratios and proportions.
Cheryl's green paint has more blue color
The proportion of blue color is calculated as:

So, we have:



Express as percentage




Express as percentage

By comparison: 40% >37.5%
Hence, Cheryl's green paint has more blue color
Read more about proportions at:
brainly.com/question/21126582
<h3>Problem Solution</h3>
Assuming the spool is a cylinder and the circumference we're winding around is that of a circle with the given area, we can write the relation between circumference and area as
... C = 2√(πA)
10 times the circumference is then
... 10C = 20√(π·20 cm²) = 40√(5π) cm ≈ 159 cm
<h3>Formula Derivation</h3>
The usual formulas for circumference and area are
... C = 2πr
... A = πr²
If we multiply the area formula by π and take the square root, we get
... πA = (πr)²
... √(πA) = πr
Multiplying this by 2 gives circumference.
... C = 2√(πA) = 2πr
Setup
remember is means =, and of means *
Writing across the words
15 = x * 39
15/39 = x
x =0.3846 = 38.46%
8 cm and 9 cm is the correct answer
Answer:
// C++ Program to arithmetic operationf on 2 Numbers using Recursion
// Comments are used for explanatory purpose
#include <bits/stdc++.h>
using namespace std;
// add10 recursive function to perform arithmetic operations
int add10(int m, int n)
{
return (m + product(n, 10)); //Result of m + n * 10
return 0;
}
// Main Methods Starts here
int main()
{
int m, n; // 2 Variables m and n declared as integer
cin>>m; // accept input for m
cin>>n; // accept input for n
cout << "Result : "<<add10(m,n); // Print results which is calculated by m + 10 * n
return 0;
}