Question
Eight people D, E, F, G, H, I, J and K are sitting in a
straight line. All of them are facing North. D sits fourth from one of the extreme ends of the line. E sits third to the right of D. As many people sit to the right of E as to the left of F. Only one person sits between F and G. H sits to the immediate right of K. Only one person sits between K and I. How many people sit to the left of J?Solution
D sits fourth from one of the extreme ends of the line. E sits third to the right of D. ______ _____ _____ D ____ ____ E _____ ……… (I) _____ ______ _____ _____  D _____ _____ E ………. (II) As many people sit to the right of E as to the left of F. Only one person sits between F and G. ______ F _____ D ____ ____ E _____ ……… (I) F ______ G _____  D _____ _____ E ………. (II) H sits to the immediate right of K. Only one person sits between K and I. F J G I  D K H E ………. (II) Final arrangement: F         J         G        I         D        K        H       E
WI-FI uses
Relational Algebra is
Which network layer protocol provides a reliable, connection-oriented delivery of packets?
In natural language processing (NLP), what does TF-IDF stand for?
How many dimensions are selected in Slice operation?
Node.js is built on which JavaScript engine?
Which of the following is NOT a method for handling deadlocks?
Which of the following is a basic equation used in the COCOMO model?
Which of the following is not a limitation of binary search algorithm?
Below code will give what result for f(3)
f(int x)
{
If(x
Return;
f(x-1);
printf(“%d”, x);
f(n-1);
}