InterviewSolution
Saved Bookmarks
| 1. |
ComprehensionDIRECTIONS: In the following questions choose the correct alternative if:(i) & means 'is greater than'(ii) % means 'is lesser than'(iii) > means 'is equal to'(iv) = means 'is not equal to'(v) @ means 'is a little more than'(vi) # means 'is a little less than'1. a % c2. c % a3. c > a4. Can't say |
||||||||||||||
|
Answer» Correct Answer - Option 1 : a % c According to the given information,
Coded statement:a % b and b > c Decoded statement: a < b and b = c Combined statement: a < b = c Thus, a < c is true. Hence, a % c is correct. |
|||||||||||||||