Question
In a triangle ABC, the lengths of the medians from A, B,
and C are 5 cm, 6 cm, and 7 cm, respectively. What is the area of the triangle?Solution
The area of a triangle can be calculated using the formula involving medians: Area = (4/3) × √[s(s - m₁)(s - m₂)(s - m₃)], where m₁, m₂, m₃ are the medians, and s = (m₁ + m₂ + m₃) / 2 = (5 + 6 + 7) / 2 = 9 cm. Substituting into the formula, Area = (4/3) × √[9(9 - 5)(9 - 6)(9 - 7)] = (4/3) × √[9 × 4 × 3 × 2] = (4/3) × √216 = (4/3) × 14.7 = 19.6 cm² Correct answer: b) 19.6 cm²
Bus topology is also known by which one of the alternative names below?
Which of the following is NOT a type of firewall?
What is the primary advantage of using an Object-Oriented Programming approach?
What is "serverless computing"?
Which protocol is commonly used for secure data transfer in cloud computing?
In C++, what mechanism is primarily used to achieve runtime polymorphism?
If receiver noise floor is 2 dB, signal-to-noise ratio is 3 dB then what is the receiver sensitivity?
Consider the following Java code snippet:
import java.util.ArrayList;
import java.util.Arrays;
import java.util.L...
Which data structure is most commonly used to efficiently implement a priority queue?
In pandas, what does df.groupby('A').agg({'B': 'sum', 'C': 'mean'}) return?