Recent posts tagged mtech-admission

3
If activation record size is known at compile time. Then why can't we place it in the area where static or global variables is placed ?? why do we need heap for it ??
4
since ,the type of a is float and type of 3 is int in that expression so,the expression is converted into float type.why it is n't converted into int type ??
5
haa you did wrong.... 00 then 11 then 01 then 10 and again 00...
6
Parallel should be opposite of hierarchical. Parallel means things are done together. Hierarchical means there is a serial way of access.
8
During runtime, it is difficult to do anything on stack- as activation record size is decided at compile time. So, it must always be on heap. But I don't know if any lang...
9
everybody telling different different approach , so please give me the right one .
10
RE : 0*(10)* (in question)Here is a trick for option B) and C) B) 0+(0+10)+ C) (0+1)*10(0+1)*Both of these cannot accept Empty set or Empty St...
11
There are many configurations possible here. So, why look for formula. Just understand the working of different types of cache and apply the logic as per the given questi...
12
If the counters are connected one followed by other then the overall frequency of the counters together is equal to frequency/overall MOD of counteroverall MOD of connect...
13
Sorry, my answer was wrong. I had missed the possibility of $x = y$. Also, two interpretations are possible here as shown now.
15
Which of following statement is true ?S1. Any boolean function can be realized using decoders2. One multiplexer can realize 1 function at a timea) S1 is trueb) S2 is true...
16
bhai integration is area only http://www.mathsisfun.com/calculus/integration-introduction.html
18
If $g(x) = 1 - x$ and $h(x) = \frac{x}{x-1}$, then $\frac{g(h(x))}{h(g(x))}$ is:$\frac{h(x)}{g(x)}$$\frac{-1}{x}$$\frac{g(x)}{h(x)}$$\frac{x}{(1-x)^{2}}$
19
C) P - iii, Q - i, R - iv, S - iiRef: https://en.wikipedia.org/wiki/Software_testing
20
Is there any SQL command which belongs to both DDL and DML?
21
Answer is D.$L_1$ is context-free and hence recursive also. Recursive set being closed under complement, $L_1$' will be recursive.$L_1$' being recursive it is also recurs...
22
$\displaystyle \lim_{x\rightarrow \infty } x^{ \tfrac{1}{x}}$ is$\infty $$0$$1$Not defined
23
Correct Option: BWorst case for quick sort happens when $1$ element is on one list and $n-1$ elements on another list.
24
Match the following:(P) Condition Coverage (i) Black-box testing(Q) Equivalence class partitioning (ii) System testing(R) Volume testing ...
25
Correct Option: D$foo$ is printing the lowest digit. But the $printf$ inside it is after the recursive call. This forces the output to be in reverse order$2, 0, 4, 8$The ...
26
Let $G$ be a finite group. If $A$ and $B$ are subgroups of $G$ with orders 4 and 5 respectively, then $|A \cap B|$ = ______.
27
2 is correct answer. fig 2, b and c have {f,g} as upperbound. but for the graph to be a lattice it should have a least upper bound. Since b and c have two upper bounds th...
28
answer - CThere are 2 decision points in this module1. while condition and2. if conditionhence cyclomatic complexity = number of decision points + 1 = 3
29
Here bound of the loop are constants, therefore compiler will do the loop unrolling(If compiler won't then prefetcher will do) to increase the instruction level paralleli...