Contents
Prev
Next
Page+10
What is the simplest regular expression that generates the same language as (a|b)*b*(a|b)+b+
A:
(a|b)+b+
B:
b*(a|b)+b+
C:
(a|b)*(a|b)+b+
D:
(a|b)+
E:
(a|b)+b
Answer