Question
A rectangular shaped pit of length 18 ft and breadth 16
ft is made in a rectangular field of length 64 ft and breadth 52 ft. The earth dug out of the pit is uniformly spread on the remaining area of the field. If the increase in level of the remaining area is 1.25 ft then what will be the depth of the pit?Solution
Area of the rectangular field = 64 × 52 = 3328 sq. ft Area of the rectangular pit = 18 × 16 = 288 sq. ft ∴ The area of remaining field = 3328 – 288 = 3040 sq. ft Hence, Volume of the pit = Area of remaining field × Increased level l × b × h = 3040 × 1.25 18 × 16 × h = 3800 ∴ h = 3800/288 = 13.19 ft Hence, the depth of the pit is 13.19 ft
Which of the following is a characteristic of "tight coupling" between software modules?
Which traversal method of a Binary Search Tree will always output elements in ascending order?
What does "Polymorphism" literally mean in the context of OOP?
The number of significant figures for 5.1250 and 0.06900 respectively are____Â
In OOP, what is an instance of a class called?
Which of these models is best suited for language translation?
Which of the following function in python is used to read keyboard input?
Which of the following action is treated as Anomaly while understanding User activity logs?
Consider a graph with vertices A, B, C, D and edges with weights: (A,B)=1, (A,C)=7, (A,D)=10, (B,C)=3, (C,D)=4, (D,E)=2. (Assume E is another vertex). I...
Given the string S = "aabaaab" for Z-Algorithm, what is the Z-array for this string? (Z is typically 0 or undefined).