Question
Statements: F @ R, R $ J, V % J, V # Z
Conclusions: I. F * V II. R * V III. Z % J IV. F @ Z In these questions, symbols $, *, #, % and @ are used with different meaning as follows: ‘X $ Y’ means ‘X is not smaller than Y.’ ‘X * Y’ means ‘X’ is greater than Y’. ‘X # Y’ means ‘X’ is not greater than Y’. ‘X % Y’ means ‘X’ is smaller than Y’. ‘X @ Y’ means ‘X is neither smaller than nor greater than Y.’Solution
given statements: F @ R, R $ J, V % J, V # Z After converting: F = R, R ≥ J , V < J , V ≤ Z After combining: F = R ≥ J > V ≤ Z Conclusion a → F * V → F > V ( F = R ≥ J > V) , it is true. Conclusion b → R * V → R > V ( R ≥ J > V ) it is true. Conclusion c → Z % J → Z < J (J > V ≤ Z ) , No relationship can be established between J and Z so, it is not true. Conclusion d → F @ Z → F = Z ( F = R ≥ J > V ≤ Z), No relationship can be established between F and Z so, it is not true
What is the output of the following Python code snippet?
x = [1, 2, 3]
y = x
x.append(4)
print(y)
What is the purpose of the subnet mask in IP addressing?
Which isolation level allows transactions to read uncommitted changes made by other transactions?
Which company originally developed the Go programming language?
Conditional statements are also known as ________ statements.
What issue does the “Count to Infinity” problem relate to in distance-vector protocols?
Running time T(n) where 'n' is the input size of the recursive algorithm given as : T(n) = c + T(n-1), if n > 1 ; T(n) = d if n < 1. The order of the a...
The normal distribution is also known as the:
In 16-bit 2’s complement representation, the decimal number -28 is
What is a cache memory?