Recent questions without answers

1.1k
views
0 answers
0 votes
Read the following statements about 0/1 Knapsack problem.(i) Time complexity of Knapsack is O(n* W) where W is the weight of the Knapsack and there are n items.(ii) Time complexity ... true (i) ( iii) (iv) is true (ii) (iii) (iv) is true.
428
views
0 answers
1 votes
Consider the following statements:S1 : Implementation of stack using queue, deletion of second element from top of stack time complexity Ο(n), when insertion take Ο( ... time.which one of the true?please explain s2 if anyone finds it true.
408
views
0 answers
0 votes
367
views
0 answers
0 votes
Hi Guys, I hope you will be doing good. But just want to know (in case you have attended BAARC interview). Have you guys received travel reimbursement amount in your bank account ? I am just asking because i have not received till now. :(
332
views
0 answers
0 votes
This is the correct Answer? How?
483
views
0 answers
0 votes
TCP guarantees a minimum communication rate - this statement is falseWHY ?MSB is set for TCP right...even if congestion occurs ans starts from slow start ... 2so doesnt it assure minimum communication rate ?or am i goin wrong somewhere
424
views
0 answers
0 votes
Comment on Statement :When a Transaction rolled back or aborted due to some reason by another transaction,and same transaction wakes up after random time ,It holds new Timestamp.
309
views
0 answers
0 votes
void printTwoNumbers( int k ) { if (k == 0) return; printf ( "%d ", k ); printTwoNumbers( k - 1 ); printf( “%d” , k );}Void main(){printTwoNumbers(3);}What is printed as a result of the call printTwoNumbers(3)?
522
views
0 answers
0 votes
We know, Packet Switching works like pipelining. It makes transmission time less. But, we do switching with switching delay, then it add extra transmission time ... transmission tim will be added for switching.Can u plz give reason for it?
651
views
0 answers
0 votes
145
views
0 answers
0 votes
state true or false?(i)can a simple path repeat an edge if yes give an example?(ii) if bridge exist in graph then it is necessary that a cut-point also exist ?
507
views
0 answers
0 votes
What should be the cut off marks of TIFR 2018
154
views
0 answers
0 votes
what are the pros and cons in LL(k) parsing with larger values of k?
998
views
0 answers
0 votes
Consider a uniprocessor system executing three tasks T1,T2T1,T2 and T3T3 each of which is composed of an infinite sequence of jobs (or instances) which arrive ... task preemptions are allowed, " is that all processes arrive at 0 ms ?
454
views
0 answers
0 votes
Consider the following statements:1. The redundancy in the set of relation that have been arised after decomposing a relation R into BCNF is ... _______.WHAT IS DIFFERENCE BETWEEN TRANSITIVE DEOENDENCY AND FULLY FUNCTIONAL DEPENDENCY??
555
views
0 answers
0 votes
In the Call Letter it is given that calculator is not allowed ? is it so?? Anyone who has given previously ??
905
views
0 answers
0 votes
Consider the combinational circuit given below:What is the output of this combinational circuit?
673
views
0 answers
0 votes
376
views
0 answers
0 votes
305
views
0 answers
0 votes
Anyone applied for ecil and didn;t got original degree from university till now?
253
views
0 answers
0 votes
While calculating the total transfer delay do we need to consider the reception time( which, in general, is equal to transmission time) also?Please clarify , consider this question
219
views
0 answers
1 votes
Hi @GO Admin Team,I found GO is a really good platform and it could be modified to make it more awesome (means many more improvement and ... problems related to education system and reducing the overall cost of good quality education.
623
views
0 answers
0 votes
469
views
0 answers
2 votes
The minimum number of RDBMS tables are required for the above drawn ER diagram ________ which satisfies 3NF.
467
views
0 answers
0 votes
How to determine whether a grammar is LL(K) or LR(0) or SLR(1)?
478
views
0 answers
1 votes
int i ; program main () { int j = 60; i = 50; call f (i, j); print i, j; } procedure f (x, y) { i = 100; x = 10; y = y + i ... was redeclared and assigned value 100 in procedure functioneg ; int i = 100;then a local var i will be created ?
281
views
0 answers
0 votes
517
views
0 answers
0 votes
R is divided into R1 and R2 ,but since there is no common attribute in R1 and R2, so it should form lossy join,as for loseless join the common attribute ... .But here the image above,it is comming as loseless join.Can someone please check?