Which Greek mythology does the title The Road From Colonus by E. M. Forster refer to?A.Oedipus complexB.Oedipus and AntigoneC.Apollo and DaphneD.Sphinx

题目
Which Greek mythology does the title The Road From Colonus by E. M. Forster refer to?

A.Oedipus complex

B.Oedipus and Antigone

C.Apollo and Daphne

D.Sphinx


相似考题
更多“Which Greek mythology does the title The Road From Colonus by E. M. Forster refer to? ”相关问题
  • 第1题:

    4.—_________ Mike________ his homework in the evening?

    —No,he doesn't.

    A. Do;does

    B. Does;do

    C. Do;do

    D. Does;does


    正确答案:B
    4.B【解析】考查实义动词的疑问式为“Does+主语+do,故选B。

  • 第2题:

    Because objects( ) data and implementation, the user of an object can view the object as a black box that provides services.

    A.encapsulate
    B.inherit
    C.connect
    D.refer

    答案:A
    解析:

  • 第3题:

    执行下列语句之后,正确的是() float m=100, n=200; float &refer_m=m, &refer_n=n;

    A.&refer_m=n;

    B.*refer_m=*refer_n;

    C.refer_m=refer_n;

    D.&refer_m=&refer_n;


    refer_m=refer_n;

  • 第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题:

    某企业职工和部门的关系模式如下所示,其中部门负责人也是一个职工。职工和部门的关系模式的外键分别是( )。职工(职工号,姓名,年龄,月工资,部门号,电话,办公室)部门(部门号,部门名,负责人代码,任职时间)查询每个部门中月工资最高的“职工号”的SQL查询语句如下:Select职工号 from职工as Ewhere月工资=(Select Max(月工资)from职工as M(请作答此空))。

    A.where] M.职工号=E.职工号
    B.where] M.职工号=E.负责人代码
    C.where] M.部门号=部门号
    D.where] M.部门号=E.部门号

    答案:D
    解析:
    本题考查的是关系数据库中关系模式和SQL查询方面的基础知识。试题(5)的正确答案是B。因为,作为主键其值能唯一地标识元组的一个或多个属性,主键通常也称为主码。所谓外键是指如果关系模式R中的属性或属性组非该关系的码,但它是其他关系的码,那么该属性集对关系模式R而言是外键,通常也称外码。根据题意分析,职工关系中的主键是职工号,部门关系中的主键是部门号。显然,职工关系中的外键是部门号。但是,部门关系中的外键是负责人代码,为什么?因为题中说明部门负责人也是一个职工,这样负责人代码的取值域为职工号,所以根据外键定义部门关系中的外键是负责人代码。试题(6)的正确答案是D。正确的查询每个部门中月工资最高的“职工号”的SQL查询语句如下:Select职工号 ?from职工as Ewhere月工资=(Select Max(月工资)from职工as M where M.部门号=E.部门号);此题子查询“Select Max(月工资)from职工as M where M.部门号=E.部门号”意为找出M.部门号最高月工资,主查询“Select职工号from职工as E where月工资;”意为该职工的月工资等于最高工资。

  • 第6题:

    3、执行下列语句之后,正确的是() float m=100, n=200; float &refer_m=m, &refer_n=n;

    A.&refer_m=n;

    B.*refer_m=*refer_n;

    C.refer_m=refer_n;

    D.&refer_m=&refer_n;


    B 解析:考查二维数组的定义和初始化。在选项B)中,因为数组第一维的数目不明确,所以理解会有歧义,可以理解为1行3列,或者2行3列等。