InterviewSolution
Saved Bookmarks
| 1. |
Which of the following strings is NOT in the Kleene star of the language {011, 10, 110}?(a) 01(b) 10(c) 110(d) 10011101 |
|
Answer» Right option is (d) 10011101 The explanation: Every string in the language {011, 10, 110}* has to be formed from zero or more uses of the strings 011, 10, and 110. A string may be used more than once. |
|