Question
Find the fraction which is greater than (5/7) but less than
(9/7).Solution
ATQ,
Number should lie between (5/7) ~ 0.71 and (9/7) ~ 1.29
(47/32) ~ 1.47
(33/25) ~ 1.32
(55/42) ~ 1.31
(34/29) ~ 1.17
Therefore, required number is (34/29).
Which system call is used to create a new process in UNIX/Linux?
Query optimization heuristic that “pushes selections down” improves:
In DBMS, which scheduling method ensures serializability of transactions?
Which type of DBMS model organizes data in tables with rows and columns?
Which type of join returns rows when there is a match in both tables?
Query optimization heuristics often include:
Consider the following pseudo-code:Â
 ```
  function calculate(arr):
    sum = 0
    for i from 0 to l...
Multiversion Concurrency Control (MVCC) ensures:
The "Dirty Read" problem occurs when:
Given the following Python-like code snippet:Â
  ```python
  class Counter:
    def __init__(self):
   ...