Lets take the following file dataset.txt:
Frank,19,44,1st_year,12
John,23,,2nd_year,-1
Tom,21,,,0
and the following Pig Latin script:
A = load 'dataset.txt' using PigStorage(',');
B = filter A by $1>20;
C = group B by $2;
dump C;
How many records will be generated as output when running this script?