What does the man suggest they do
A. Take the subway.
B. See the show some other night.
C. Have dinner after the show.
D. Walk to the theater.
查看答案
在定义字段有效性规则中,在规则框中输入的表达式的类型是______。
下面是一个Applet程序,其功能是将完整的图像显示于Applet的区块中,然后可以通过拖动鼠标让图像随着鼠标拖动的轨迹而移动。请改正程序中的错误(有下划线的语句),使程序能输出正确的结果。 注意:不改动程序的结构,不得增行或删行。 源程序文件代码清单如下: import java.applet.*; import java.awt.*; /* <applet code="ex7_3.class" width=800 height=400> </applet> */ public class ex7_3 extends Applet private Image iImg; private int xPos,yPos; public void init( xPos=yPos=0; iImg=getImage("ex7_3.jpg"); public void paint(Graphics g) g.drawImage(iImg,xPos,yPos); public boolean mouseDrag(Event e,int x,int y) xPos=x; yPos=y; paint(); return true; ex7_3.html <HTML> <HEAD> <TITLE>ex7_3</TITLE> </HEAD> <BODY> <applet code="ex7_3.class" width=800 height=400> </applet> </BODY> </HTML>
多媒体数据一般都很庞大,为了减小多媒体数据所占存储空间,我们经常采用所谓的 ( )。
A. 存储缓冲技术
B. 压缩/解压技术
C. 微指令技术
D.超级流水指令流技术