参考答案和解析

正确答案:D
解答参考:D.此题考察词组用法。A为沉浸于,B为感兴趣,C为放纵沉迷于,D为卡住【译文】他被卡在一串缓行的车辆中。

更多“He was _______ a line of slow-moving traffic. ”相关问题
  • 第1题:

    Given:When the doSomething method is called, after which line does the Object created in line 5 become available for garbage collection?()

    A.Line 5

    B.Line 6

    C.Line 7

    D.Line 8

    E.Line 9

    F.Line 10


    参考答案:D

  • 第2题:

    Given:WhichchangecanyoumaketoTargetwithoutaffectingClient?()

    A.Line4ofclassTargetcanbechangedtoreturni++;

    B.Line2ofclassTargetcanbechangedtoprivateinti=1;

    C.Line3ofclassTargetcanbechangedtoprivateintaddOne(){

    D.Line2ofclassTargetcanbechangedtoprivateIntegeri=0;


    参考答案:D

  • 第3题:

    当对Draw Width进行设置后,将影响( )。

    A.Line、Circle、Pset方法

    B.Line、Shape控件

    C.Line、Circle、Point方法

    D.Line、Circle、Pset方法和Line、Shape控件


    正确答案:A

  • 第4题:

    Given:WhichlineofcodemarkstheearliestpointthatanobjectreferencedbyintObjbecomesacandidatefor garbagecollection?()

    A.Line16

    B.Line17

    C.Line18

    D.Line19


    参考答案:D

  • 第5题:

    Given:Which code, inserted at line 16, correctly retrieves a local instance of a Point object?()

    A.Point p = Line.getPoint();

    B.Line.Point p = Line.getPoint();

    C.Point p = (new Line()).getPoint();

    D.Line.Point p = (new Line()).getPoint();


    参考答案:D

  • 第6题:

    12、哪种访问组合可放在第3行aMethod()前和第8行的aMethod()前? 1. class SuperDuper 2. { 3. void aMethod() { } 4. } 5. 6. class Sub extends SuperDuper 7. { 8. void aMethod() { } 9. }

    A.line 3: public; line 8: private

    B.line 3: protected; line 8: private

    C.line 3: private; line 8: protected

    D.line 3: public; line 8: protected


    line 3: private; line 8: protected