单选题在HTML中,用()标签来强制显示Applet。Aname,height,widthBcodebase,height,widthCcode,nameDcode,height,width

单选题
在HTML中,用()标签来强制显示Applet。
A

name,height,width

B

codebase,height,width

C

code,name

D

code,height,width


参考解析

解析: 暂无解析

相关考题:

【说明】下面是一个Applet程序,程序的功能是在显示面板上输出字符串。当html页面被其他窗口遮挡后再次显示时,请给出输出结果。import java.awt.*;import java. (1). *;public class MyApplet (2) Applet {public void (3) (Graphics g) {g.drawString(tip,20,40);tip ="I am Java Applet";}public void init() {tip ="welcome"; }private (4) tip;}<html><head><title> A Simple Applet </title></head><body><applet code="MyApplet.class" width=800 height=400></applet></body></html>网页输出 (5)

要向Applet传递参数,应该在下列drawing.html文件的下划线处填入的选项是……applet code=DrawImage.class width=100 height=100/applet……A.param image,“flower.gif”B.param image value= flower .gifC.param name= image value=“flower .gif”D.param name=“image”value=“flower.gif”

向 Applet 传递参数正确的描述是A ) param nace=age, value=20B ) applet code=Try.class width=100, height=100, age=33C ) name=age, value=20D ) applet code=Try.class name=age,value=20

( 23 )为了将 HelloApplet( 主类名为 HelloApplet.class) 嵌入在 greeting.html 文件中,应该在下列 greeting.html 文件的横线处填入的代码是 HTML HEADTITLE Greetings /TITLE/HEADBODYAPPLET ______/APPLET/BODY/HTMLA) HelloApplet.classB ) CODE= ” HelloApplet.class ”C ) CODE= ” HelloApplet.class ” WIDTH=150 HEIGHT=25D ) CODE= ” HelloApplet.class ” WIDTH=10 HEIGHT=10

向Applet传递参数的正确描述是( )。A.param name=age,value=20B.applet code=Try.class width=100,height=100, age=33C.name=age,value=20D.applet code=Try.class name=age,value=20

YourwebpageincludesaJavaSEv1.5appletwiththefollowingdeclaration:11.objectclassid=’clsid:CAFEEFAC-0015-0000-0000-ABCDEFFEDCBA’12.width=’200’height=’200’13.paramname=’code’value=’Applet.class’/14./objectWhichHTTPmethodisusedtoretrievetheappletcode?()A.GETB.PUTC.POSTD.RETRIEVE

下面______正确示范了传递—个参数给applet。A.<applet code=Test.class age=33 width=100 height=100>B.<param name=age valueC.<applet Test 33>D.<aoolet code=Test.class name=age value=33 width=100 height=100>

向Applet传递参数的正确描述是A.B. 向Applet传递参数的正确描述是A.<param name=age.value=20>B.<applet code=Try.class width=100,height=100,age=33>C.<name=age.value=20>D.<applet code=Try.class name=age,value=20>

下面哪个选项正确示例了传递一个参数给applet? ( )A.<applet code=Test.class age=33 width=100 heigh=100>B.<param name=age value=33>C.<applet code=Test.class name-age value=33 width=100 height=100>D.<applet Test 33>

下面是一个Applet程序,其功能是用一组坐标点绘制一个多边形,并通过沿坐标的垂直方向移动,把它移到窗口的下半部分,然后填充它。请改正程序中的错误(有下划线的语句),使程序能输出正确的结果。注意:不改动程序的结构,不得增行或删行。源程序文件清单如下:import java.awt.*;import java.applet.*;/*<applet code="ex11_3.class"width=800 height=400></applet>*/public class ex11_3 extends Applet{int[] x = {15,50,100,160,120,190 };int[] y = {15,100,30, 15, 80, 50 };public void init(){setBackground (Color. lightGray);}public void paint (Graphics g){int[] y2 = new int[6];g. setColor (Color. red);Rectangle rect = getBounds();g.drawPolygon (x, y2,6);for(int i=0; i<6; i++)y2[i] = y[i] + (rect.height / 2);g. fillPolygon (x, y, 6);}}ex11_3. html<HTML><HEAD><TITLE>ex11_3</TITLE></HEAD><BODY><applet code="ex11_3.class" width=800 height=400 ></applet></BODY></HTML>

用HTML文件显示APPLET时,下面属于必不可少的属性的是A.NAME、HEIGHT和WIDTHB.CODE和NAMEC.CODEBASE、HEIGHT和WIDTHD.CODE、HEIGHT和WIDTH

