Question
In a train, 40% of the passengers are females. Out of
total number of passengers, 60% have unreserved tickets out of which 20% are females. How much percent of females have unreserved tickets?Solution
Let the total number of passengers in the train be ‘x’ Therefore, total number of female passengers = 0.4x Number of female passengers who have unreserved tickets = 0.6 × 0.2x = 0.12x Required percentage = (0.12x/0.4x) × 100 = 30%
Which company originally developed the Go programming language?
Which of the following synchronization mechanisms is known for its "wait" and "notify" operations?
What does the "Projection" operation in relational algebra do?
Which of the following assigns IP addresses dynamically?
calculate the complexity of the below recursive code
Int f(int n)
{
If(n
return 1;
return f(n/2)+f(n/2);
}
What is a deadlock in a computer system?
Divide and conquer partition a problem into independent smaller sub problems, whereas dynamic programming partition a problem into overlapping sub-probl...
What is the purpose of virtual memory?
What is a "page fault" in the context of virtual memory?
Which component is responsible for translating virtual addresses to physical addresses?