Answer:
The algorithm scans input from left to right
The algorithm produces a leftmost derivation
The algorithm is top-down
Step-by-step explanation:
The LL algorithm starts at the start symbol and applies production so that it could arrive to target string.
A LL algorithm is a left to right leftmost division algorithm means it the input is scanned from left to right and attempt to construct the leftmost division.
A LL algorithm is top down means it breaks down the problem and into different sub problems and then solving it.