Longest prefix match (also called Maximum prefix length match) refers to an algorithm used by routers in Internet Protocol (IP) networking to select an entry from a routing table.
The most specific of the matching table entries — the one with the longest subnet mask — is called the longest prefix match.
It is called this because it is also the entry where the largest number of leading address bits of the destination address match those in the table entry.
In this case, the longest prefix of the candidate routes is 192.168.20.16/28, since its subnet mask (/28) is longer than the other entry's mask (/16), making the route more specific.
Forwarding tables often contain a default route, which has the shortest possible prefix match, to fall back on in case matches with all other entries fail.