• 2022-10-26
    在构建基本体中,WebGL库与代码对应不正确的是?
    A: A-frame:<a-box color="red" width="3">
    B: Three.js:<a-entity geometry="primitive:box; width:3"material="color:red">
    C: HTML5:<a-box color="red" width="3">
    D: HTML5:<a-entity geometry="primitive:box; width:3"material="color:red">
  • A

    举一反三

    内容

    • 0

      在定义控件的样式时,下面哪个是属性表示圆角半径( ) A: &lt;solid android:color=&quot; B: dddddd&quot;/&gt; C: &lt;stroke android:color=&quot; D: dfcdae&quot; android:width=&quot;3dp&quot;/&gt; E: &lt;corners android:radius=&quot;10dp&quot;/&gt; F: &lt;padding android:top=&quot;20dp&quot;/&gt;

    • 1

      要创建一个左右框架,右边框架宽度是左边框架的3倍,以下HTML语句正确的是( )。 A: &lt;FRAMESET cols=&quot;*, 2*&quot;&gt; B: &lt;FRAMESET cols=&quot;*, 3*&quot;&gt; C: &lt;FRAMESET rows=&quot;*, 2*&quot;&gt; D: &lt;FRAMESET rows=&quot;*, 3*&quot;&gt;

    • 2

      对于HTML页面,在a开始标签中匹配href属性内容的最合理的正则表达式是什么?假设href属性内容使用双引号包围,需要将匹配内容放到第一个匹配组中。 A: &lt;a href=&quot;([^&quot;]*)&quot;[^&gt;*]&gt; B: (?is)&lt;as[^&gt;*]href=&quot;([^&quot;]*)&quot;[^&gt;*]&gt; C: &lt;as[^&gt;*]href=&quot;([^&quot;]*)&quot;[^&gt;*]&gt; D: &lt;as[^&gt;*]href=&quot;([^&quot;]*)&quot;&gt;

    • 3

      下列定义字符串数组的语法正确的是( )? A: String[] list = new String[]{&quot;red&quot;, &quot;yellow&quot;, &quot;green&quot;}; B: String list = new String{&quot;red&quot;, &quot;yellow&quot;, &quot;green&quot;}; C: String list = {&quot;red&quot;, &quot;yellow&quot;, &quot;green&quot;}; D: String[] list = {&quot;red&quot;, &quot;yellow&quot;, &quot;green&quot;};

    • 4

      定义名为“国籍”的元素,其在XML中的默认内容为“中国”,正确的选项为( )。 A: &lt;!element name=&quot;国籍&quot; default=&quot;中国&quot; /&gt; B: &lt;element name=&quot;国籍&quot; default=&quot;中国&quot; /&gt; C: &lt;attribute name=&quot;国籍&quot; default=&quot;中国&quot; /&gt; D: &lt;element name=&quot;国籍&quot; default=&quot;中国&quot; &gt;