Answer:
Distribute
Step-by-step explanation:
You will need to distribute 6*3 and 6*7.
This is high school this is for my sister since she is in apex um lets see. actually can't see. sorry
Answer:
int t(int n){
if(n == 1)
return 1;
else
return n*n*t(n-1);
}
Step-by-step explanation:
A recursive function is a function that calls itself.
I am going to give you an example of this algorithm in the C language of programming.
int t(int n){
if(n == 1)
return 1;
else
return n*n*t(n-1);
}
The function is named t. In the else clause, the function calls itself, so it is recursive.
Answer:
can't understand the picture is blury
Answer:
Area = 23.38 square"
Step-by-step explanation:
It is given that a regular hexagon is having a side = 3"
Since hexagon is inscribed in a circle therefore all the triangles formed by the radii and the sides of hexagon will be equilateral triangles.
In a hexagon number of triangles formed = 6
Area of an equilateral triangle = 1/4s²√3
By putting the value of s = 3"
Area of one triangle = 1/4×3²√3 = (9√3)/4
and we know number of triangles formed inside the hexagon = 6
Therefore area of hexagon = 6×(9√3)/4 = 23.38 square"
Answer is 23.38 square"