Question
Statements: P % Q, P $ R, Q # S, R @ T
Conclusions: I. R $ Q                     II. S & T                III. P % S In the following questions, the symbols $, %, &, @ and # are used with the following meaning as illustrated below. A $ B means A is not smaller than B, A % B means A is not greater than B, A & B means A is neither smaller nor equal to B, A @ B means A is neither greater nor equal to B, A # B means A is neither smaller than nor greater than B.Solution
given statements: P % Q, P $ R, Q # S, R @ T After converting: P ≤ Q, P ≥ R, Q = S , R < T After combining: T > R ≤ P ≤ Q = S Conclusion a → R $ Q → R ≥ Q , It cannot be true as T > R ≤ P ≤ Q = S. As Q ≥ R so, it is not true.  Conclusion b → S & T → S > T There is no relation between S and T in the statement T > R ≤ P ≤ Q = S. So, it is not true. Conclusion c → P % S → P ≤ S It is true in the statement T > R ≤ P ≤ Q = S. So, it is true.
Which tree traversal is most suitable for finding the shortest path in an unweighted graph represented as a tree?
Which software development methodology emphasizes iterative development and customer feedback? Â Â Â Â Â Â Â
...Which of the following is correct for a single-line comment in C++?
In Python, which method is used to convert a string to lowercase?
In C, what is the output of printf("%d", 5/2);?
In Python, what does len() function do?
Which Python keyword is used to handle exceptions?
Which of the following algorithms is used for finding Minimum Spanning Tree?
Which of the following is true about C++ destructors?
 What is the output of the following code: x = 5; y = 2; print(x ** y)?