#61
107
views
0 answers
0 votes
The array-based stack throws an exception when the array’s capacity has been reached. Consider the following alternative : create a larger array, using the resize metho...
#62
51
views
0 answers
0 votes
#63
144
views
1 answers
0 votes
Design a DFA (Deterministic Finite Automaton) that recognizes the language L defined follows: L= {w - {a, b}* | every a in w is immediately followed by bb}
#64
101
views
0 answers
0 votes
In certain programming languages, comments appear between delimiters such as (* and ) . Let C be the language of all valid delimited comment strings. Such a string in C...
#65
74
views
0 answers
0 votes
I recently qualified gate with low score of 320. As per last year cutoff I may get CS in NIT goa or NIT puducherry or IIIT tirichyIs it worth if i join in any one of thes...
#66
87
views
0 answers
0 votes
I am not able to access the pgee test links it shows me "currently unable to handle this request" Please help
#67
103
views
0 answers
0 votes
S2: R1(x);r2(z);r3(x);r1(z);r2(y);r3(y);w1(x);w2(z);w3(y);w2(y)Please help
#68
84
views
0 answers
0 votes
#69
199
views
1 answers
0 votes
Suppose there are three types of people in the world.A person is “honest” if the person always speaks the truth. A person is a “liar” if the person always lies. A...
#70
65
views
0 answers
1 votes
#71
197
views
1 answers
0 votes
If the determinant and sum of eigen values of a 2 x 2 matrix are -1 and 0 then, what can you say about the rank of the given matrix?a) rank is 0b) rank is 1c) Insufficien...
#72
119
views
1 answers
0 votes
Given, that the eigen values of a 2 x 2 matrix are -1,1 and its singular values are 1,0. What is the rank of the matrix?a) rank is 0b) rank is 1c) Such a matrix can't exi...
#73
167
views
0 answers
0 votes
Two fair 6-face diced are tossed independently. Let X be the random variable of the sum of two numbers on dices and let Y be the absolute difference of two numbers on dic...
#74
173
views
1 answers
0 votes
In quick sort, n numbers the (n/10)th element is selected as pivot using n^2 sortimng time complexity what will be the time complexity of quick sort is.....a)O(nlogn)b)O(...
#75
86
views
0 answers
0 votes
Use the semantic rules below to draw an annotated parse tree for the expression. Compute the final value. (4*2)+3+(3*3+2)n
#76
73
views
0 answers
0 votes
Use the semantic rules below to draw an annotated parse tree for the expression. Compute the final value. (4*2)+3+(3*3+2)n
#77
266
views
1 answers
0 votes
Consider the following segment table: Segment No.BaseLength02196001230014290100313275804195296 What are the physical addresses for the following logical addresses? a. 0,...
#78
72
views
0 answers
0 votes
Describe the bottleneck between the main memory and the CPU, and state how the bottleneck is resolved
#79
161
views
1 answers
1 votes
An urn contains $n$ heliotrope and $n$ tangerine balls. A fair die with $n$ sides is rolled. If the $r^{th}$ face is shown, $r$ balls are removed from the urn and placed ...
#80
232
views
2 answers
1 votes
#include<stdio.h>#define ADD(a,b)(a+b)#define SQUARE(x)(x*x)int main(){int x=2;int y=3;int z = ADD(SQUARE(x++),y);printf("%d\n",z);return 0;}What is the output of the abo...