Computer Sciences > Gate 2017 Set-1 > CFG
Consider the following context-free grammar over the alphabet ∑ = {a, b, c} with S as the start symbol:

S → abScT | abcT
T → bT | b


Which of the following represents the language generated by the above grammar?
A
{(ab)n(cb)n | n >= 1 }
B
{(abncbm1cbm2...cbmn | n, m1, m2, ....., mn >= 1 }
C
{(ab)n(cbm)n | n >= 1 }
D
{(ab)n(cbn)m | m, n >= 1 }

Explanation

Correct : b

Similar Questions

What is the worst-case time complexity of insertion in an AVL tree?
Question #23 Medium
Which operations on a binary search tree have O(h) complexity?
Question #31 Easy
Compare search complexities of sorted array vs balanced BST.
Question #47 Hard

Related Topics

Data Structures Binary Search Tree Time Complexity Algorithm Analysis Tree Algorithms Computer Science