Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

HDPCP Practical Exam problem

avatar
Contributor

Hi,

I was going through the practical exam for HDPCD in AWS. There is a question in pig as

"Remove all rows in the flightdelays data where the DepTime column equals the string "NA".

The answer provided for this question says:

b = filter a by (chararray) $4 != 'NA' or (chararray) $11 != 'NA';

I do not understand why It checks 2 fields here. Is it correct or am I missing something ? Because of this I find differences in the actual output and my answer.

Please help me to understand if anyone has idea about it.

1 ACCEPTED SOLUTION

avatar

There is a typo in the solution.

The correct line in the solution should be

b = filter a by (chararray) $4 != 'NA';

Thanks

View solution in original post

2 REPLIES 2

avatar

There is a typo in the solution.

The correct line in the solution should be

b = filter a by (chararray) $4 != 'NA';

Thanks

avatar
Contributor

Thank you!