• 2022-06-17
    对应ASCII码表,下列有关ASCII码值大小关系描述正确的是( )
    A: "CR"<"d"<"G"

    B: "a"<"A"<"9"

    C: "9"<"A"<"CR"
    D: "9"<"R"<"n"
  • D

    举一反三

    内容

    • 0

      定义名为“学号”的属性,该属性的类型为“string”,该属性在XML中必须出现,下面正确的选项是( )。 A: &lt;!attribute name=&quot;学号&quot; type=&quot;string&quot; use=&quot;required&quot; /&gt; B: &lt;attribute name=&quot;学号&quot; type=&quot;string&quot; use=&quot;prohibited&quot; /&gt; C: &lt;attribute name=&quot;学号&quot; type=&quot;string&quot; use=&quot;required&quot; /&gt; D: &lt;attribute name=&quot;学号&quot; type=&quot;string&quot; use=&quot;optional&quot; /&gt;

    • 1

      下面哪种写法可以链接到百度网页? A: &lt;a href=&quot;百度&quot;&gt;百度&lt;/a&gt; B: &lt;a href=&quot;baidu.com&quot; target=&quot;new&quot;&gt;百度&lt;/a&gt; C: &lt;a href=&quot;http://baidu.com&quot; target=&quot;new&quot;&gt;百度&lt;/a&gt; D: &lt;a href=&quot;hhtp://www.baidu.com&quot; target=&quot;new&quot;&gt;百度&lt;/a&gt;

    • 2

      在HTML页面中,调用外部样式表的正确格式是 A: &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;外部样式表地址&quot; /&gt; B: &lt;style rel=&quot;stylesheet&quot; type=&quot;text/css&quot; link=&quot;外部样式表地址&quot; /&gt; C: &lt;style rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;外部样式表地址&quot; /&gt; D: &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; style=&quot;外部样式表地址&quot; /&gt;

    • 3

      在HTML页面中包含一个按钮控件mybutton,如果要实现单击该按钮时调用自定义的JavaScript函数compute,要编写的HTML代码是( )。 A: &lt;input type=&quot;button&quot; onBlur=&quot;compute()&quot; value=&quot;计算&quot;&gt; B: &lt;input type=&quot;button&quot; onFocus=&quot;compute()&quot; value=&quot;计算&quot;&gt; C: &lt;input type=&quot;button&quot; onClick=&quot;function compute()&quot; value=&quot;计算&quot;&gt; D: &lt;input type=&quot;button&quot; onClick=&quot;compute()&quot; value=&quot;计算&quot;&gt;

    • 4

      在使用MapReduce程序WordCount进行词频统计时,对于文本行“hello hadoop hello world”,经过WordCount程序的Map函数处理后直接输出的中间结果,应该是下面哪种形式: A: &lt;&quot;hello&quot;,1,1&gt;、&lt;&quot;hadoop&quot;,1&gt;和&lt;&quot;world&quot;,1&gt; B: &lt;&quot;hello&quot;,2&gt;、&lt;&quot;hadoop&quot;,1&gt;和&lt;&quot;world&quot;,1&gt; C: &lt;&quot;hello&quot;,&lt;1,1&gt;&gt;、&lt;&quot;hadoop&quot;,1&gt;和&lt;&quot;world&quot;,1&gt; D: &lt;&quot;hello&quot;,1&gt;、&lt;&quot;hello&quot;,1&gt;、&lt;&quot;hadoop&quot;,1&gt;和&lt;&quot;world&quot;,1&gt;