Question
A shopkeeper sold three types of books i.e. fiction,
non-fiction, and comics. Number of fiction books sold is 25% of the total number of books sold and the ratio of non-fiction to comics sold is 4:3 respectively. If the difference between the number of fiction books sold and the number of comics sold is 90, then find the number of non-fiction books sold.Solution
ATQ, Let the total number of books sold be '100x' Number of fiction books sold = 0.25 × 100x = '25x' Number of comics sold = (3/7) × 75x = (75x × 3)/7 = 225x/7 Given: So, the number of non-fiction books sold:
In indexing, which tree is most commonly used for disk-based indexing because it minimizes disk seeks and keeps nodes dense?
Which of the following illustrates an advantage of DBMS over traditional file systems?
Which normal form removes partial dependency?
In a relational schema, which normal form eliminates transitive dependencies (i.e., non-prime attribute depends on another non-prime attribute)?
Shadow paging in recovery eliminates the need for:
Which operation is NOT part of relational algebra?
Which normal form removes transitive dependency?
What is the output of the following pseudo-code?Â
 ```
  count = 0
  for i from 1 to 3:
    for j from 1 t...
You have a Python list of fruits and want to extract a specific sub-list using slicing.
 Complete the missing part of the code to obtain the sub...
Which debugging tool allows a developer to pause program execution at specific lines, inspect variable values, and execute code step-by-step?Â