If the sentential form contains no non-terminals, it is a Sentence.
This is because no non-terminals means all non-terminals, that, in zero or more steps, were derived to reach the symbol, have been expanded.
All that remains is the yield of the syntax-tree, or a string of terminals
The language of some Grammar G is the set of Sentences.
A language generated by a grammar is a context-free Grammar.
LL(1) Grammar
The first 'L' denotes the order in which input is scanned; in this case, from left to right. The second 'L' denotes the derivation direction and '1' represents the number of input characters viewed at a time.
Thus, LL(1) means we scan from left to right, building a leftmost derivation tree, while observing one character at a time.