We define the parsing table, usually $T$, for a given grammar as a 2d array in which each entry $T[X,a]$ is a set of production rules from the grammar, such that some rule $X \Coloneqq \beta$ is in the set $T[X,a]$ just if, either:
$a \in \first(\beta)$
or, $\nullable(\beta)$ and $a \in \follow(X)$
A grammar whose parsing table contains at most one rule in each cell is called LL(1).