以下操作能实现追加写入文件的是
A: echo "hello" > /tmp/test
B: echo "hello" >> /tmp/test
C: print "hello
" >> /tmp/test
D: printf "hello
" >> /tmp/test
A: echo "hello" > /tmp/test
B: echo "hello" >> /tmp/test
C: print "hello
" >> /tmp/test
D: printf "hello
" >> /tmp/test
举一反三
- 以下操作能实现追加写入文件的是 A: echo "hello" > /tmp/test B: echo "hello" >> /tmp/test C: print "hello\n" >> /tmp/test D: printf "hello\n" >> /tmp/test
- 在使用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>
- 以下代码输出的结果为( )<?php$attr = array("0"=>"aa","1"=>"bb","2"=>"cc");echo $attr[1];?>? 输出为空|aa|会报错!|bb
- 对于HTML页面,在a开始标签中匹配href属性内容的最合理的正则表达式是什么?假设href属性内容使用双引号包围,需要将匹配内容放到第一个匹配组中。 A: <a href="([^"]*)"[^>*]> B: (?is)<as[^>*]href="([^"]*)"[^>*]> C: <as[^>*]href="([^"]*)"[^>*]> D: <as[^>*]href="([^"]*)">
- if元素测试模式的基本语法为( )。 A: <if test="测试条件"> 输出内容 </if> B: <if when="测试条件"> 输出内容 </if> C: <if test="测试条件"> 输出内容 <else> 输出内容 </else></if> D: <if when="测试条件"> 输出内容 <else> 输出内容 </else></if>