0.08 is what percent of 0.8.. plz answer it correctly.. its urgent
Answers
Answer:
10%
Step-by-step explanation:
To get the solution, we are looking for, we need to point out what we know.
1. We assume, that the number 0.8 is 100% - because it's the output value of the task.
2. We assume, that x is the value we are looking for.
3. If 100% equals 0.8, so we can write it down as 100%=0.8.
4. We know, that x% equals 0.08 of the output value, so we can write it down as x%=0.08.
5. Now we have two simple equations:
1) 100%=0.8
2) x%=0.08
where left sides of both of them have the same units, and both right sides have the same units, so we can do something like that:
100%/x%=0.8/0.08
6. Now we just have to solve the simple equation, and we will get the solution we are looking for.
7. Solution for 0.08 is what percent of 0.8
100%/x%=0.8/0.08
(100/x)*x=(0.8/0.08)*x - we multiply both sides of the equation by x
100=10*x - we divide both sides of the equation by (10) to get x
100/10=x
10=x
x=10
now we have:
0.08 is 10% of 0.8
MARK THE ANSWER BRAINLIEST
Answer:
Java expression for the following:-
(a+b)²+b
\sf \: z=x³+y³+ \frac{xy}{3}z=x³+y³+
3
xy
Answer:-
There are two ways to write it as a Java Expression:-
\sf{(a+b)^2 + b}(a+b)
2
+b
Math.pow((a+b),2)+b
((a+b)*(a+b))+b
\sf{x^3 + y^3 + (\dfrac{xy}{3})}x
3
+y
3
+(
3
xy
)
z=(x*x*x)+(y*y*y)+((x*y)/3);
z=Math.pow(x,3)+Math.pow(y,3)+((x*y)/3);