【单选题】【消耗次数:1】
---Excuseme,butcanyoutellmethewaytotheairport?---___________.
Dontaskthat
Sorry,Imastrangerhere
No,youredrivingtoofast
No,Ican’tsaythat.
参考答案:
复制
纠错
相关题目
【单选题】 ---Excuseme,sir,couldyoutellmethewaytoPeoplesSquare?---____.
①  Dontbotherme.
②  Sorry,Imastrangerhere,too.
③  Idontunderstandyou
④  Whydontyoutakeataxi?
【单选题】 Ican’tmendmyshoe_____. Canyoumenditfor_____?
①  myself;me
②  myself; I
③  I
④  I; me
【单选题】 —Excuseme,doyoumindifIsmoke?—_______________________.
①  Yes,ofcourse.
②  Yes,please
③  Notatall.
④  No,pleasedon’t.
【单选题】 ---Excuseme,doyouhavesmallchangeforadollar?---____________________.
①  Whydoyouwanttochange?
②  Isitmybusiness?
③  AredimesandquartersOK?
④  Youshouldn’taskastrangerforchange.
【单选题】 Theboyisjuststupid;Ican’t______tohimatall,evenwhenIexplainthingsinwordsofonesyllable.
①  seethrough
②  lookthrough
③  gothrough
④  getthrough
【单选题】 ---Excuseme,sir.WhereisProf.Smith’soffice?---_________________.
①  Youcan’taskme
②  Pardon,Ihavenoidea
③  Pleasedon’tsayso
④  Sorry,Idon’tknow
【单选题】 ---Excuseme,howmuchisthejacket?---It’s499Yuan.________.
①  Oh,no.That’sOK!
②  Howdoyoulikeit?
③  Whichdoyouprefer?
④  Wouldyouliketotryiton?
【单选题】 ---Excuseme.HowdoIgettoPorterStreetfromhere?---__________.You’dbetterasksomeoneelse.
①  Well,it’snottoofaraway.
②  Doyouaskme?
③  I’mnotfromaroundhere.
④  Pleasedtomeetyou.
【单选题】 —Excuseme,howmuchisthejacket?—It’s499Yuan.____________.<br/>
①  Oh,no.That’sOK!
②  Howdoyoulikeit?
③  Whichdoyouprefer?
④  Wouldyouliketotryiton?
【单选题】 —Excuseme,couldyoushowmethewaytothenearestpostoffice?—_______Oh,yes!TwoblocksawayfromhereattheGreenAvenue.Youcan’tmissit.
①  Ibegyourpardon?
②  Whatdoyoumean?
③  You’rewelcome.
④  Mm,letmethink.
随机题目
【单选题】 在Java中开发JDBC应用程序时,使用DriverManager类的getConnection()方法 建立与数据源的连接语句为: Connection con = DriverManager.getConnection(“jdbc:odbc:news”); URL连接中的”n ews”表示的是( )
①  数据库中表的名称
②  数据库服务器的机器名
③  数据源的名称
④  用户名
【单选题】 下列流中哪一个使用了缓冲区技术( )?
①  BufferedOutputStream
②  FileInputStream
③  DataOutputStream
④  FileReader
【单选题】 定义外部类时不能用到的关键字是( )
①  final
②  public
③  protected
④  abstract
【单选题】 下列选项中不属于容器的一项是( )。
①  Window
②  Panel
③  FlowLayout
④  ScrollPane
【单选题】 如果容器组件p的布局是BorderLayout,则在p的下边中添加一个按钮b,应该使用的语句是( )
①  p.add
②  ;
③  p.add b,North);
④  p.add b,South);
⑤  add p,North);
【单选题】 下列说法中错误的一项是( )。
①  构件是一个可视化的能与用户在屏幕上交互的对象
②  构件能够独立显示出来
③  构件必须放在某个容器中才能正确显示
④  一个按钮可以是一个构件
【单选题】 Thread 类定义在下列哪个包中( )。
①  java.io
②  java.lang
③  java.util
④  java.awt
【单选题】 取ResutlSet对象rst的第一行数据,以下正确的是( )
①  rst.hashNext();
②  rst.next();
③  rst.first();
④  rst.nextRow();
【单选题】 下列程序实现了在当前包dir815下新建一个目录subDir815,选择正确的一项填入程序的 横线处,使程序符合要求( ) 。 package dir815; import java.io.*; public class X8_1_5 { public static void main(String[] args) { char ch; try{ File path = ; if(path.mkdir()) System.out.println(successful!); 48 } catch(Exception e) { e.printStackTrace(); } } }
①  new File(subDir815);
②  new File(dir815.subDir815);
③  new File(dir815\subDir815);
④  new File(dir815/subDir815);
【单选题】 要从文件file.dat中读出第10个字节到变量c中,下列哪个方法适合? ( )
①  FileInputStream in=new FileInputStream(file.dat); in.skip(9); int c=in.read();
②  FileInputStream in=new FileInputStream(file.dat); in.skip(10); int c=in.read();
③  FileInputStream in=new FileInputStream(file.dat); int c=in.read();
④  RandomAccessFile in=new RandomAccessFile(file.dat); in.skip(9); int c=in.readByte();