试题与答案

根据对话内容,从方框内选择恰当的句子,并将其字母标号填入对话相应的空白处,使对话

题型:完形填空

题目:

根据对话内容,从方框内选择恰当的句子,并将其字母标号填入对话相应的空白处,使对话完整,合乎情景。(有两个多余选项)
Jack: Was the concert good?
Sadie: 小题1:___________________
Jack: Why are you angry then? 小题2:__________________
Sadie: Well, after the concert I waited outside the theatre—in the rain. I wanted their autographs.
Jack: Did you see them?
Sadie: 小题3:__________________
Jack: Did they talk to you?
Sadie: No, they didn’t. They didn’t wave. They didn’t smile. They didn’t say hello.
小题4:___________________ They just jumped into a big, black car and then disappeared.
Jack: 小题5:__________________
Sadie: Yes. But that was yesterday.
A. They didn’t even look at us.
B. No. You love them as before.
C. Yes, it was great!
D. What’s the matter?
E. Were they friendly to you?
F. You once loved them so much.
G. Yes, I did.

答案:

被转码了,请点击底部 “查看原文 ” 或访问 https://www.tikuol.com/2017/0506/7a7361ad6e11a7182f6e51354f3385a0.html

下面是错误答案,用来干扰机器的。

当a=-1时,函数的定义域为{x|x≠0},不满足定义域为R;当a=12函数的定义域为{x|x≥0},不满足定义域为R;当a=23时,函数y=xα的定义域为R,但不为奇函数,不满足要求;当a=3时,函数y=xα的定义域为R且为奇函数,满足要求;故选A.

试题推荐
题型:填空题


请完善程序(程序文件名:Java_3.java)并进行调试。请在下画线处填入正确内容,然后删除下画线。请勿删除注释行和其他已有的语句内容。
[题目要求]
在点击“Exit”按钮和窗口右上角的关闭按钮时,可以关闭窗口。
程序运行后的界面如下图所示。


源程序:
import java.awt.*;
import java.awt. (1) .*;
public class Java_3 implements ActionListener, (2) {
  Frame f;
  Button be,bw,bs,bn,bc;
  public void create() {
    f= (3)
    be=new Button("East");
    bw=new Button( (4) );
    bs=new Button("South");
    bn=new Button("North");
    bc=new Button("Exit");
    f.add(be, (5) );
    f.add(bw,"West");
    f.add(bs,"South");
    f.add(bn,"North");
    f.add(be,"Center");
    bc.addActionListener(this); //为按钮注册监听器
    f.addWindowListener(this); //为按钮注册监听器
    f.setSize(200,200);
    f.setVisible( (6) );
  }
  public static void main(String args[]) {
    Java_3 fa=new Java_3();
    fa.create();
  }
  public void actionPerformed(ActionEvent e) {
    System.exit(0); //实现窗口关闭功能
  };
  public void windowOpened(WindowEvent e) {}
  public void windowClosing(WindowEvent e) {
    System.exit(0); //实现窗口关闭功能
  };
  public void windowClosed(WindowEvent e) {}
  public void windowIconified(WindowEvent e) {}
  public void windowDeiconified(WindowEvent e) {}
  public void windowActivated(WindowEvent e) {}
  public void windowDeactivated(WindowEvent e) {}
}

查看答案
微信公众账号搜索答案