更多“9.—_________ does she like blue? —Because the color makes her happy.A.When B.Why C.How ”相关问题
  • 第1题:

    采用逻辑学方式的培训内容线包括______。

    A.what(目标是什么,要做的是什么)

    B.why(这样做的理由是什么)

    C.how(怎样做)

    D.who(谁来做)


    正确答案:ABC

  • 第2题:

    以下CSS选择符定义中,______属于类选择符。

    A.P{color:red; font-size:12pt}
    B.p.blue{color:blue}
    C.#Red{color:red;)
    D.PEM {background: yellow}

    答案:B
    解析:
    本题考查CSS的基础知识。CSS(Cascading Style Sheets,层叠样式表,简称为样式表)是用于(增强)控制网页样式并允许将样式信息与网页内容分离的一种标记性语言。在CSS基本语法结构中,样式表的结构为:选择符{属性1:值1;属性2:值2;…}其中,选择符有如下几种形式:(1)HTML标记。任何HTML标记都可以是一个CSS的选择符,如P{color:red;font-size:12pt}。(2)类选择符。一个选择符能有不同的CLASS(类),因而允许同一元素有不同的样式。格式如下:标记名:类名{属性1:值1;属性2:值2;…}(3)ID选择符。ID选择符个别地定义每个元素的成分。这种选择符应该尽量少用,因为它具有一定的局限。一个ID选择符的指定要有指示符“#”在名字前面。(4)关联选择符。关联选择符是用空格隔开的两个或更多的单一选择符组成的字符串。这些选择符可以指定一般属性,而且因为层叠顺序的规则,它们的优先权比单一的选择符大。

  • 第3题:

    2、利用XSL创建一style属性,style的值为“color:bule;background-color:red”,能实现该功能的选项为()。

    A.<attribute name="color">blue</attribute> <attribute name="background-color">red</attribute>###SXB###B.<attribute name="style">color:blue</attribute> <attribute name="style">background-color:red</attribute>###SXB###C.<attribute name="style"> color:blue;background-color:red </attribute>###SXB###D.<element attribute="style">
    C

  • 第4题:

    Which of the following may illustrate the difference between "competence" and__________ "performance"?

    A.What a person "knows" and what he/she "does".
    B.What a person "can do" and what he/she "does".
    C.What a person "does" and what he/she "knows".
    D.What a person "does" and what he/she "can do".

    答案:A
    解析:
    考查语言学知识。competence“语言能力”,指语言使用者对于语言规则系统的潜在意识;performance“语言运用”,指在具体场景中语言的实际运用,二者对应的分别为“knows”和“does”。故选A。

  • 第5题:

    利用XSL创建一style属性,style的值为“color:bule;background-color:red”,能实现该功能的选项为()。

    A.<attribute name="color">blue</attribute> <attribute name="background-color">red</attribute>

    B.<attribute name="style">color:blue</attribute> <attribute name="style">background-color:red</attribute>

    C.<attribute name="style"> color:blue;background-color:red </attribute>

    D.<element attribute="style"> color:blue;background-color:red </element>


    color:blue;background-color:red

  • 第6题:

    以下复合选择器中,权重最大的是()。

    A.p.father strong{color:orange;}

    B.p.father .blue{color:gold;}

    C.#header strong{ color:pink;}

    D.#header strong.blue{ color:red;}


    正确