Computer Science, asked by luvsingh2014, 1 month ago

Which of the following text when matched with the regular expression “[a-zA-Z&&[^aeiou]]+” will return true?


Select one or more:
cry
Good
My
must

Answers

Answered by KesavanCSE
2

Answer:

All are true.

Explanation:

[abc] a, b, or c (simple class)

[a-zA-Z] a through z or A through Z, inclusive (range)

[^abc] Any character except a, b, or c (negation)

above statement show , except the letter a, e,i,o,u other letter combined words are true

Similar questions