The answer is 8! Hope that helps! Please give brainliest hehe
Answer:
36 meters^3
Step-by-step explanation:
Formula: Bh
B=Base area
h=height
to find the base area, multiply 2 and 6
2x6 = 12
B=12
and the height is given, so just insert your numbers into the formula
12x3=36
Answer:
55
Step-by-step explanation:
here's the working out i did
Answer:
C)
Step-by-step explanation:
Every is 6 times bigger than
Assuming we need to find i such that
1 ≤ i ≤ n and t[i]=i.
If we need to find only the first occurrence, we can do:
for i:1 to n {
if t[i]=i then return(i)
}
If exhaustive search is required, then put the results (values of i) in an array or a linked list, return the number of values found, and the array (or linked list).