3 answers
3
Is it Possible that any SDT can be L-attributed and S-attributed both in the same question?
0 answers
4
An unbiased coin is tossed up an infinite numbers of time.The probability that the fourth head appears at the tenth toss$.067$$.073$$.082$$.091$
2 answers
5
1 answer
7
A memory constructed with 2B words and capacity of memory $2^{18}$ bits. Number of decoder required and type of decoder if memory built using $1K\times 4$ RAM chips?(if p...
3 answers
8
Let $A$ be an $n \times n$ matrix such that the elements in each row and each column are arranged in ascending order. Draw a decision tree, which finds $1$st, $2$nd and $...
5 answers
9
Following algorithm(s) can be used to sort $n$ in the range $[1\ldots n^3]$ in $O(n)$ timeHeap sortQuick sortMerge sortRadix sort
1 answer
11
I have opted for both online test and through GATE exam score...but I couldn't qualify GATE ..that's my misfortune. If I cn qualify barc, can I get a call for interview?...
5 answers
12
Wha is the output of the following program?main() { int a = 10; if(fork()) == 0)) a++; printf("%d\n",a); }10 and 11101111 and 11
1 answer
13
The left-to-right post-order traversal of a tree $T$ yields the following sequence of nodes:$$\text{D K E F B G L M H I J C A.}$$For each node of $T$, the deg...
3 answers
14
1 answer
18
2 answers
19
The sum of an infinite geometric series of real numbers is $14$, and the sum of the cubes of the terms of this series is $392$. Then the first term of the series is$-14$$...
0 answers
21
suppose i have declared arrayint a[5] = { 1,2,3,4,5} ;and i want to print output as :a[0] = 1a = 2a = 3a[3] = 4a[4] =5can anyone write program in c displaying this...
1 answer
23
Please can anyone tell how to find whether a given language is regular or not?
1 answer
24
1 answer
26
ANSWER IS CORRECT BU I HAVE DOUBT IN A - .Ab, a/bI think it must be A - .Ab ,a
1 answer
28
#include<stdio.h #include<stdlib.h void main() { int a =100; if(fork()==0) { a=a+5; printf("%d %d \n",a,&a ); } }How many parent and child process will be created?