单选题In the 1950s, classroom violence ______.A was something unheard ofB was by no means a rare occurrenceC attracted a lot of public attentionD began to appear in analysts’ data

题目
单选题
In the 1950s, classroom violence ______.
A

was something unheard of

B

was by no means a rare occurrence

C

attracted a lot of public attention

D

began to appear in analysts’ data


相似考题
更多“单选题In the 1950s, classroom violence ______.A was something unheard ofB was by no means a rare occurrenceC attracted a lot of public attentionD began to appear in analysts’ data”相关问题
  • 第1题:

    Because ________ bad weather we had to have our physical education class in the classroom.

    A、of

    B、it was

    C、of the

    D、the


    参考答案:A

  • 第2题:

    In the 1940s,classroom violence______.

    A.was something unheard of

    B.was by no means a rare occurrence

    C.attracted a lot of public attention

    D.began to appear in analysts" data


    正确答案:A
    确切地说,该题属例证题。依据文章第五段第三行“unheardofinthe1940s”。

  • 第3题:

    A by means of

    B in terms of

    C with regard to

    D in line with


    正确答案:B

  • 第4题:

    China is a wonderful place and there is()to see and enjoy.

    • A、a lot of
    • B、many 
    • C、much
    • D、many more

    正确答案:C

  • 第5题:

    数组data[m]为循环队列的存储空间,front为队头指针,rare为队尾指针,则执行入队的操作为()

    • A、rare=rare+1
    • B、rare=(rare+1)%(m-1)
    • C、rare=(rare-1)%m
    • D、rare=(rare+1)%m

    正确答案:D

  • 第6题:

    现有:  interface Data {public void load();}  abstract class Info {public abstract void load();}      下列类定义中正确使用Data和Info的是哪项?() 

    • A、 public class Employee implements Info extends Data { public void load(){/*dosomething*/}     }
    • B、public class Employee extends Inf.implements Data{ public void load() {/*do something*/}     }
    • C、public class Empl.yee implements Inf extends Data{ public void Data.1oad(){* do something*/}     public void load(){/*do something*/}     }
    • D、public class Employee extends Inf implements Data  {  public void Data.1oad()  {/*do something*/)     public void info.1oad(){/*do something*/}    }

    正确答案:B

  • 第7题:

    单选题
    The underlined word reduce probably means ______.
    A

    to make something less

    B

    to make something better

    C

    to make something more

    D

    to make something cleaner


    正确答案: A
    解析:
    词义猜测题。根据划线部分所在句子“It helps to reduce waste and pollution, which is great for the environment.”可知它对环境有益,所以是“减少”浪费和污染。

  • 第8题:

    单选题
    数组data[m]为循环队列的存储空间,front为队头指针,rare为队尾指针,则执行入队的操作为()
    A

    rare=rare+1

    B

    rare=(rare+1)%(m-1)

    C

    rare=(rare-1)%m

    D

    rare=(rare+1)%m


    正确答案: A
    解析: 暂无解析

  • 第9题:

    单选题
    I felt somewhat disappointed and was about to leave, ______ something occurred which attracted my attention.
    A

    unless    

    B

    when    

    C

    until    

    D

    while


    正确答案: A
    解析:
    正当我感到有些沮丧准备离开时,发生的一件事吸引了我的注意力。when引导时间状语从句。

  • 第10题:

    单选题
    The word “pollute” means “______”.
    A

    to tell something to a lot of people

    B

    wanting to know about something

    C

    a programme on the radio or on TV

    D

    to make air, water, soil, etc dirty


    正确答案: B
    解析:
    细节理解题。根据pollute的第一条解释“to make air, water, soil etc dangerously dirty”可知D选项正确。

  • 第11题:

    单选题
    “To put off something” means “to ______”.
    A

    look for it

    B

    put it in place

    C

    postpone it

    D

    cancel it


    正确答案: A
    解析:
    put off推迟,相当于postpone。look for寻找。put it in place把它放在适当位置。cancel取消。

  • 第12题:

    单选题
    现有:  interface Data {public void load();}  abstract class Info {public abstract void load();}      下列类定义中正确使用Data和Info的是哪项?()
    A

     public class Employee implements Info extends Data { public void load(){/*dosomething*/}     }

    B

    public class Employee extends Inf.implements Data{ public void load() {/*do something*/}     }

    C

    public class Empl.yee implements Inf extends Data{ public void Data.1oad(){* do something*/}     public void load(){/*do something*/}     }

    D

    public class Employee extends Inf implements Data  {  public void Data.1oad()  {/*do something*/)     public void info.1oad(){/*do something*/}    }


    正确答案: A
    解析: 暂无解析

  • 第13题:

    public class Something {

    public static void main(String[] args) {

    Something s = new Something();

    System.out.println("s.doSomething() returns " + doSomething());

    }

    public String doSomething() {

    return "Do something ...";

    }

    }

    看上去很完美。


    正确答案:

     

    错。看上去在main 里call doSomething 没有什么问题,毕竟两个methods 都在同一个

    class 里。但仔细看,main 是static 的。static method 不能直接call non-static methods。可改

    成"System.out.println("s.doSomething() returns " + s.doSomething());"。同理,static method 不

    能访问non-static instant variable。

  • 第14题:

    阅读以下说明和Java程序,将应填入(n)处的字句写在对应栏内。

    [说明]

    下面程序输出一个矩形面积,以及矩形区域上的假想的作物产量。

    [Java程序]

    public class MainJava {

    public static void main(String[] args){

    Lot_size small=new Lot_size();

    Lot_size medium=new Lot_size();

    small.set(5,5,5,25);

    medium.set(10,10,10,50);

    System.out.println("For a small lot of area"

    +small.get_area()+"\n");

    System.out.println("the actual crops are $"

    +small.get_data2()+"\n");

    System.out.println("and ideal crops are $"

    +small.get data()+"\n");

    System.out.println("For a medium lot of area"

    +medium.get_area()+“\n”);

    System.out.println("the actual crops are $"

    +medium.get_data2()+"\n");

    System.out.println ("and ideal crops are $"

    +medium.get_data()+"\n");

    }

    }

    class Crop_assessment{

    private int actual_crop;

    private int ideal_crop;

    public void set(int in_actual,int in ideal){

    actual_crop=in_actual;

    ideal_crop=in_ideal;

    }

    public int get_actual_crop(){return (1) ;}

    public int get_ideal_crop()(return (2) ;}

    }

    class Lot_size{

    private int length;

    private int width;

    private Crop_assessment crop= (3) ;

    public void set(int 1,int W,int a,int i){

    length=1;

    width=W;

    crop.set(a,i);

    }

    public int get_area(){return length*width;}

    public int get_data()freturn (4) ;}

    public int get_data2()(return (5) ;}

    }


    正确答案:(1) return actual_crop (2) return ideal_crop (3) new Crop_assessment() (4) crop.get_ideal_crop (5) crop.get_actual_crop()
    (1) return actual_crop (2) return ideal_crop (3) new Crop_assessment() (4) crop.get_ideal_crop (5) crop.get_actual_crop() 解析:本题以Java语言为载体,考查面向对象程序设计中的几个重要概念—类的嵌套及函数的使用。
    本题的功能是通过已定义的粮食收成类定义了一个计算特定矩形域上粮食收成的类,在主函数中定义了两个对象,并调用了相应的函数,来输出理想和实际的粮食产量。
    首先,由于Crop assessment定义的成员数据缺省为私有的,所以想要获得实际和理想的粮食产量,要通过两个公有成员函数,所以(1)处应填入“return actual_crop”,(2)处应填入“return ideal_crop”。
    其次,在类Lot size中,由于我们要反映矩形域上的粮食产量,所以我们在类中嵌套定义了一个类,Java中对象需要实例化,故(3)应填入“new Crop_assessment()”。
    最后,由于我们想通过Lot_size类中的get_data和get_data2函数得到粮食产量,但由于这两个成员数据是私有函数,所以我们必须通过定义的对象调用它,所以(4)应填入“crop.get_ideal_crop()”,(5)应填入“crop.get_actual_crop()”。

  • 第15题:

    Something important has come up.This sentence means something important happens unexpectedly.


    正确答案:正确

  • 第16题:

    If you want to learn something, you had better pay()in class.

    • A、care
    • B、respect
    • C、attention
    • D、notion

    正确答案:C

  • 第17题:

    interface Data { public void load(); }  abstract class Info { public abstract void load(); }  Which class correctly uses the Data interface and Info class?() 

    • A、 public class Employee extends Info implements Data { public void load() { /*do something*/ } }
    • B、 public class Employee implements Info extends Data { public void load() { /*do something*/ } }
    • C、 public class Employee extends Info implements Data { public void load() { /*do something */ } public void Info.load() { /*do something*/ } }
    • D、 public class Employee implements Info extends Data { public void Data.load() { /*dsomething */ } public void load() { /*do something */ } }
    • E、 public class Employee implements Info extends Data { public void load() { /*do something */ } public void Info.load(){ /*do something*/ } }
    • F、 public class Employee extends Info implements Data{ public void Data.load() { /*do something*/ } public void Info.load() { /*do something*/ } }

    正确答案:A

  • 第18题:

    public class Parent {  public int addValue( int a, int b) {     int s;     s = a+b;     return s;     }     }  class Child extends Parent {  }  Which methods can be added into class Child?()   

    • A、 int addValue( int a, int b ){// do something...}
    • B、 public void addValue (){// do something...}
    • C、 public int addValue( int a ){// do something...}
    • D、 public int addValue( int a, int b )throws MyException {//do something...}

    正确答案:B,C

  • 第19题:

    单选题
    In the 1950s, classroom violence ______.
    A

    was something unheard of

    B

    was by no means a rare occurrence

    C

    attracted a lot of public attention

    D

    began to appear in analysts’ data


    正确答案: D
    解析:
    细节题。第五段末句指出“Data show that Americans are struggling with problems unheard of in the 1950s such as classroom violence and a high rate of births to unmarried mothers.”据此,可以判定A项为答案。

  • 第20题:

    单选题
    “It dawned on me” probably means “_____”.
    A

    I began to understand it

    B

    it cheered me up

    C

    I knew it grew light

    D

    it began to get dark


    正确答案: D
    解析:
    cheer up意为“欢呼”。grow light意为“变明亮”。get dark意为“黑暗”。均不符合题意。由后文可知,是作者错了,是作者自己的窗户脏了。故选项A“我开始明白了”符合题意。

  • 第21题:

    单选题
    I felt somewhat disappointed and was about to leave, _____ something occurred which attracted my attention.
    A

    unless

    B

    when

    C

    until

    D

    while


    正确答案: D
    解析:
    句意:正当我感到有些沮丧准备离开时,发生的一件事吸引了我的注意力。when引导时间状语从句。

  • 第22题:

    单选题
    You want to create a pie-style chart using the Chart Wizard. What must be you do to determine the fields available for use in this chart? ()
    A

    Select the block that contains the data to appear in the pie chart. 

    B

    Select the table that contains the data to appear in the pie chart. 

    C

    Select the view that contains the data to appear in the pie chart. 

    D

    Nothing. The wizard will automatically create the pie chart based on the highlighted data.


    正确答案: B
    解析: 暂无解析

  • 第23题:

    单选题
    interface Data { public void load(); }  abstract class Info { public abstract void load(); }  Which class correctly uses the Data interface and Info class?()
    A

     public class Employee extends Info implements Data { public void load() { /*do something*/ } }

    B

     public class Employee implements Info extends Data { public void load() { /*do something*/ } }

    C

     public class Employee extends Info implements Data { public void load() { /*do something */ } public void Info.load() { /*do something*/ } }

    D

     public class Employee implements Info extends Data { public void Data.load() { /*dsomething */ } public void load() { /*do something */ } }

    E

     public class Employee implements Info extends Data { public void load() { /*do something */ } public void Info.load(){ /*do something*/ } }

    F

     public class Employee extends Info implements Data{ public void Data.load() { /*do something*/ } public void Info.load() { /*do something*/ } }


    正确答案: B
    解析: 暂无解析

  • 第24题:

    单选题
    The underlined word “assemble” in the second paragraph probably means ______.
    A

    to bring a group of people together in one place for a particular purpose

    B

    to make a public or official statement, especially about a plan, decision

    C

    to produce many copies of a book, magazine, or newspaper

    D

    not to take part in an event or not to buy or use something as a protest


    正确答案: A
    解析:
    词义题。从文章的第二段第二句话“In 1848 the leaders of this movement (some of whom were antislavery activities as well) assembled the first Women’s Rights Convention,demanding equality. ”可知,由于美国的妇女没有多少权利可言,她们准备发动运动来请愿。这里的assemble的意思就是“为了一定的目的而聚集在一起”。所以本题的正确答案为A。