in Algorithms edited by
762 views
0 votes
0 votes

​​​​​​Match the items in Column $1$ with the items in Column $2$ in the following table:

\begin{array}{|ll|ll|}
\hline & \text{Column 1} & & \text{Column 2} \\
\hline & & & \\
\text{(p)} & \text{First In First Out} & \text{(i)} & \text{Stacks} \\
\text{(q)} & \text{Lookup Operation} & \text{(ii)} & \text{Queues} \\
\text{(r)} & \text{Last In First Out} & \text{(iii)} & \text{Hash Tables} \\
\hline
\end{array}

  1. $(\mathrm{p})-(\mathrm{ii}),(\mathrm{q})-(\mathrm{iii}),(\mathrm{r})-(\mathrm{i})$
  2. $(\mathrm{p})-(\mathrm{ii}),(\mathrm{q})-(\mathrm{i}),(\mathrm{r})-(\mathrm{iii})$
  3. $(\mathrm{p})-(\mathrm{i}),(\mathrm{q})-(\mathrm{ii}),(\mathrm{r})-(\mathrm{iii})$
  4. $(\mathrm{p})-(\mathrm{i}),(\mathrm{q})-(\mathrm{iii}),(\mathrm{r})-(\mathrm{ii})$

in Algorithms edited by
by
762 views

2 Answers

1 vote
1 vote
To match the items in Column 1 with the items in Column 2:

(p) First In First Out               ->   (ii) Queues  

(1) Stacks                                   ->   (1) Last In First Out

(q) Lookup Operation               ->   (iii) Hash Tables

So, the matching pairs are:

(p) First In First Out  matches with (ii) Queues

(q)  Lookup Operation  matches with (iii) Hash Tables

(r)Stacks  matches with (i) Last In First Out

Option A. is the Final Answer.
0 votes
0 votes
$$\begin{array}{|l||}\hline \textbf {Column I} & \textbf{Column II} & \\\hline  \text{P. First In First Out} & \text{ii. Queues}   \\\hline  \text{Q. Lookup Operations} & \text{iii. Hash Table}  \\\hline  \text{R. Last In First Out} & \text{i. Stack}\\\hline  \end{array}$$

Option $(A)$ is correct.

Related questions