0 0 votes Consider the following lex script%% a(b|cd)*b {printf("%s#",yytext); } a(b|cd)*cd {printf("%s#",yytext); } a+b*d {printf("%s#",yytext); }Tokenize the given input strings using the scanner generated using the above script and answer the questions by filling in the blanksWhat is the output string corresponding to the input abbbdcdabcddc ? $\_\_\_\_\_\_\_$What is the output string corresponding to the inputabbbcdacdbccd ? $\_\_\_\_\_\_\_$What is the first substring in the inputabbbdcdabcddc that does not match any pattern? $\_\_\_\_\_\_\_$What is the last substring in the inputabbbdcdabcddc that does not match any pattern? Provide the sequence of substrings in the inputabbbcdacdbccd that do not match any pattern. Fill in the blanks starting from the first blank by filling as many blanks as needed. $\_\_\_\_$ , $\_\_\_\_$ , $\_\_\_\_$, $\_\_\_\_$ Others iitb-ms-phd-test-dec computing-systems + – Shubham Sharma 2 116 views answer comment Share Follow Print 0 reply Please log in or register to add a comment.