单选题 为了将HelloApplet(主类名为HelloApplet.class)嵌入在greeting.html文件中,应该在下列greeting.html文件的横线处填入的代码是______。
<HTNL>
<HEAD>
<TITEL>Greetings</TITEL>
</HEAD>
<BODY>
<APPLET______>
</APPLET>
<BODY>
</HTML>
【正确答案】 C
【答案解析】[解析] <APPLET>标记的一般格式为
<APPLET
[coDEBASR=codebaseURL]
CODE=appletFile
[ALT=alternateText]
[NAME=appletInstaneName]
WIDTH=pixels
HEIGHT=pixels
[ALIGN=alignment]
[ASPACE=pixels]
[HSPAEC=pixels]

[<PARAM NAME=appletParameter1 VALUE=value>]
[<PARAM NAME=appletParameter2 VALUE=value>]
[alternateHTML]
</APPLET>
本题的正确答案是C。