Question
Area of a rectangle is equal to the total surface area
of a hemisphere having volume 5488 cm³ . Find the perimeter of the rectangle if its length is 125% more than its breath. (Take π = 3)Solution
Let, the radius of the hemisphere be ‘r’ cm. So according to question: 2/3 × 3 × r3 = 5488 r3 = 2744 r = 14 So, the total surface area of the hemisphere = 3 × π × 14² = 3 × 3 × 14² = 1764 cm² Let the breadth of the rectangle be ‘x’ cm So the length of the rectangle = 2.25x cm According to question: x × 2.25x = 1764 x² = 784 x = 28 So the breadth of the rectangle = 28 cm Length of the rectangle = 28 × 2.25 = 63 cm So the perimeter of the rectangle = 2 × (63 + 28) = 182 cm
In which of the following scenarios would the Floyd-Warshall algorithm be most suitable?
Which of the following is an example of unsupervised learning in AI?
A system uses a 32-bit logical address space and a page size of 4KB. If each page table entry (PTE) is 4 bytes, how many entries can a single-level page...
When choosing an algorithm for a specific task, what is the most important factor to consider first?
Bourne-style shells uses which below symbol
A recursive backtracking solution for the Subset Sum problem is generating duplicate subsets or missing valid subsets. Assuming the input array might co...
Backdoor is a secret undocumented entry point into a program used to grant access without normal methods of access authentication. A trap is a software ...
Consider a function foo(n) that calls foo(n-1) and foo(n-2). This pattern of calls is best visualized using a:
The following C++ code has a common inheritance-related issue. How can it be debugged to ensure the derived class constructor properly initializes the b...
Consider a simplified backtracking approach for generating permutations of [1, 2, 3]. If the current partial permutation is [1, 3], what is the next log...