Most answered questions in Others

0 votes
7 answers
2
4 votes
6 answers
3
5 votes
5 answers
6
0 votes
4 answers
7
Match $\text{List-I}$ with $\text{List-II}$:$$\begin{array}{llll} & \textbf{List I} && \textbf{List II} \\ \text{(a)} & \text{Micro operation} & \text{(i)} & \text{Speci...
0 votes
4 answers
8
Which of the following is/are true w.r.t. applications of mobile computing?Travelling of salesmanLocation awareness servicesa true; b false.Both a and b are true.Both a a...
0 votes
4 answers
9
0 votes
3 answers
11
The set of positive integers under the operation of ordinary multiplication is :not a monoidnot a groupa groupan Abelian group
0 votes
3 answers
12
Which of the following data structures is most efficient in terms of both space and time to reverse a string of characters?Linked listStackArrayTree
0 votes
3 answers
14
What is the output of the following $C$ program?# include <stdio.h main () { int i, j, x=0; for (i=0; i<5; ++i) for (j=0; j<i; ++j) { x+=(i+j-1); break; } printf(“%d”...
1 votes
3 answers
15
0 votes
3 answers
17
Let $A=\begin{bmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \\ 7 & 8 & 9 \end{bmatrix}, B=\begin{bmatrix} 1 & 4 & 7 \\ 2 & 5 & 8 \\ 3 & 6 & 9 \end{bmatrix}, C=\begin{bmatrix} 4 & 5 & 6...
0 votes
3 answers
19
The time required to find the shortest path in a graph with $n$ vertices and $e$ edges is:$O(e)$$O(n)$$O(e^{2})$$O(n^{2})$
0 votes
3 answers
20
Application of data structure queue is :Levelwise printing of treeImplementation of priority queuesFunction call implementationDepth first search in a graph