Start learning 50% faster. Sign in now
Area of equilateral triangle = (√3/4) X side2 Let the side of the given triangle be 'a' cm. ATQ; 432√3 = (√3/4) X a2 Or, 432 X 4 = a2 So, 'a' = ± 24√3 Since, side cannot be negative, a = +24√3 Height of equilateral triangle = (√3/2) X side So, height of the given triangle = (√3/2) X 24√3 = 36 cm So, length of each side of the square = 36 cm So, perimeter of the square = 36 X 4 = 144 cm And perimeter of the triangle = 24√3 X 3 = 72√3 cm So, required difference = 144 - 72√3 = 72(2 - √3) cm
In healthcare, how can trend analysis most effectively enhance patient care?
An employee in a financial organization receives an email claiming to be from the company CEO, asking them to urgently transfer funds to a specific acco...
Which OOP concept ensures that the internal details of an object are hidden from the outside world, providing a clear interface for interaction?
In hypothesis testing, what does a p-value less than 0.05 typically indicate?
What is the most challenging step in the data analysis process and why?
In a min-heap, what is the complexity of removing the smallest element and restoring the heap property?
What factor primarily determines the minimum sample size needed for a survey ?
Why is sampling an essential method in data analysis, especially when dealing with large datasets?
Which of the following best describes independent variables in a dataset?
Consider the following Python code snippet:
class Employee:
def __init__(self, name, age):
self.name = name
<...