Recent activity by pradeepchaudhary

1 answer
2
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
3
The $FSM$ (Finite State Machine) machine pictured in the figure aboveComplements a given bit patternFinds $2's$ complement of a given bit patternIncrements a given bit pa...
2 answers
6
0 answers
9
What is the effect on line utilization if we increase the number of frames for a constant message size? Lower line efficiencyHigher line efficiencyNo change in line effic...
2 answers
11
If the memory is 768 MB and the block’s size is 384 Bytes, what will be the size of the bitmap in Bytes?I think it should be 2^21 Bytes, but I’m not quite sure.Could ...
0 answers
14
void foo(int n) { for(i1=1;i1<=n;i1++) { for(i2=1;i2<=i1;i2++) { ....... { for(i6=1;i6<=i5;i6++) { count++; } } } } }Count initially 0.What is value returned by foo(8)?
1 answer
15
void print(int i){ static int x=4; if(i!=0){ print( x); } printf("%d",x); }What will be output printed for print(10)?Will it print value as call by value or call by refer...
3 answers
16
Runtime stack doesnot contain(A) Local variables(B) Static Variables(C) Parameter Passed(D) Return Address
0 answers
18
void find(int x){ static int i=10,y=0; y=y+i; for(i;i>0;i=i-10){ if(x!=0) find(x-1); else{ printf("%d",y); } } }What will be output printed for find(4)?
1 answer
19
In which of the following case CPU utilization will be higher?(a) If all the processes are I/O bound(b) Is all the processes are equally CPU bound and I/O bound(c) If all...
1 answer
20
Can we solve fractional knapsack using dynamic programming?
1 answer
22
Please explain the Question number 33 and 34. What is significance of word "only" ?
2 answers
23
6 answers
24
What are minimum number of tables required for the following given ER models such that they satisfy 1NF ?
1 answer
25
What are the parameters or procedure to follow to find out minimum no. of tables for given ER Diagram type of questions?
0 answers
26
1 answer
27
Question Number 4?
1 answer
28
Value of an Integral :I = $\frac{1}{\sqrt{2\Pi }} \int_{0}^{\infty } e^{\frac{-x^{2}}{8}}dx$Answer given is 1.
1 answer
29
$\int x^7.e^{x^4}dx$How to do this?
1 answer
30