35.String #name="Jane Doe";36.int$age=24;37.Double_height=123.5;38.double~temp=37.5;Which two are true?()
A、Line 35 will not compile.
B、Line 36 will not compile.
C、Line 37 will not compile.
D、Line 38 will not compile.
A、Line 35 will not compile.
B、Line 36 will not compile.
C、Line 37 will not compile.
D、Line 38 will not compile.
A、String getParameter(String name) B、String[] getParameter(String name) C、String getParameterValuses(String name) D、String[] getParameterValues(String name)
A、session.setAtrribute(String name,Object obj) B、session.getAtrribute(String) C、session.setValues(String name,Object obj) D、session.getValues(String name)
A、 put(String name. Object value) B、 set(String name. Object value) C、 setAttribute(String name. Object value) D、 putAttribute(String name. Object value) E、 addAttribute(String name. Object value)
A、A.Account (String name)() B、B.Account (String name) C、C.Account (name)() D、D.NewAccount (String name)()
A、String[] name =,“zhang”,”wang”,”li”- B、String*3+ names=,“zhang”,”wang”,”li”- C、String names[] =new String[3] names*0+=”wang” D、names*1+=”wang” E、names*2+=”li” F、以上皆正确
A、 String[]names={"zhang", "wang", "li"); B、 String names[] =new String [3];names [0] ="zhang"; names [1] ="wang"; names [2] ="li"; C、 String[3] names={"zhang", "wang", "li"}; D、 以上皆正确
A、A. String name= File.getParentName(“file.txt”); B、B. String name= (new File(“file.txt”)).getParent(); C、C. String name = (new File(“file.txt”)).getParentName(); D、D. String name= (new File(“file.txt”)).getParentFile(); E、E. Directory dir=(new File (“file.txt”)).getParentDir(); String name= dir.getName();