niusouti.com
更多“________ offered by the firm include a company car and free health insurance. ”相关问题
  • 第1题:

    packagecom.company.application;publicclassMainClass{publicstaticvoidmain(String[]args){}}AndMainClassexistsinthe/apps/com/company/applicationdirectory.AssumetheCLASSPATHenvironmentvariableissetto.(currentdirectory).WhichtwojavacommandsenteredatthecommandlinewillrunMainClass?()

    A.javaMainClassifrunfromthe/appsdirectory

    B.javacom.company.application.MainClassifrunfromthe/appsdirectory

    C.java-classpath/appscom.company.application.MainClassifrunfromanydirectory

    D.java-classpath.MainClassifrunfromthe/apps/com/company/applicationdirectory

    E.java-classpath/apps/com/company/application:.MainClassifrunfromthe/appsdirectory

    F.javacom.company.application.MainClassifrunfromthe/apps/com/company/applicationdirectory


    参考答案:B, C

  • 第2题:

    [A] comfortable [B] weak [C] risky [D] firm


    正确答案:D

    本题考查形容词辨析。feel是系动词,意为“摸起来,感觉起来”,它常与形容词构成系表结构,如:The water feels warm.(这水摸起来很暖和。)本题中feel的主语是the road, 因此空格处的形容词应说明“道路”的特点。四个选项都可以修饰事物,comfortable一般指“(衣服、家具等)使人舒服的”,如:The bed/these shoes are very comfortable.(这床/这双鞋子很舒服。)weak意为“不牢固的,易损坏的”,如:The bridge is too weak to carry heavy traffic.(那座桥梁不太牢固,承受不住过多的车辆。)weak也可指“微弱的,隐约的”,强调不容易被看到或听到,如:a weak light/sound(微弱的光线/声音)。risky意为“有危险或风险的”,如:a risky investment(有风险的投资)。firm意为“坚固的,结实的,稳固的”,如:No building can stand without firm foundations.(没有稳固的基础,建筑就不牢靠。)根据上下文,空格处的形容词应与下文“容易滑倒”相对照,因此[D]正确,强调道路“结实”。

  • 第3题:

    I always suspected she __________her successful performance to her friendship with Rice.

    A. owed
    B. donated
    C. contributed
    D. offered

    答案:A
    解析:
    考查词义辨析。本句意为:我怀疑她的成功的表现全靠她与Rice 之间的友谊。 owe...to...应把……归因于;donate 捐献;contribute to...促成,导致;offer 提供。

  • 第4题:

    Given:And MainClass exists in the /apps/com/company/application directory. Assume the CLASSPATHenvironment variable is set to "." (current directory). Which two java commands entered at the command line will run MainClass?()

    A.java MainClass if run from the /apps directory

    B.java com.company.application.MainClass if run from the /apps directory

    C.java -classpath /apps com.company.application.MainClass if run from any directory

    D.java -classpath . MainClass if run from the /apps/com/company/application directory

    E.java -classpath /apps/com/company/application:. MainClass if run from the /apps directory

    F.java com.company.application.MainClass if run from the /apps/com/company/application directory


    参考答案:B, C

  • 第5题:

    Mr. Henley has accelerated his sale of shares over the past year.

    A: held
    B: increased
    C: expected
    D: offered

    答案:B
    解析:
    题干意为“在过去的一年,亨利先生快速地抛售了他的股票。” 句中划线词意为“加速”。B项increase意为“增加”。例句:Rising prices neutralized in-creased wages.上涨的物价抵消了增加的工资。A项意为“拥有”,C项expect意为“预料”。 D项offer意为“提供”。故选B。

  • 第6题:

    以下程序运行后的输出结果是() 。   #include <stdio.h>   #include <stdlib.h>   #include <string.h>   main()   { char *p; int i;    p=(char *)malloc(sizeof(char)*20);    strcpy(p,"welcome");    for(i=6;i>=0;i--) putchar(*(p+i));    printf("n"); free(p);   }


    D 本程序中通过DATA语句对数组B赋值的结果为矩阵DO循环语句的功能是将数组B的第2列的元素的值依次赋值给数组A。因此,A(1)=4、A(2)=5、A(3)=6,所以格式输出数组A后输出的结果为456。