在使用MapReduce程序WordCount进行词频统计时,对于文本行“hellomaphelloreduce”,经过WordCount程序的Map函数处理后直接输出的中间结果,应该是下面哪种形式( )。
A: <"hello",1,1>、<"map",1>和<"reduce",1>
B: <"hello",2>、<"map",1>和<"reduce",1>
C: <"hello",<1,1>>、<"map",1>和<"reduce",1>
D: <"hello",1>、<"hello",1>、<"map",1>和<"reduce",1>
A: <"hello",1,1>、<"map",1>和<"reduce",1>
B: <"hello",2>、<"map",1>和<"reduce",1>
C: <"hello",<1,1>>、<"map",1>和<"reduce",1>
D: <"hello",1>、<"hello",1>、<"map",1>和<"reduce",1>
举一反三
- 在使用MapReduce程序WordCount进行词频统计时,对于文本行“hello hadoop hello world”,经过WordCount程序的Map函数处理后直接输出的中间结果,应该是下面哪种形式: A: <"hello",1,1>、<"hadoop",1>和<"world",1> B: <"hello",2>、<"hadoop",1>和<"world",1> C: <"hello",<1,1>>、<"hadoop",1>和<"world",1> D: <"hello",1>、<"hello",1>、<"hadoop",1>和<"world",1>
- 以下操作能实现追加写入文件的是 A: echo "hello" > /tmp/test B: echo "hello" >> /tmp/test C: print "hello " >> /tmp/test D: printf "hello " >> /tmp/test
- 以下Java的条件、循环结构的写法,有输出效果、且没有错误的有哪些? A: …… if(true){ System.out.println("hello"); }…… B: ……if(true); { System.out.println("hello");}…… C: ……while(1){ System.out.println("hello"); }…… D: …… if(true) System.out.println("hello"); ……
- 以下Java的条件、循环结构的写法,有输出效果、且没有错误的有哪些?( ) A: …… if(true); { System.out.println("hello"); } …… B: …… if(true) System.out.println("hello"); …… C: …… while(1){ System.out.println("hello"); } …… D: …… if(true){ System.out.println("hello"); } ……
- 下面语句中,正确的是( )。 A: printf("%c ","student"); B: printf("%c ","c"); C: printf("%s ",&a); D: printf("%s ","hello");