网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

28. —Is Jack in the library?

—Maybe.l saw him _________'out with some books just now.

A.going

B.go

C.to go

D.went


参考答案

更多 “ 28. —Is Jack in the library?—Maybe.l saw him _________'out with some books just now.A.goingB.goC.to goD.went ” 相关考题
考题 在Mac OS X中正确安装的字体可以出现在下面所有的目录中,除了()之外。 A./系统/库/字体(/system/library/fonts)B./库/字体(/library/fonts)C./用户/库/字体(/user/library/fonts)D./应用程序/库/字体(/application/library/fonts)

考题 ()you()Jane last month? B: No, I(). A、*/saw/didn’tB、Did/see/didn’tC、Did/saw/didn’tD、id/see/did

考题 intx=12;26.while(x10){27.x--;28.}29.System.out.print(x);What is the result?() A.0B.10C.12D.Line29willneverbereached.

考题 public static void main(String[]args){String str=null;if(str==null){System.out.println(null);}else(str.length()==0){System.out.println(zero);}else{System.out.println(some);}}What is the result?()A.nullB.zeroC.someD.Compilationfails.E.Anexceptionisthrownatruntime.

考题 publicstaticvoidmain(String[]args){Stringstr=null?;if(str==null){System.out.println(”null”);}else(str.length()==0){System.out.println(”zero”);}else{System.out.println(”some”);}}Whatistheresult?() A.nullB.zeroC.someD.Compilationfails.E.Anexceptionisthrownatruntime.

考题 If I had come here yesterday, I _______him. A. would have seenB. would seeC. have seenD. saw

考题 以下程序调试结果为:public class Test {int m=5;public void some(int x) {m=x;}public static void main(String args []) {new Demo().some(7);}}class Demo extends Test {int m=8;public void some(int x) {super.some(x);System.out.println(m);}}A.5B.8C.7D.无任何输出E.编译错误

考题 30、如下程序的输出结果是 int main() { char books[][20]={"English","Math","Physical"}; int i,j; for(i=0;i<3;i++) { for(j=0;books[i][j]!=0;j++){ if(books[i][0]<books[i][j]) books[i][0]= books[i][j]; } } printf("%c",books[0][0]); return 0; }A.EB.sC.nD.h

考题 给定JSP程序源码如下,可以在下划线处插入并且能够正确输出WELCOME,JACK 的语句是()。A.nameB.<%=name%>C.out.println(name);D.<% out.println(name); %>

考题 如果要把一个用户名jack保存在session对象里,则下列语句正确的是() 。A.session.setAttribute(name,jack);B.session.setAttribute("name","jack");C.session.setAttribute("jack",name);D.session.setAttribute("jack","name");