3 votes
201
If f : R - R defined by , Show that f is invertible.
4 votes
202
TOC
3 votes
203
14 votes
205
Consider the following pseudo- codewhile (m<n) if (x>y ) and (a<b) then a=a+1 y=y-1 end if m=m+1 end whileWhat is cyclomatic complexity of the above pseudo -code?2345
1 votes
207
Draw an FA accepting the language of all strings that begin or end with aa or bb, where indicated language is over {a, b} .
6 votes
208
State True/False:"Some programs do not exhibit locality of reference."
3 votes
209
The following three 'C' language statements is equivalent to which single statement?y=y+1; z=x+y; x=x+1z = x + y + 2;z = (x++) + (++y);z = (x++) + (y++);z = (x++) + (++y)...
3 votes
210
NFA can be converted into DFA usingSub set construction methodLazy evaluation methodeither A or Bboth A and B
4 votes
211
Check whether graph with following degrees are possible?I) 6, 6, 6, 6, 3, 3, 2, 2II) 7, 6, 6, 4, 4, 3, 2, 2(How to solve this type of questions? Please explain..)
5 votes
212
7 votes
213
If $X=\begin{bmatrix} 3 & -4 \\ 1 & -1 \end{bmatrix}$, the value of $X^n$ is$\begin{bmatrix} 3n & -4n \\ n & -n \end{bmatrix}$$\begin{bmatrix} 2+n & 5-n \\ n & -n \end{bm...
2 votes
215
Given the following list of numbers:[21, 1, 26, 45, 29, 28, 2, 9, 16, 49, 39, 27, 43, 34, 46, 40]which answer illustrates the list to be sorted after 3 recursive calls to...
10 votes
216
GivenX:01016Y:61628The interpolated value X=4 using piecewise linear interpolation is1142210
14 votes
217
A symbol table of length $152$ is processing $25$ entries at any instant. What is occupation density?$0.164$$127$$8.06$$6.08$
13 votes
218
2 votes
219
5 votes
220
Any set of Boolean operators that is sufficient to represent all Boolean expressions is said to be complete. Which of the following is not complete ?{$NOT$, $OR$}{$NOR$}{...
5 votes
222
A language L is accepted by finite automata if and only if it isRight linearPrimitive RecursiveContext SensitiveRecursive
6 votes
223
Context-free grammar can be recognized by finite state automation$2$- way linear bounded automatapush down automataboth (B) and (C)
0 votes
224
Give a regular expression for L = {set of all strings in which number of a's are multiples of 3}∑={a,b,c}
2 votes
225
11 votes
226
One SAN switch has $24$ ports. All $24$ supports $8$ Gbps Fiber Channel technology. What is the aggregate bandwidth of that SAN switch?$96$ Gbps$192$ Mbps$512$ Gbps$192$ ...
9 votes
227
4 votes
228
Warnier Diagram enables the analyst to representClass structureInformation HierarchyData FlowState Transition
10 votes
229
Which of the following is not valid Boolean algebra rule?$\text{X.X = X}$$\text{(X+Y).X = X}$$\overline{X}+\text{XY = Y}$$\text{(X+Y).(X+Z) = X + YZ}$
4 votes
230
We need to calculate average instruction execution time here. Actually I don't get the meaning of branch need not be taken, branch is taken. Kindly help me to solve this ...