Question
‘R’ completes a job in 10 days. ‘S’ is twice as
efficient as ‘R’. How much time will they take to complete 120% of the work together?Solution
Let total work = 100x units.
Efficiency of R = 100x / 10 = 10x units/day.
S is twice as efficient, so S's efficiency = 2 × 10x = 20x units/day.
120% of work = 100x × 1.20 = 120x units.
Combined efficiency = 10x + 20x = 30x units/day.
Time taken = 120x / 30x = 4 days.
Write a query to fetch department-wise count of employees sorted by department’s count in ascending order. EmployeeInfo is the table name.
...Write through technique is used in which memory for data updating
What will be the output of the following code snippet?
int num = 10;
int *ptr = #
printf("%d", *ptr);
Arrange the following memory components in the memory hierarchy from the fastest to the slowest: Cache memory, Main memory (RAM), Hard disk.
The dynamic memory allocation is the memory allocation done at the _________.
How does blockchain achieve its tamper-resistant quality?
Which field in the IP header indicates the maximum number of hops a packet can take before being discarded?
What is the term for the process of transferring data between physical memory and secondary storage in virtual memory systems?
In C, which keyword is used to access memory-mapped registers for DMA configuration?
What is the purpose of a lock in concurrency control?