![\begin{gathered} \sqrt[]{6}\times\sqrt[]{10} \\ \sqrt[]{60} \\ \sqrt[]{4\times15} \\ \sqrt[]{4}\times\sqrt[]{15} \\ 2\sqrt[]{15} \end{gathered}](https://tex.z-dn.net/?f=%5Cbegin%7Bgathered%7D%20%5Csqrt%5B%5D%7B6%7D%5Ctimes%5Csqrt%5B%5D%7B10%7D%20%5C%5C%20%5Csqrt%5B%5D%7B60%7D%20%5C%5C%20%5Csqrt%5B%5D%7B4%5Ctimes15%7D%20%5C%5C%20%5Csqrt%5B%5D%7B4%7D%5Ctimes%5Csqrt%5B%5D%7B15%7D%20%5C%5C%202%5Csqrt%5B%5D%7B15%7D%20%5Cend%7Bgathered%7D)
Hence, the correct options are Option A and Option C
Answer:
B
Step-by-step explanation:
It is transitive property of equality
and it states that if we consider a b and c
anf if a=b and b=c
then a=c
Answer:
The answe is D
Step-by-step explanation:
The relation is not a function.
8 because 24 candles going into 3 boxes is 24 divided by 3 which is 8
<span>Declaring the volume function
double PyramidVolume(double baseLength, double baseWidth, double pyramidHeight){
double baseArea = baseLength * baseWidth;
double vol = ((baseArea * pyramidHeight) * 1/3);
return vol;
}
int main() {
cout << "Volume for 1.0, 1.0, 1.0 is: " << PyramidVolume(1.0, 1.0, 1.0) << endl;
return 0;
}
Defining the function,
include <iostream>
double PyramidVolume(double, double, double);
int main()
{
std::cout << "Volume for 1.0, 1.0, 1.0 is: " << PyramidVolume(1.0, 1.0, 1.0) << std::endl;
return 0;
}
double PyramidVolume(double length, double width, double height)
{
return length * width * height / 3;
}</span>