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>
内容
- 0
下面逻辑表达式的值为真的是( ) A: "A" > "a" B: "9" > "a" C: "Think" > "Thank" D: 12 > 12.1
- 1
关于eval函数,以下选项中描述错误的是 。 A: eval函数的定义为:eval(source, globals=None, locals=None, /) B: 执行">>> eval("Hello")"和执行">>> eval("'Hello'")"得到相同的结果 C: 如果用户希望输入一个数字,并用程序对这个数字进行计算,可以采用eval(input(<输入提示字符串>))组合 D: eval函数的作用是将输入的字符串转为Python语句,并执行该语句
- 2
在项目中已经建立了一个 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"/>
- 3
定义名为“姓名”元素,该元素的内容不允许为空,下面正确的选项是( )。 A: <element name="姓名" required="true"/> B: <element name="姓名" required="false"/> C: <element name="姓名" nillable="true"/> D: <element name="姓名" nillable="false"/>
- 4
定义名为“国籍”的元素,其在XML中的默认内容为“中国”,正确的选项为( )。 A: <!element name="国籍" default="中国" /> B: <element name="国籍" default="中国" /> C: <attribute name="国籍" default="中国" /> D: <element name="国籍" default="中国" >