InterviewSolution
Saved Bookmarks
| 1. |
Evaluate the following expression.a)'a' in ['c', 'e', 'a','t']b)5 |
|
Answer» a) Trueb) 10Explanation:a) in keyword CHECKS if the element is present in the array or not and returns VALUE accordingly.b) Since 5 is not less than 5 the SECOND STATEMENT i.e 10 here is displayed. |
|