Question
If ‘REALISE’ is coded as ‘9’, ‘PAMPHLET’ is
coded as ‘8’, then what is the code for ‘PROPOSE’ in the same code language?Solution
The logic followed here is as follows: The words are coded as the difference of positional value of 1st and 5th letter from the left end as per the English Alphabetical series. REALISE = R (18) – I (9) = 9. PAMPHLET = P (16) – H (8) = 8. PROPOSE = P (16) – O (15) = 1.
HTTPS ensures which of the following?
Wait-Die and Wound-Wait are strategies for:
What will re.findall(r'\d+', 'abc123def45ghi') return?Â
During transaction before commit which of the following statements is done automatically in case of shutdown?
Which type of join returns all rows from the left table and matching rows from the right table?
What is a page fault?
What will be the value of `x` after the following pseudo-code execution?Â
```
  x = 0
  data = [10, 20, 30]
  f...
In a relational database, what is a candidate key?
In the context of computer networks, what is the primary function of a router?
A transaction that reads a value then later sees a different value because another transaction updated and committed in between experiences which anomaly?