Question
The area of an isosceles triangle ABC is 8√5 cm
2 . If AB = BC and AC = 8 cm, then find the perimeter of triangle ABC.Solution
Let AB = BC = 'x' cm
Area of isosceles triangle = {(c/4) X √(4a 2  - c 2 )} [Where 'a' is the length of two equal sides and 'c' is the length of third (unequal) side]
8√5 = (8/4) X {√(4 X x 2  - 8 2 )}
Or, (4√5) = √(4x 2  - 64)
Squaring both sides.
(16 X 5) = 4x 2 Â - 64
Or, 144 = 4x 2
Or, x 2 Â = 36
So, x = 6 cm (Since, length cannot be negative therefore, we will take the positive root only)
So, required perimeter = 6 + 6 + 8 = 20 cm
Which page replacement algorithm minimizes the number of page faults theoretically but is difficult to implement in practice?
Which data structure is ideal for priority-based scheduling?
In a compiler's code flow, which operation is primarily used to manage function call contexts (local variables, return addresses) during program execution?
- Natural Language Processing (NLP)
In the context of sentiment analysis, which of the following NLP techniques provides the most accurate classification ...
What is the primary disadvantage of using a singly linked list compared to an array for random access (e.g., accessing the 50th element)?
Which of the following is a good practice when debugging?
What is the base case in a recursive function?
Which of the following is an example of an emerging technology that is most likely to impact the future of computing?
Which SOLID principle emphasizes that a class should have only one reason to change?
Which of the following represents the Preorder Traversal of the binary tree given below?
       A       / \      B   C   ...