一起答
单选

数据库设计中,用E-R图来描述信息结构但不涉及信息在计算机中的表示,它属于数据库设计的(  )。

  • A.需求分析阶段 
  • B.逻辑设计阶段
  • C.概念设计阶段 
  • D.物理设计阶段
试题出自试卷《2014年全国计算机等级考试二级JAVA上机模拟试卷(3)》
参考答案
查看试卷详情
相关试题
  1. 本题的功能是监听键盘键的敲击,并显示在窗口中。

    import javax,.swing.*;

    importjava.awt.*; ,

    import java.awt.event.*;

    public class java3extends JFrame. extends KeyListener

    {

    private String linel=""line2=""

    private String line3=""

    private JTextArea textArea;

    public java3

    {

    super("java3");

    textArea=new JTextArea(10,15);

    textArea.setText("Press any key on the key-

    board…");

    textArea.setEnabled(false);

    addKeyListener(this);

    getContentPane.add(textArea);

    setSize(350,100);

    show;

    }

    public void keyPressed(KeyEvent e)

    {

    linel="Key pressed:"+e.getKeyText(e.

    getKeyCode);

    setLines2and3(e);

    }

    public void keyReleased(KeyEvent e)

    {

    linel="Key released:"+e.getKeyText(e.

    getKeyCode);

    setLines2and3(e):

    }

    public void keyTyped(KeyEvent e)

    {

    Linel="Key typed:"+e.getKeychar

    setLines2and3(e);

    }

    private void setLines2and3(KeyEvent e)

    {

    line2="This key is"+(e.isActionKey?""

    :"not")+"an action key";

    String temp=e.getKeyModifiersText(e.get-

    Modifiers);

    hne3="Modifier keys pressed:"+(temp.e-

    quals("")?"none":temp);

    textArea.setText(linel+"\n"+line2+"\n"

    +line3+"\n");

    }

    public static void main(String args[])

    {

    java3 app=new java3;

    addWindowListener(new Windowadapted

    {

    public void windowClosing(WindowEvent e)

    {

    System.exit(0);

    }

    });

    }

    }

  2. 本题是一个Applet,页面上有一个按钮“请单击”,单击该按钮后弹出一个对话框,对话框上有三个按钮“橙色”、“蓝色”和“红色”,单击其中任意一个按钮,则可以将对话框的背景色设置为按钮名称所对应的颜色。

    import java.awt.*;

    import java.awt.event.*;

    import javax.swing.*;

    public class java2 extends JApplet

    {

    private JFrame. framet;

          

    {

    frame=new JFrame;

    frame.setTitle("java2");

    frame.setSize(300,200);

    frame.getContentPane.add(new ButtonPanel

    );

    JButton PopButton=new JButton("请单击");

    getContentPane.add(PopButton);

    PopButtom addActionListener(new ActionListener;

    {

    public void actionPerformed(ActionEvent evt)

    {

    if(frame.isVisible)frame.setVisible(false);

    else       

    }

    });

    }

    }

    class ButtonPanel extends JPanel

    {

    private class ColorAction implements ActionLis-

    tener

    {

    private Color backgroundColor;

    public void actionPerformed(ActionEvent action-

    event)

    {

    setBackground(backgroundColor);

    repaint;

    }

    public ColorAction(Color color)

    {

    backgroundColor=color;

    }

    }

    public ButtonPanel

    {

    JButton jbutton=new JButton("橙色");

    JButton jbuttonl=new JButton("蓝色");

    JButton jbutton2=new JButton("红色");

    add(jbutton);

    add(jbuttonl);

    add(jbutton2);

    ColorAction coloraction=new ColorAction(Color.orange);

    ColorAction coloractionl=new ColorAction(Color.blue);

    ColorAction coloraetion2=new ColorAction(Color.red);

    ibutton.addActionListener(coloraction);

    ibuttonl.addActionListener(coloractionl);

    jbutton2.addActionListener(coloraction2);

    }

    }

  3. 用来导入已定义好的类或包的语句是(  )。

    • A.main 
    • B.import
    • C.public class
    • D.ClaSS
  4. 在下画线上补充代码。

    本题的功能是输出字符串"welcome!"和表达式"a/b=

    c",以及输出"\\do something"。

    Public class javal{

    Pubhc static void main(string[]args){

    System.out.println(    );

    System.out.println(    );

    System.out.println(    );

    }

    }

  5. 下列关于构造方法的叙述中,错误的是(  )。

    • A.Java语言规定构造方法名与类名必须相同
    • B.Java语言规定构造方法没有返回值,但不用void声明
    • C.Java语言规定构造方法不可以重载
    • D.Java语言规定构造方法只能通过new自动调用
  6. 下列能够正确创建线程的方法是(  )。

    Ⅰ.继承java.1ang.Thread类,并重写run方法

    Ⅱ.继承java.1ang.Runnable类,并重写start方法

    Ⅲ.实现java.1ang.Thread接口,并实现run方法

    IV.实现java.1ang.Runable接口,并实现run方法

    • A.I,Ⅲ
    • B.Ⅱ,IV
    • C.Ⅱ,Ⅲ
    • D.I,IV
  7. 下列有关数组的叙述中,错误的是(  )。

    • A.在同一个环境下,数组与内存变量可以同名,两者互不影响 
    • B.可以用一维数组的形式访问二维数组
    • C.在可以使用简单内存变量的地方都可以使用数组元素
    • D.一个数组中各元素的数据类型可以相同,也可以不同
  8. 在文件类提供的方法中,用于创建目录的方法是(  )。

    • A.mkdir 
    • B.mkdirs
    • C.list
    • D.listRoots
  9. 下列关于Java布尔类型的描述中,正确的是(  )。

    • A.一种基本的数据类型,它的类型名称为boolean
    • B.用int表示类型
    • C.其值可以赋给int类型的变量
    • D.有两个值,1代表真,0代表假
  10. 数据库设计中,用E-R图来描述信息结构但不涉及信息在计算机中的表示,它属于数据库设计的(  )。

    • A.需求分析阶段 
    • B.逻辑设计阶段
    • C.概念设计阶段 
    • D.物理设计阶段