answersLogoWhite

0


Best Answer

40/50 reduces to 4/5 which would be 80 percent thus making it a B

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Is 40 out of 50 an A or a B?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Algebra

What is greater 50 percent of 40 or 40 percent of 50?

To determine which is greater between 50% of 40 and 40% of 50, we can calculate the actual values. 50% of 40 is 0.50 x 40 = 20. 40% of 50 is 0.40 x 50 = 20. Therefore, both values are equal at 20.


Find the geometric mean of 32 and 50?

Geometric mean of 32 and 50 = sqrt(32*50) = sqrt(1600) = 40


What is the area of a rectangle with a perimeter of 40 m and a length of 8m?

Perimeter = 40So 2*(L + B) = 40 therefore L + B = 20Then L = 8 gives B = 12Therefore the Area is L*B = 8*12 = 96 m2Perimeter = 40So 2*(L + B) = 40 therefore L + B = 20Then L = 8 gives B = 12Therefore the Area is L*B = 8*12 = 96 m2Perimeter = 40So 2*(L + B) = 40 therefore L + B = 20Then L = 8 gives B = 12Therefore the Area is L*B = 8*12 = 96 m2Perimeter = 40So 2*(L + B) = 40 therefore L + B = 20Then L = 8 gives B = 12Therefore the Area is L*B = 8*12 = 96 m2


What is the least common multiple of 10 30 40 50?

The Least Common Multiple (LCM) for 10 30 40 50 is 600.


What is the new price if the original price is 50 with a markup of 40 percent?

The question is slightly ambiguous, so I'll list the two possibilities:If the original price is 50, and the new price is 50 + a 40% markup, then we can calculate as follows:New price = 50 + 40%= 50 x 1.4= 70If however you meant that the original price is 50 including a 40% markup (eg tax), and you want to calculate the new price with this markup removed, we calculate the answer as:New price +40% = 50New price x 1.4 = 50New price = 50 / 1.4= 34.84= 35 (approx)

Related questions

What is 50 percent off of 40?

50% off of 40= 50% discount applied to 40= 40 - (50% * 40)= 40 - (0.50 * 40)= 40 - 20= 20


What is the Geometric mean of 32 and 50?

Geometric Mean of A and B is the square root of A times B, in this case sqrt 1600 which is 40


How much of the total body weight of the average adult is muscle tissue?

The correct answer is C A) 20-30% B) 30-40% C) 40-50% D )50-60% E) 60-70%


Is an 85 percent on a test a B or a B?

B. There are 10 digits from 80-89. Since 85 is the 6th one for 80, it stands that is not in the bottom 50%. It is also not in the top 40%. Therefore, it could not be considered a B+ and since it is not in the bottom 50%, there is no way it could be a B-. The end result is that is is in the middle. "B" final answer..


50 percent of 40?

50% of 40 will be: 40 / 0.5 = 20


A man traveled from A to B at 40 miles per hour and then from B to A at 60 miles per hour what was his average speed during the entire journey?

the average speed is 50 because 60+ 40= 100 divided by 2 = 50 and remember add them up and divide by the number of numbers you have


What is forty percent of 50?

40% of 50 = 40% * 50 = 0.4 * 50 = 20


What is 80 percent of 50 pounds?

50% of £80 = £40 = 50% * £80 = 50%/100% * £80 = £40


What is 50 minus 40?

50 - 40 = 10


What does 40 percent of 50?

40% of 50 is 20


40 is 50 of what number?

40 is 50% of 80


How do you swap two variables using a third variable?

Let us take a=40,b=50.Now after swapping,we should get the output as a=50,b=40. main() { int a=40,b=50; a=a+b; b=a-b; a=a-b; printf("a=%d,b=%d",a,b); }