answersLogoWhite

0

220 S on a C B?

Updated: 10/22/2022
User Avatar

Wiki User

14y ago

Best Answer

I suspect it is:

220 squares on a Chess board, counting the 2*2, 3*3.... squares as well, though the answer should be 204, and I guess the question setter added the 16 5*5 squares twice!

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: 220 S on a C B?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Is 220 prime?

no, b/c the 0 at the end means it is a product of 10


What is the area formula for an triangle?

It is sqrt{s*(s-a)*(s-b)*(s-c)} where the lengths of the three sides are a, b and c units and s = (a+b+c)/2.


What is the area of a triangle when given are the length and the sides?

Suppose the sides are a, b and c units. Calculate s= (a+b+c)/2 Then Area = sqrt[s*(s-a)*(s-b)*(s-c)] square units


What is the area of oblique triangles?

Use the Hero's formula: Let s = (a + b + c)/2. Then the area of the triangle equals√[s(s - a)(s - b)(s - c)], where a, b, and c denote the sides of the triangle.


How do you find the area of an oblique triangle which 3 sides are given?

Let the sides be a, b, c Area = sq rt [s(s-a)(s-b)(s-c)] where s= 1/2 (a+b+c)


What is the area of a triangle 17m by 17m by 30m?

120 sq metres. To see how you get this answer, read on: If the sides are a, b and c, then calculate s = 0.5*(a+b+c) Then the area is sqrt[s*(s-a)*(s-b)*(s-c)]


What is the formula for the surface area and volume of a triangular prism?

The answer depends on the information that you do have. Suppose you know all the edge lengths: the three sides of the triangle are a, b and c and the length of the prism is d. Let s = (a + b + c)/2 Then the area of the triangular cross section is sqrt[s*(s-a)*(s-b)*(s-c)] square units. So, surface area = 2*sqrt[s*(s-a)*(s-b)*(s-c)] + d*(a+b+c) square units. Volume = sqrt[s*(s-a)*(s-b)*(s-c)]*d cubic units.


What is area of triangle circle polygon?

The information depends on what information is available. For example, for a triangle in which all three sides are known (a, b and c) then calculate s = (a+b+c)/2 And the area = sqrt[s*(s-a)*(s-b)*(s-c)] If a, b and the angle between then, C, is known then area = 0.5*a*b*sin(C). There are other formulae for other circumstances.


What is heron's formula?

If A is the area of a triangle with side length a, b and c and s is (a+b+c)/2 ( known as the semiperimeter of the triangle) Then, Heron's formula tells us that A=square root of [s(s-a)(s-b)(s-c)].


What is the formula for the area of base in a triangular prism?

One possible form is sqrt{s*(s-a)*(s-b)*(s-c)} square units where the lengths of the three sides of the triangle are a, b and c units and s = (a+b+c)/2.


What is the formula for area of base of a triangular prism?

One possible form is sqrt{s*(s-a)*(s-b)*(s-c)} square units where the lengths of the three sides of the triangle are a, b and c units and s = (a+b+c)/2.


How do you find area of a triangle given its 3 sides in c program?

#include<stdio.h> #include<math.h> main() { float A,a,b,c,s; printf("entr the value of a,b and c"); scanf("%f %f %f",&a,&b,&c); A=sqrt(s*s-a*s-b*s-c) printf("area of the triangle %f\n"A); getch(); }