InterviewSolution
Saved Bookmarks
| 1. |
Regular expression x/y denotes which of the following set?(a) {x,y}(b) {xy}(c) {x}(d) {y}I had been asked this question in an online quiz.This intriguing question originated from Finite Automata and Regular Expressions topic in chapter Compiler Introduction of Compiler |
|
Answer» CORRECT CHOICE is (a) {X,y} Explanation: Because either x or y can be SELECTED. |
|