用HTML文件显示APPLET时,下面属于必不可少的属性的是( )。A. NAME, HEIGHT, WIDTHB. CODE 和 NAMEC. CODEBASE, HEIGHT 和 WIDTHD. CODE, HEIGHT 和 WIDTH

为了将HelloApplet(主类名为HelloApplet.class)嵌入在greeting.html文件中,应该在下列greeting.html文件的横线处填入的代码是( )。A.(elloApplet.classB.CODE=”(elloApplet.class”C.CODE=”(elloApplet.class”WIDTH=150HEIGHT=25D.CODE=”(elloApplet.class”VSPACE=10HSPACE=10

为了将HelloApplet(主类名为HelloApplet.class)嵌入在greetmg.html文件中,应该在下列greeting.html文件的横线处填入的代码是( )。 <HTML> <HEAD> <TITLE>Greetings</TITLE> </HEAD> <BODY> <APPLET______"> </APPLET> </BODY> </HTML>A.HellOApplet.classB.CODE="HellOApplet.class"C.CODE="HelloApplet.class"WIDTH=150 HEIGHT=25D.CODE="HelloApplet.class"VSPACE=10HSPACE=10

用HTML文件显示Applet时,下面哪些属性是必不可少的? ( )A.name, height, widthB.code, nameC.codebase, height, widthD.code, height, width

要向Applet传递参数,应该在下列drawing.htm文件的下画线处填入的选项是( )。 …… applet code=DrawImage.class width=100 height=100 /applet ……A.param image,"flower.gif"B.param image value=flower.gifC.param name=image value="flower.gif"D.param name="image"value="flower.gif"

下列的属性中属于可选的一项是______。A.B.C.D. 下列<APPLET>的属性中属于可选的一项是______。A.<CODE>B.<CODEBASE>C.<HEIGHT>D.<WIDTH>

●试题七【说明】下面是一个Applet程序,其功能是将完整的图像显示于Applet的区块中,然后可以通过拖动鼠标让图像随着鼠标拖动的轨迹而移动。程序运行结果如图5所示。图5import java.applet.*;import java.awt.*;/*applet code="ex4_7.class" width=800 height=400 /applet*/public class ex4_7 extends Applet{private Image iImg;private int xPos,yPos;public void init(){xPos = yPos =(1);iImg = getImage((2)"ex4_7.jpg");}public void paint(Graphics g){g.drawImage(iImg,xPos,yPos,(3));}public boolean(4)(Event e,int x,int y){xPos = x;yPos = y;(5);return true;}}ex4_7.htmlHTMLHEADTITLEex4_7/TITLE/HEADBODYapplet code="ex4_7.class" width=800 height=400 /applet/BODY/HTML

下列代码包括一个Html文件和一个Applet类。在hello. html文件的横线处填入相应内容,把HelloApplet嵌入在hello. html中。hello. html文件内容:<HTML><HEAD><TITLE>Hello</TITLE></HEAD><BODY><APPLET CODE="【 】"WIDTH=150 HEIGHT=25></APPLET></BODY></HTML>HelloApplet. java文件内容:import java. awt. *;import java. applet. *;public class HelloApplet extends Applet{public void paint(Graphics g){g. drawString("Hello!" ,25,25);}}

在HTML的表格中,文本与表框的距离采用()属性来定义。A.widthB.height C.cellspacingD.cellpadding

设置表格的宽度为600的HTML代码是()A、table height=500 width=600 B、table vspace=600 hspace=500 C、table height=600 width=500 D、table vspacet=500 hspace=600

图像在网页显示的代码正确的是()A、<img src="Images/exit.gif"width="69"height="24"B、<imges src="exit.gif"width="69"height="24"C、<img url="Images/exit.gif"width="69"height="24"D、<imge src="Images/exit.gif"width="69"height="24"

在HTML中,用()标签来强制显示Applet。A、name,height,widthB、codebase,height,widthC、code,nameD、code,height,width

以下关于width属性和height属性语法格式正确的是()。A、width:15;B、width:60px;C、height:100%;D、height:100;

以下属于图像标签属性的是()A、srcB、widthC、colorD、height

HTML语言的applet标签属性中,哪个不是必选的()A、NAMEB、CODEC、WIDTHD、HEIGHT

单选题在HTML中,用()标签来强制显示Applet。Aname,height,widthBcodebase,height,widthCcode,nameDcode,height,width

单选题向Applet传递参数的正确描述是(  )。Aparam name=age value=20Bapplet code="Try.class" width=100 height=100 age=33Cname=age value=20Dapplet code="Try.class" name=age value=20