InterviewSolution
Saved Bookmarks
| 1. |
While operating with strings, what does “_ _ _%” match with?(a) A string of three letters(b) A string of at least three letters(c) A string of three words(d) A string of at least three words |
|
Answer» Correct option is (a) A string of three letters To explain: The string in the question matches with a string having at least three letters. The first three blank spaces indicate three letters whereas the percentage indicates indefinite spaces after that. |
|