Akhil and Nikhil together can complete a work in 9 days while Nikhil alone takes 12 days to complete 50% of the work. If the efficiency of Sachin is 20% more than that of Akhil, then find the time taken by Sachin alone to complete the whole work.
Time taken by Nikhil to complete the whole work alone = 12/0.50 = 24 days Let the total work = 72 units Efficiency of (Akhil + Nikhil) = 72/9 = 8 units/day Efficiency of Nikhil = 72/24 = 3 units/day Efficiency of Akhil = 8 - 3 = 5 units/day Therefore efficiency of Sachin = 1.20 x 5 = 6 units/day Time taken by Sachin to complete the whole work alone = 72/6 = 12 days
Given the following code snippet, what will be the output when the function findMax is called with the array arr = [1, 5, 3, 9, 2]?
def findMax...
In Unix/Linux operating systems, which of the following commands is used to send a process to the background, allowing the terminal to continue acceptin...
In a mission-critical network requiring fault tolerance and multiple redundant paths, which of the following topologies provides the highest level of re...
Which of the following HTTP methods is idempotent and used to completely replace a resource on the server?
In the Least Recently Used (LRU) page replacement algorithm, given the following reference string 4, 2, 4, 1, 5, 2, 3, 4, and assuming 3 frames, how man...
In a network, which protocol is used to determine the MAC address corresponding to a given IP address?
Which of the following statements about Classless Inter-Domain Routing (CIDR) is NOT true?
Dynamic programming is used by
Predict the program output
void main ()
{
int x = 128;
printf ("n%d", 1 + x++);
}
In terms of processor performance, which factor has the greatest impact on reducing instruction execution time for computationally heavy applications? ...