Language Grammar question

Given that R={S➡️abSc|E}
1. Expand the Rules of production
2. Find L(G)

1. Rules of production:

S -> abSc
S -> ε

2. L(G) is the language generated by the grammar G. In this case, L(G) would consist of all strings that can be generated using the rules of production S -> abSc and S -> ε. This includes strings such as "ab", "abab", "ababc", "ababccc", etc.