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

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

不属于JSP的out对象的方法的是()。

  • A、getAttribute()
  • B、print()
  • C、println()
  • D、close()

参考答案

更多 “不属于JSP的out对象的方法的是()。A、getAttribute()B、print()C、println()D、close()” 相关考题
考题 不属于JSP的out对象的方法的是( )。A.getAttribute ()B.print()C.println()D.close()

考题 下面哪项不是out对象的方法() A、invalidate()B、newLine()C、flush()D、close()

考题 在JSP页面中的输出语句是()。A、System.out.print()B、Println()C、Out.println()D、Out.printValues()

考题 classOutput{publicstaticvoidmain(String[]args){inti=4;System.out.print(3+i+);System.out.print(i+4+6);System.out.println(i+7);}}结果为:() A.78611B.744647C.348611D.348647E.3444611F.3444647

考题 classFlow{publicstaticvoidmain(String[]args){try{System.out.print(before);doRiskyThing();System.out.print(after);}catch(Exceptionfe){System.out.print(catch);}System.out.println(done);}publicstaticvoiddoRiskyThing()throwsException{//thiscodereturnsunlessitthrowsanException}}可能会产生下面哪两项结果?()A.beforeB.beforecatchC.beforeafterdoneD.beforecatchdone

考题 classOutput{publicstaticvoidmain(String[]args){inti=4;System.out.print(3+i+);System.out.print(i+4+6);System.out.println(i+7);}}结果为() A.78611B.744647C.348611D.348647

考题 publicclassTestApp{publicstaticvoidmain(String[]args){try{inti=0;intj=1/i;System.out.println(1”);}catch(Exceptione){System.out.print(3”);}finally{System.out.print(4”);}}}上述程序运行后的输出是哪项?() A.4B.34C.43D.14

考题 从HTTP请求中,获得请求参数,应该调用() A.request对象的getAttribute()方法B.request对象的getParameter()方法C.session对象的getAttribute()方法D.session对象的getParameter()方法

考题 现有:classOutput{publicstaticvoidmain(String[]args){inti=5:System.out.print(4+i+);System.out.print(i+5+7);System.out.println(i+8);}}结果为:() A.99722B.955758C.4510758D.459722

考题 classParent{Stringone,two; classParent{Stringone,two;publicParent(Stringa,Stringb){one=a;two=b;}publicvoidprint(){System.out.println(one);}}publicclassChildextendsParent{publicChild(Stringa,Stringb){super(a,b);}publicvoidprint(){System.out.println(one+to+two);}publicstaticvoidmain(Stringarg[]){Parentp=newParent(south,north);Parentt=newChild(east,west);p.print();t.print();}}Whichofthefollowingiscorrect?()

考题 编译和执行以下代码,输出结果是( )。 int i=1; switch (i) { case 0: System.out.print("zero,"); break; case 1: System.out.print("one,"); case 2: System.out.print("two,"); default: System.out.println("default"); }A.one,B.one,two,C.one,two,defaultD.default

考题 下列代码的执行结果是( )。 public class test3{ public static void main (string args[]){ System.out.print(100%3); System.out.print(","); System.out.println( 100%3.0); } }A.1,1B.1,1.0C.1.0,1D.1.0,1.0

考题 下列程序段的输出结果是()。voiddoublearithmaticoperator(){inta=10,b=4,c=20,d=6;System.out.print(a+b*c+d);System.out.print(",");System.out.print(a+c%b);System.out.print(",");System.out.println(a++*b+c*-d);}A.860,10,360B.96,10,140C.96,13,140D.860,13,360

考题 从HTTP请求中,获得请求参数,应该调用()A、request对象的getAttribute()方法B、request对象的getParameter()方法C、session对象的getAttribute()方法D、session对象的getParameter()方法

考题 对如下JSP 代码说法正确的是()。 %  Sring str = ”Hello.JBIT!”;  session.setAttribute(“msg’,str);  String getStr = session.getAttribute(“msg”);   out.println(getStr);  % A、 运行成功,页面上输出Hello.JBIT; B、 运行成功,页面上输出msg; C、 代码行session.setAttribute(“msg’,str);有错误,无法运行 D、 代码行String getStr = session.getAttribute(“msg”);有错误,无法运行

考题 在JSP中的Java脚本中输出数据时可以使用()对象的print()方法。A、applicationB、sessionC、pageD、out

考题 在J2EE中,在aa.jsp中有行代码:  %%  request.setAttribute("Co.","jb-aptech");  %  在bb.jsp中有行代码: %  out.println((String)request.getAttribute("Co."));  %    %   为了使得在bb.jsp中的如上代码可以显示“jb-aptech”,可以使用()方法。A、在aa.jsp中使用form method=post action="bb.jsp"把请求提交到bb.jsp B、在aa.jsp中使用jsp:forward file="bb.jsp" /把页面重定向到bb.jsp  C、在aa.jsp中使用%  response.sendRedirect("bb.jsp");  %把页面重定向到bb.jsp D、在aa.jsp中使用%@ include file="bb.jsp" %包含页面bb.jsp  E、在aa.jsp中使用% config.getServletContext().getRequestDispatcher("/bb.jsp").forward(request,response); %把页面重定向到bb.jsp

考题 Given the following code:     if (x0) {  System.out.println("first");  }     else if (x-3) {  System.out.println("second");  }     else {  System.out.println("third");  }  Which range of x value would print the string "second"?()    A、 x  0B、 x  -3C、 x = -3D、 x = 0  x  -3

考题 System.out.println()输出后是不加换行的,而System.out.print()输出后是加换行的。

考题 从HTTP请求中,获得请求参数,应该调用哪个方法?()A、调用HttpServletRequest对象的getAttribute()方法B、调用ServletContext对象的getAttribute()方法C、调用HttpServletRequest对象的getParameter()方法

考题 以下()是错误的JSP页面的表达方式。A、〈%! int a; %〉B、〈%= "Hello" %〉C、〈%= "world"; %〉D、〈% out.println("jsp"); %〉

考题 提供println()方法和print()方法的类是()A、Print StreamB、SystemC、Input StreamD、DataOutput Stream

考题 判断题System.out.println()输出后是不加换行的,而System.out.print()输出后是加换行的。A 对B 错

考题 单选题在JSP页面中的输出语句是()。A System.out.print()B Println()C Out.println()D Out.printValues()

考题 单选题以下()是错误的JSP页面的表达方式。A 〈%! int a; %〉B 〈%= Hello %〉C 〈%= world; %〉D 〈% out.println(jsp); %〉

考题 单选题不属于JSP的out对象的方法的是()。A getAttribute()B print()C println()D close()

考题 单选题在JSP中的Java脚本中输出数据时可以使用()对象的print()方法。A applicationB sessionC pageD out