Recent activity by syncronizing

0 answers
1
Is this the correct way to solve ?Q) int algorithm(int n){ int sum =0;k,j; for (k=0;k<n/2;k++) for(j=0;j<10;j++) sum++; return 4*algorithm(n/2)*algorit...
0 answers
2
5 answers
3
If half adders and full adders are implements using gates, then for the addition of two $17$ bit numbers (using minimum gates) the number of half adders and full adders r...
0 answers
5
The difference between 201 and next larger double precisionnumber is 2P, if IEEE double precision format is used then thevalue of P is ________.what is next larger precis...
1 answer
6
The given logic circuit is realizing the boolean function and function Identify the function f3(A,B,C,D)Answer given is
1 answer
7
I’m getting 25.99 in gate 2019, OBC. can I get RA in IIT Bombay?
1 answer
8
Can anyone pls write about ISRO cut off for CSE in GEN and OBC category?
0 answers
9
Will ISRO 2019 recruit this year? till now there is no information about ISRO 2019 form.Please share if you have information regarding it.
0 answers
11
When ISRO 2019 form filling will start?
1 answer
12
Will I get any IITs under 40 marks in gate 2018 in OBC category ?
5 answers
20
Every LL(1) grammar is ______A.SLR(1)B.LALR(1)C.LR(1)D.Both B & C
0 answers
21
Which of the following is not a token of c -program?A. 1.02e + 2B. # defineC. 123.33D. MAXplease explain why?
1 answer
22
The number of tokens in the fortran statements DO 10 I = 1.3 is ?
1 answer
23
0 answers
24
Incompatable types work with the _____________A. Syntax treeB.semantic analyzerC.Code optimizerD.Lexical analyzerAnswer is BPlease explain why?
9 answers
25
The number of different orders are possible for elements 1, 2, 3, 4, 5, 6, 7 to be inserted in to empty AVL tree such that no rotation will be done and element ‘4’ is...
0 answers
26
Consider the following graph:The number of strongly connected components of the graph are ________.
8 answers
28
1 answer
29
T(n) = T(root(n)) + n where n>=2Time complexity ?
2 answers
30
int main() { int a = 1, b = 2, c = 3; printf("%d", a += (a += 3, 5, a)); } How is this evaluated ?