【单选题】【消耗次数:1】
Which of the following methods is not one of the most popular ways of creating English new words?
derivation
imagination
conversion
compounding
参考答案:
复制
纠错
相关题目
【单选题】 According to the text, which of the following is NOT one of the possible activities for you to practice speaking English at school?
①  To talk to native speakers on campus.
②  To speak English to the waitress in English as you pay for a meal in a restaurant.
③  To rehearse aloud by yourself.
④  To talk with your classmates in English.
【单选题】 Which one of the following drugs is AChE inhibitor ( )
①  PAM-Cl
②  nicotine
③  neostigmine
④  atropine
⑤  pilocarpine
【单选题】 Which of following can be said of the common features which are shared by the English and American Romanticists?
①  An increasing emphasis on the free expression of emotions.
②  An increasing attention to the psychic states of their characters.
③  An increasing emphasis on the desire to return to nature.
④  Both A and B.
【单选题】 Noticeable changes of English words in recent years consist of the following characteristics EXCEPT___________ .
①  increasing use of abbreviation
②  increasing use of open compounds
③  increasing use of clauses
④  increasing use of conversion
【单选题】 What makes Jane Eyre one of the most popular and important novels of the Victorian Age are the followings except_____.
①  it is noted for its sharp criticism of the existing society
②  it is an intense moral fable
③  it is the first introduction to the English novel the first governess heroine
④  Jane Eyre is too timid to love her master Rochester.
【单选题】 The most important representatives of American transcendentalism, which once flourished in New England as a philosophical and literary movement, are _________.
①  Edgar Poe and James Cooper
②  Emerson and Whitman
③  Hawthorne and Melville
④  Emerson and Thoreau
【单选题】 The 20th century has witnessed a great achievement in English poetry and novel, which are mainly represented by the following except ____.
①  Thomas Hardy
②  Ezra Pound
③  T. S. Eliot
④  Robert Browning
【单选题】 Which of the following statement is not true about vocabulary?
①  a vocabulary item can be more than one word
②  Vocabulary can not be taught. It must be learned by the individuals
③  Words are best learned in context
④  An English-English dictionary is an important aid for students.
【单选题】 Which type does the following production practice belong to? The students repeat what the teacher says. This activity can practice individual sounds, individual words, groups of words, and sentences.
①  Listen and repeat
②  Fill in the blanks
③  Make up sentences
④  Using meaningful context
【单选题】 26. Which of the following is INCORRECT?
①  Another two girls
②  Few words
③  This work
④  A bit of flowers
随机题目
【单选题】 给出下面代码段, 哪行将引起一个编译时错误?( ) 1) public class Test { 2) int n = 0; 3) int m = 0; 4) public Test(int a) { m=a; } 5) public static void main(String arg[]) { 6) Test t1,t2; 7) int j,k; 8) j=3; k=5; 9) t1=new Test(); 10) t2=new Test(k); 11) } 12) }
①  行1
②  行4
③  行6
④  行9
【单选题】 有一个类 B,下面为其构造方法的声明,正确的是( ) 。
①  void B int (x) { }
②  B int (x) { }
③  b int (x) { }
④  void b int (x) { }
【单选题】 在Java中,一个类可同时定义许多同名的方法,这些方法的形式参数个数、类型或顺序各不相同,传回的值也可以不相同。这种面向对象程序的特性称为( )。
①  隐藏
②  覆盖
③  重载
④  Java不支持此特性
【单选题】 区分类中重载方法的依据是( ) 。
①  形参列表的类型和顺序
②  不同的形参名称
③  返回值的类型不同
④  访问权限不同
【单选题】 下面语句在编译时不会出现警告或错误的是( )
①  float f=3.14;
②  char c=”c”;
③  Boolean b=null;
④  int i=10.0;
【单选题】 声明成员变量时,如果不使用任何访问控制符(public, protected, private),则以下哪种类型的类不能对该成员进行直接访问 ( )
①  同一类
②  同一包中的子类
③  同一包中的非子类
④  不同包中的子类
【单选题】 下面的方法,当输入为2的时候返回值是多少?( ) public int getValue(int i) { int result = 0; switch (i) { case 1: result = result + i; case 2: result = result + i * 2; case 3: result = result + i * 3; } return result; }
①  0
②  2
③  4
④  10
【单选题】 Java application中的主类需包含main方法,main方法的返回类型是什么?( )
①  int
②  float
③  double
④  void
【单选题】 下面哪一个是合法的数组声明和构造语句( )
①  int[] ages = [100];
②  int ages = new int[100];
③  int[] ages = new int[100];
④  int() ages = new int(100);
【单选题】 下列选项中关于java中super关键字的说法错误的是( )
①  super关键字是在子类对象内部指代其父类对象的引用
②  super关键字不仅可以指代子类的直接父类,还可以指代父类的父类
③  子类可以通过super关键字调用父类的方法
④  子类可以通过super关键字调用父类的属性