Briefing Cloudera Knowledge

which is the correct way of submitting the job to the cluster?

Given a Mapper, Reducer, and Driver class packaged into a jar, which is the correct way of
submitting the job to the cluster?

A.
jar MyJar.jar

B.
jar MyJar.jar MyDriverClass inputdir outputdir

C.
hadoop jar MyJar.jar MyDriverClass inputdir outputdir

D.
hadoop jar class MyJar.jar MyDriverClass inputdir outputdir

Explanation:
Example:

Run the application:
$ bin/hadoop jar /usr/joe/wordcount.jar org.myorg.WordCount /usr/joe/wordcount/input
/usr/joe/wordcount/output