Question
40 tailors can stitch a batch of dresses in 30 days. If
20 tailors started the job and after 15 days βuβ more tailors joined them such that the remaining work got completed in 15 days, then find the value of βuβ.Solution
Total work = 40 Γ 30 = 1200 units Work completed by 20 tailors in 15 days = 20 Γ 15 = 300 units Remaining work = 1200 β 300 = 900 units Let the number of tailors added be βuβ. Therefore, (20 + u) Γ 15 = 900 300 + 15u = 900 15u = 600 u = 40 Number of tailors added = 40
Star schema consists of:
How can you pass command-line arguments to a shell script?
In shell scripting, $1 represents:
Which operator is used to append output to a file?
How do you typically make a shell script file executable?
What is the primary purpose of the "shebang" line `#!/bin/bash` at the beginning of a shell script?
Which signal is sent by default when using kill without arguments?
What will be the output of the following script snippet?
Β Β for item in Apple Banana Cherry; do
Β echo $item
done
Which of the following is a system call used to create a new process in Unix-like operating systems?
Which command is used to combine the contents of multiple files?