Question 6 of 60
Can you use MapReduce to perform a relational join on two large tables sharing a key? Assume that the two tables are formatted as comma-separated files in
HDFS.
    Correct Answer: A

Question 7 of 60
You have just executed a MapReduce job. Where is intermediate data written to after being emitted from the Mapper's map method?
    Correct Answer: D

Question 8 of 60
You want to understand more about how users browse your public website, such as which pages they visit prior to placing an order. You have a farm of 200 web servers hosting your website. How will you gather this data for your analysis?
    Correct Answer: B

Question 9 of 60
MapReduce v2 (MRv2/YARN) is designed to address which two issues?
    Correct Answer: B, D

Question 10 of 60
You need to run the same job many times with minor variations. Rather than hardcoding all job configuration options in your drive code, you've decided to have your Driver subclass org.apache.hadoop.conf.Configured and implement the org.apache.hadoop.util.Tool interface.
Indentify which invocation correctly passes.mapred.job.name with a value of Example to Hadoop?
    Correct Answer: C