UFP (Unadjusted Function Point)
CAF (Complexity Adjustment Factor)
Function Point FP = UFP*CAF
Ans .
(B) ii iii i iv
Explanation :
Ans .
(B) Software Configuration Management Process
Explanation :
Ans .
(B) they do not explore combinations of input circumstances.
Explanation :
Ans .
(D) If an organization does not understand how to control software projects internally, it will invariably struggle when it outsources software projects.
Explanation :
Ans .
(A) iv i ii iii
Explanation :
Ans .
(A) iv iii ii i
Explanation :
Ans .
(C) Simple Object Access Protocol (SOAP)
Explanation :
Ans .
(C) Style sheet
Explanation :
Ans .
(B) Dynamic loading
Explanation :
Ans .
(C) Ad-hoc polymorphism
Explanation :
Ans .
(A) iii iv i ii
Explanation :
Ans .
(A) Type Promotion
Explanation :
Ans .
(B) One defined by C and one specific to C++.
Explanation :
Ans .
(D) Allocation of memory and frees the memory previously allocated.
Explanation :
Ans .
(A) iv i ii iii
Explanation :
Ans .
(A) S1 is correct and S2 is not correct.
Explanation :
Ans .
(D) 00
Explanation :
T flip flop toggles the state if input T is 1, and does not change state if input T is 0.
T flip flop is a clocked (synchronous or edge-triggered) flip flop.
Edge triggered flip flops can only change its values at the edge of a clock,
in absence of edge does not change its state, remains same.
In given circuit, clock symbol is showing that it is positive edge triggering (low to high change).
Now, we need to find out Q0Q1 after 4 clock cycles. Initial: 00 States Q0 and Q1 are zero
Clock 1: 11 State Q0 changed to 1 because input T is 1 and previous state was 0 and State Q1 changed to 1 because input T is 1 and previous state was 0.
Clock 2: 01 State Q0 changed to 0 because input T is 1 and previous state was 1 and State Q1 remains same because clk value is 0.
Clock 3: 10 State Q0 changed to 1 because input T is 1 and previous state was 0 and State Q1 changed to 0 because input T is 1 and previous state was 1.
Clock 4: 00 State Q0 changed to 0 because input T is 1 and previous state was 1 and State Q1 remains same because clk value is 0.
Ans .
(D) Pragmatic
Explanation :
Ans .
(B) unification, substitution
Explanation :
Ans .
(C) h* underestimates h
Explanation :
Ans .
(C) operator subgoaling
Explanation :
Ans .
(B) beta, alpha
Explanation :
Ans .
(D) {0.1, 0.5, 0.2, 0.1, 0.8}
Explanation :
μA∩B(x) = min [μA(x), μB(x)]
Ans .
(C) h(A) = 1
Explanation :
Ans .
(D) Σ wi . Σ xi
Explanation :
Ans .
(B) Data Redundancy
Explanation :
Ans .
(C) The AES (Advanced Encryption Standard) cryptosystem allows variable key lengths of size 56 bits and 124 bits.
Explanation :
Ans .
(D) 11001001011
Explanation :
Ans .
(C) floor(3n/2) - 2
Explanation :
Ans .
(B) O(n2.81)
Explanation :
Ans .
Marks given to all
Explanation :
Master Method is a direct way to get the solution.
The master method works only for following type of recurrences
T(n) = aT(n/b) + f(n)
highest degree of f(n) is c.
There are following three cases:
T(n)= O(nc) where a < b^c eq 1.
T(n)= O(nc log n) where bc=a. eq 2.
T(n)=O(nlogba) where a> bc. eq 3
In our case T(n)=mT(n/2)tan2 value of a is m, not known. so we cannot say a= 2^C Or Not . We can not say which equation will follow.
Ans .
(C) 4
Explanation :
Ans .
(D) O(n+m)
Explanation :
Ans .
(D) maximal, minimal
Explanation :
Ans .
(B) ≤m, ≥1
Explanation :
Ans .
(C) S→a SB|b, B→b
Explanation :
Ans .
(D) S1 is correct and S2 is correct.
Explanation :
Ans .
(C) 153.6 Mbps
Explanation :
The number of bits/sec is just 800x600x40x8 or 153.6 Mbps.
Ans .
(C) Class C
Explanation :
Ans .
(C) Transport
Explanation :
Ans .
(D) 533.33 m sec
Explanation :
The request has to go up and down, and the response has to go up and down. The total path length traversed is thus 160.000 km. The speed of light in air and vacuum is 300,000 km/sec, so the propagation delay alone is 160,000/300,000 sec or about 533 msec.
Ans .
(C) synchronization
Explanation :
Ans .
(A) Attenuation
Explanation :
Ans .
(C) iii iv i ii
Explanation :
Ans .
(D) All of these
Explanation :
Ans .
A and D
Explanation :
Ans .
(D) None of these
Explanation :
Data naturally needs to flow in and out in serial form.
Ans .
(C) x NOR y
Explanation :
Ans .
(B) traps are synchronous and interrupts are asynchronous with the program
Explanation :
Ans .
(A) 2
Explanation :
Ans .
(A) πcustomer-name(σbalance >10000(Deposit))
Explanation :
Ans .
(C) Conceptual model is not accurate representation of "Universe of interest".
Explanation :
Ans .
(B) Q.2
Explanation :
First query gives stuid of students whose marks are greater than all students taking course 5. Second query gives stuid of students whose marks are greater than any student taking course 5, that is in second query comparison is between min of marks by student enrolled in course 5 and in query one comparison is between maximum of marks by any student in course 5. So the Answer is option D.
Ans .
(D) iv iii i ii
Explanation :
Ans .
(D) ii iv i iii
Explanation :
Ans .
(D) III only
Explanation :
Ans .
(D) All the above.
Explanation :
Ans .
(C) Animation
Explanation :
Ans .
(D) (0.5, 0)
Explanation :
If (0.5, 0) is substituted in the equation, we get 1.5 which is less than 2, then it lies on the same side as that of the origin.
Ans .
(C)
Explanation :
Ans .
Marks given to all
Explanation :
Ans .
(C) test $a=$b
Explanation :
Tests for a zero-length string: test -z string
Tests for a nonzero string length: test -n string
Tests two strings for equality: test string1 = string2
Tests two strings for inequality: test string1 != string2
Tests for a nonzero string length: test string
Ans .
(B) Hardware abstraction layer
Explanation :
Ans .
(D) OLE
Explanation :
Ans .
(D) an associative memory in which item to be searched is compared with all the keys simultaneously.
Explanation :
Ans .
(D) Kill one of the processes
Explanation :
Ans .
(C) Directed acyclic graph
Explanation :
Ans .
(A) Process 0 is called init process.
Explanation :
Ans .
(D) Sleep 1 and echo $!
Explanation :
Ans .
(B) Ready, standby, running, waiting, transition and terminated.