19.A.forgetB.forgetsC.goD.goes

题目

19.

A.forget

B.forgets

C.go

D.goes


相似考题

2.阅读下列说明,根据网页显示的效果图,回答问题1至问题3。【说明】某商务网站用ASP实现了一个手机性能评价投票网页,主页文件名为“index. asp”,用IE打开该网页后的效果如图4-9所示。程序中使用的Access数据表结构如表 4-1所示。[index.asp 文档的内容]<html><head><title>投票程序</title><%Set cnn=Server. CreateObject("ADODB.Connection")Set rec=Server. CreateObject("ADODB.Recordset")cnn. ConnectionString="Driver={Microsoft Access Driver (*.mdb)};Uid=;Pwd=;DBQ=" & Server.MapPath("data.mdb")cnn. (1)dim rsqlrsql = (2)ten.open rsql,cnn,3,3rec.movefirst()%></head><body><form. name="piao" action="results.asp" method="post" ><table width="237" border="l" align="center"><tr><td valign=top width="216"><p align="center"> (3)</td></tr><tr><td valign=top width="216"><font size="2">(4)<%dim numnum= 0do while not rec.eofnum=num+l%><Input name='rd' type='radio' value='<%num%>' id='<%=num%>'<%if num=l then response.write "checked"%>><%=rec.fields("content")%><%rec. (5)loop%></font></td></tr><tr><td valign=top width="216"><input name="submit00" type="submit" id="submit00"value="投票"></rd></tr></table></body></html>从以下备选答案中为程序中(1)~(5)处空缺内容选择正确答案,填入答题纸对应的解答栏内。(1)A.CreatObject()B.connect0 C.go()D.open()(2)A."select*from data" B."select*fromvote"C.select*from data D.select*from vote(3)A.<pic border="0" src="mobile.bmp">B.<pictureborder="0"src="mobile.bmp">C.<IMG nClick=over(this)title=放大border="0',src="mobile.bmp">D.<imageborder="O" src="mobile.bmp">(4)A.<p align="left">您认为这款手机的性能如何?</p>B.<p align="center">您认为这款手机的性能如何?</p>C.<talign="left">您认为这款手机的性能如何?</p>D.<talign="center">您认为这款手机的性能如何?<t>(5)A.6r3t()B.next()C.movenext()D.nextrecord()

4.阅读下列网站建设的技术说明,结合网页显示的效果图,根据要求回答问题1~问题3。【说明】某出版社用ASP实现了一个图书性能评价投票网页,主页文件名为“index.asp”,用IE打开该网页后的效果如图8-11所示。程序中使用的Access数据表结构见表8-9。【index.asp文档的内容】<html><head><title>投票页面</title><%Set cnn=Server.CreateObject("ADODB.Connection")Set rec=Server.CerateObject("ADODB.Recordset")cnn. ConnectionString="Driver={Microsoft Access Driver(*.mdb)};Uid=;Pwd=;DBQ="&Server.MapPath("data.mdb")cnn. (1)dim rsq1nq1= (2)rec.open rsq1,cnn,3,3rec. movefirst()%<></head><body><form. name="piao"action="results.asp"method="post"><table width="237" border=-"1" align="center"><tr><td valign=top width="216”><p align="center"> (3)</td></tr><tr><td valign=top width="216"><font size="2">(4)<% dim numnum=0do while not rec. eofnum=num+1%><%rec. (5)loop%></font></td></tr><tr><td valign=top width="216"><input name="submit00" type="submit" id="submit00" value=“投 票”><input name="submit01" type="submit" id="submit00" value=“结 果”></td></tr></table></body></html>从以下备选答案中为程序中(1)~(5)处空缺内容选择正确答案。(1)A.CreatObject() B.connect() C.go() D.open()(2)A."select*from data" B."Select*from vote" C.select*from daha D.Select* from vote(3)A.<pic border=-"0" stc="wlgcs.bmp"> B.<picture border="0" src="wlgcs. bmp"> C.<IMG nClick=over(this) title=放大 border=-"0" src="wlgcs.bmp"> D.<image border="0" src="wlgcs. bmp">(4)A.<p align="left">您认为《网络工程师考试考前冲刺预测卷及考点解析》对您的帮助有多大?</p> B.<p aliign="center">您认为《网络工程师考试考前冲刺预测卷及考点解析》对您的帮助有多大?</p> C.<t align="left">您认为《网络工程师考试考前冲刺预测卷及考点解析》对您的帮助有多大?</t>D.<t align="center">您认为《网络工程师考试考前冲刺预测卷及考点解析》对您的帮助有多大?</t>(5)A.first() B.next() C.movenext() D.nextrecord()

更多“19.A.forget B.forgets C.go D.goes ”相关问题
  • 第1题:

    1.publicclassGoTest{

    2.publicstaticvoidmain(String[]args){

    3.Sentea=newSente();a.go();

    4.Gobanb=newGoban();b.go();

    5.Stonec=newStone();c.go();

    6.}

    7.}

    8.

    9.classSenteimplementsGo{

    10.publicvoidgo(){System.out.println(”goinSente.”);}

    11.}

    12.

    13.classGobanextendsSente{

    14.publicvoidgo(){System.out.println(”goinGoban”);}

    15.}

    16.

    17.classStoneextendsGobanimplementsGo{}

    18.

    19.interfaceGo{publicvoidgo();}

    Whatistheresult?()


    参考答案:C

  • 第2题:

    1. public class GoTest {  2. public static void main(String[] args) {  3. Sente a = new Sente(); a.go();  4. Goban b = new Goban(); b.go();  5. Stone c = new Stone(); c.go();  6. }  7. } 8.  9. class Sente implements Go {  10. public void go() { System.out.println(”go in Sente.”); }  11. }  12.  13. class Goban extends Sente {  14. public void go() { System.out.println(”go in Goban”); }  15. }  16.  17. class Stone extends Goban implements Go { }  18.  19. interface Go { public void go(); }  What is the result?() 

    • A、 go in Goban     go in Sente go in Sente
    • B、 go in Sente      go in Sente go in Goban
    • C、 go in Sente     go in Goban go in Goban
    • D、 go in Goban    go in Goban go in Sente
    • E、 Compilation fails because of an error in line 17.

    正确答案:C

  • 第3题:

    一John and l will celebrate our fortieth wedding anniversary next month.
    一Oh,(  )。

    A.well done!
    B.cheer up!
    C.go on!
    D.congratulations l

    答案:D
    解析: