Normal difficulty questions. These questions require correct understanding of the topic and the application of it. Those who have prepared must be able to do these questions with in 3 minutes.

Recent questions tagged normal

1 votes
3 answers
2431
The minimum number of equal length subintervals needed to approximate $\int_1^2 xe^x\,dx$ to an accuracy of at least $\frac{1}{3}\times10^{-6}$ using the trapezoidal rule...
32 votes
2 answers
2432
The data blocks of a very large file in the Unix file system are allocated usingcontinuous allocationlinked allocationindexed allocationan extension of indexed allocation...
31 votes
6 answers
2433
The Breadth First Search algorithm has been implemented using the queue data structure. One possible order of visiting the nodes of the following graph is:$\text{MNOPQR}$...
28 votes
4 answers
2434
Which of the following system calls results in the sending of SYN packets?$\textsf{socket}$$\textsf{bind}$$\textsf{listen}$$\textsf{connect}$
28 votes
6 answers
2438
29 votes
2 answers
2439
Let $r$ denote number system radix. The only value(s) of $r$ that satisfy the equation $\sqrt{121_r}={11}_r$ is/aredecimal $10$decimal $11$decimal $10$ and $11$any value ...
29 votes
8 answers
2440
If $P, Q, R$ are subsets of the universal set U, then $$(P\cap Q\cap R) \cup (P^c \cap Q \cap R) \cup Q^c \cup R^c$$ is$Q^c \cup R^c$$P \cup Q^c \cup R^c$$P^c \cup Q^c \c...
64 votes
6 answers
2444
Consider the following $\text{ER}$ diagramThe minimum number of tables needed to represent $M$, $N$, $P$, $R1$, $R2$ is$2$$3$$4$$5$
57 votes
1 answer
2446
1 votes
1 answer
2452
Fourier series of the periodic function (period 2π) defined by$$f(x) = \begin{cases} 0, -p < x < 0\\x, 0 < x < p \end{cases} \text { is }\\ \frac{\pi}{4} + \sum \left [ ...
67 votes
5 answers
2453
Consider a file of $16384$ records. Each record is $32\;\text{bytes}$ long and its key field is of size $6\;\text{bytes}$. The file is ordered on a non-key field, and the...
5 votes
2 answers
2458
double foo(int n) { int i; double sum; if(n == 0) { return 1.0; } else { sum = 0.0; for(i = 0; i < n; i++) { sum += foo(i); } return sum; } }The time complexity of the ab...