在使用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: <"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",1>和&...uot;,<1,1>>
- 对于HTML页面,在a开始标签中匹配href属性内容的最合理的正则表达式是什么?假设href属性内容使用双引号包围,需要将匹配内容放到第一个匹配组中。 A: <a href="([^"]*)"[^>*]> B: (?is)<as[^>*]href="([^"]*)"[^>*]> C: <as[^>*]href="([^"]*)"[^>*]> D: <as[^>*]href="([^"]*)">
- 下面哪种写法可以链接到百度网页? A: <a href="百度">百度</a> B: <a href="baidu.com" target="new">百度</a> C: <a href="http://baidu.com" target="new">百度</a> D: <a href="hhtp://www.baidu.com" target="new">百度</a>
- 下列的 HTML 中,可以产生超链接的是______。 A: < a href="http:// www.kmust.edu.cn " >昆明理工大学< /a > B: < a url="http://www.kmust.edu.cn" >昆明理工大学< /a > C: < a >http:// www.kmust.edu.cn < /a > D: < a name="http:// www.kmust.edu.cn " >昆明理工大学< /a >
- 在项目中已经建立了一个 JavaBean 该类为:bean.Student,给 bean 具有 name 属性,则下面标签用法正确的是:( ) A: <jsp:useBeanid="student" scope="session"></jsp:useBean> B: <jsp:useBeanid="student" scope="session">hello student!</jsp:useBean> C: <jsp:useBeanid="student" class="bean.Student" scope="session">hello student!</jsp:useBean> D: <jsp:getProperty name="name" property="student"/>