下面()不包含在MySQL数据库系统中。 A.数据库管理系统,即DBMS B.密钥管

题型:单项选择题

问题:

下面()不包含在MySQL数据库系统中。

A.数据库管理系统,即DBMS

B.密钥管理系统

C.关系型数据库管理系统,即RDBMS

D.开放源码数据库

考点:信息技术与信息安全信息技术与信息安全题库
题型:单项选择题

中水管道外壁应涂( )标志。

A.深红色
B.天蓝色
C.浅绿色
D.黑色

题型:单项选择题

国际燃气网2010年7月22日讯:据最新资源评价,准噶尔盆地石油总资源量107亿吨,天然气总资源量2.5万亿立方米,探明储量不到三成。读“岩石圈物质循环略图”,完成各题。

小题1:关于岩石圈物质循环意义的叙述,不正确的是(    )

A.矿产资源的形成与岩石圈物质循环有关

B.岩石圈物质循环改变地表形态

C.岩石圈物质循环实现了物质交换和能量传输

D.岩石圈物质循环在自然界无关紧要小题2:与准噶尔盆地石油、天然气资源丰富有关的是(   )

A.A

B.B

C.C

D.D

题型:单项选择题

以下选项中可以作为C语言合法常旱的是

A.-80.

B.-080

C.-8e1.0

D.-80.0e

题型:单项选择题

论述关于Zr02的核化作用。

题型:单项选择题

本题是一个Applet,功能是用鼠标画不同颜色的图形。页面中有5个按钮“画红色图形”、“画绿色图形”、“画蓝色图形”、“橡皮”和“清除”,单击前三个按钮中的一个,按住鼠标左键或右键在而板中拖动,就能画出对应颜色的线条,单击“橡皮”按钮,按住鼠标左键或右键在面板中拖动就能将面板中的图形擦除掉,单击“清除”按钮,就能将面板中所有的图形清除掉。
import java.applet.*;
import java.awt.*;
import java.awt.event.*;
public class java3 extends Applet implements ActionListener
int x=-1,y=-1,rubberNote=0,clearNote=0;
Color c=new Color(255,0,0);
int con=3;
Button b_red,b_blue,b_green,b_clear,b_quit;
public void init()

addMouseMotionListener(this);
b_red=new Button("画红色图形");
b_blue=new Button("画蓝色图形");
b_green=new Button("画绿色图形");
b_quit=new Button("橡皮");
b_clear=new Button("清除");
add(b_red);
add(b_green);
add(b_blue);
add(b_quit);
add(b_clear);
b_red.addActionListener(this);
b_green.addActionListener(this);
b_blue.addActionListener(this);
b_quit.addActionListener(this);
b_clear.addActionListener(this);

public void paint()
if(x!=-1&&y!=-1&&rubberNote==0&&clearNote==0)
g.setColor(c);
g.fillOval(x,y,con,con);

else if(rubberNote==1&&clearNote==0)
g.clearRect(x,y,10,10);

else if(clearNote==1&&rubberNote==0)
(g.clearRect(0,0,getSize().width,getSize().height);


public void mouseDragged(MouseEvent e)
x=(int)e.getX();y=(int)e.getY();repaint();

public void mouseMoved(MouseEvent e)
public void update(Graphics g)
paint(g);

public void actionPerformed(Event e)
if(e.getSource()==b_red)
rubberNote=0;clearNote=0;c=new Color(255,0,0);

else if(e.getSource()==b_green)
rubberNote=0;clearNote=0;c=new Color(0,255,0);

else if(e.getSource()==b blue)
rubberNote=0;clearNote=0;c=new Color(0,0,255);

if(e.getSource()==b_quit)
rubberNote=1;clearNote=0;

if(e.getSource()==b_clear)
clearNote=1;rubberNote=0;repaint();


更多题库