【判断题】【消耗次数:1】
Do you sense an apple of discord between Lily and Lucy?划线部分是“不和”的意思。
正确
错误
参考答案:
复制
纠错
相关题目
【单选题】 The sense relation between “fruit”and “apple”is _______.
①  hyponymy
②  polysemy
③  homonymy
④  synonymy
【单选题】 -May I help you?-___. Do you have any apple juice?
①  Sure
②  Thank you
③  No, thanks
④  I don’t think so
【判断题】 Lucy and Lily is both in Class One.
①  正确
②  错误
【单选题】 Lily is upset these days. Do you know how to ______ her ______?
①  cheer; up
②  cheer; on
③  pick; up
④  put; away
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”You remember things every day, but what do you do it?
①  正确
②  错误
【判断题】 Lucy will call you this evening.
①  正确
②  错误
【单选题】 How do you do? Glad to meet you._________
①  Fine. How are you?
②  How do you do? Glad to meet you, too.
③  How are you? Thank you!
④  Nice. How are you?
【单选题】 You can take any apple ____________ you like.
①  that
②  which
【判断题】 A: How do you do? Pleased to meet you. B: How do you do? Pleased to meet you, too.
①  正确
②  错误
【判断题】 A: How do you do? B: Fine, thank you, and you?
①  正确
②  错误
随机题目
【单选题】 下列选项中不属于容器的一项是( )。
①  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();
【单选题】 布局管理器可以管理构件的哪个属性( )。
①  大小
②  颜色
③  名称
④  字体
【单选题】 下列说法中错误的是( )。
①  同一个对象可以监听一个事件源上多个不同的事件
②  一个类可以实现多个监听器接口
③  一个类中可以同时出现事件源和事件处理者
④  一个类只能实现一个监听器接口
【单选题】 一个线程在任何时刻都处于某种线程状态(thread state),例如运行状态、阻塞状态、就绪状态等。一个线程可以由选项中的哪种线程状态直接到达运行状态?( )
①  死亡状态
②  阻塞状态(对象lock池内)
③  阻塞状态(对象wait池内)
④  就绪状态