What is 10 percent of 20?
Below is the mathematical calculations to find the x percetage of y.
10% *20
=(10/100) *20
=(10*20)/100
=(10*20)/100
=200/100
=2
10 percent of 20 is 2.00
Below is the mathematical calculations to find the x percetage of y.
10% *20
=(10/100) *20
=(10*20)/100
=(10*20)/100
=200/100
=2
Here are some additional steps to further clarify the calculation
So the full formula is:
x% of y = (x/100) * y where x is the percentage you want to calculate and y is the value you want to find the percentage of.
1
2
3
4
x = 10 # Replace x with the desired percentage value
y = 20# Replace y with the desired total value
result = (x/100) * y
print(result)