Answer:
It will always contain aa as the substring .
Explanation:
The grammar generates the language that always contains aa as the substring .
As the given grammar is: b*ab*a(a+b)*
The language which it generates is:
L = { aa , baa , aba , baba , babaa , babab , baab , baaa , abab , abaa ...... }
If we see the above, then every language that is generated by this grammar will surely contain aa (double a) as a substring.