2 votes
1
why is C incorrect?addition of any two nibbles such as10001000 -0000Will generate a final carry as 1 0000, which will require the addition of 0110 as 1 0110 to make it...
2 votes
2
1 votes
4
hi,Can anyone answer this question? @arjun sir, According to me there is no mutual exclusion and hence deadlock is not created.
1 votes
5
2 votes
7
0 votes
11
Consider the $C++$ code fragment below.int A = ____________; bool x = (A/100 >= 8) && !(A%10 4) && (A%5 == 1);(a) ______ is the $\textbf{maximum three digit (in decimal ...
0 votes
15
0 votes
17
Given the following state table of an FSM with two states $A$ and $B$,one input and one output.$$\small\begin{array}{|c|c|c|c|c|c|}\hline \textbf{PRESENT} & \textbf{PRESE...
0 votes
19
int main(){ float f=0.7; if(f==0.7) printf("equal"); else printf("not equal"); return 0;} ...
0 votes
23
0 votes
24
What does the double arrow in options 2 & 4 mean ?
1 votes
25
Context-free languages are closed under:Union, intersectionUnion, Kleene closureIntersection, complementComplement, Kleene closure
0 votes
27
0 votes
28
Consider the following sequence of numbers:$$92, 37, 52, 12, 11, 25$$ Use Bubble sort to arrange the sequence in ascending order. Give the sequence at the end of each of ...
0 votes
29
For merging two sorted lists of sizes $m$ and $n$ into a sorted list of size $m+n$, we require comparisons of$O(m)$$O(n)$$O(m+n)$$O(\log m + \log n)$
0 votes
30