Recent activity by Sourabh Kumar

2 answers
1
CMM (Capability Maturity Model) is meant for:I. ProcessII. ProductIII. Both I and IIIV. Neither I nor II
9 answers
3
If the ordinary generating function of a sequence $\left \{a_n\right \}_{n=0}^\infty$ is $\large \frac{1+z}{(1-z)^3}$, then $a_3-a_0$ is equal to ___________ .
7 answers
6
If $\dfrac{(2y+1)}{(y+2)} < 1,$ then which of the following alternatives gives the CORRECT range of $y$ ?$- 2 < y < 2$$- 2 < y < 1$$- 3 < y < 1$$- 4 < y < 1$
1 answer
7
1 answer
9
2 answers
10
1 answer
11
as i know, after fun(&a); the local variable will be destroyed because function is over and pop out from stack thenhow *a can access j variable which is already deleted?
1 answer
12
What is the output of the following program?#include<stdio.h void main() { int n=3, i=0; do { n=n++; i++; } while(i!=3); printf(“%d\n”, n); }
2 answers
13
1 answer
14
3 answers
15
1 answer
16
char *p="hello"; printf("%d",sizeof(*p));Size of print space occupied.so,why it don't print 6 (6 char * 1B each )?
2 answers
18
2 answers
20
Assume that $16$-bit CPU is trying to access a double word stating at an odd address. How many memory operations are required to access the data?$1$$2$$3$$4$
3 answers
21
How many lines of output does the following C code produce?#include<stdio.h float i=2.0; float j=1.0; float sum = 0.0; main() { while (i/j 0.001) { j+=j; sum=sum+(i/j); ...
4 answers
22
How many different $\text{BCD}$ numbers can be stored in $12$ switches ? (Assume two position or on-off switches).$2^{12}$$2^{12}-1$$10^{12}$$10^3$
1 answer
23
The number of logical CPUs in a computer having two physical quad-core chips with hyper threading enabled is ______$1$$2$$8$$16$
3 answers
24
3 answers
25
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 answer
26
What are the final states of the DFA generated from the following NFA?$q_{0}, q_{1}, q_{2}$$[q_{0}, q_{1}], [q_{0}, q_{2}], [ ]$$q_{0}, [q_{1}, q_{2}]$$[q_{0}, q_{1}], q_...
2 answers
27
What is the right way to declare a copy constructor of a class if the name of the class is MyClass?MyClass (constant MyClass * arg)MyClass (constant MyClass & arg)MyClass...
3 answers
28
The protocol data unit for the transport layer in the internet stack isSegmentMessageDatagramFrame