网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
以下4组表达式中结果是逻辑值.T.的是
A.'this'$'this is a string’
B.'this'$'THIS IS A STRING'
C.'this is a string'$'this'
D.'this'>'this is a string'
参考答案
更多 “ 以下4组表达式中结果是逻辑值.T.的是A.'this'$'this is a string’B.'this'$'THIS IS A STRING'C.'this is a string'$'this'D.'this'>'this is a string' ” 相关考题
考题
下面的哪些程序段可能导致错误? ( ) Ⅰ: String s = "Gone with the wind"; String t = "good "; String k = s + t; Ⅱ: String s = "Gone with the wind"; String t; t = s[3] + "one"; Ⅲ: String s = "Gone with the wind"; String standard = s.toUpperCase(); Ⅳ: String s = "home directory"; String t = s-"directory":A.Ⅱ、ⅢB.Ⅱ、ⅣC.Ⅰ、ⅣD.Ⅲ、Ⅳ
考题
( 8 )阅读下列程序段public class OperatorsAndExpressions {String conditionalExpression ( int score ) {String result;//如果 score 超过 60 分,则结果是 passed, 否则是 doesn't passresult= ( score=60 ) ?"passed":"doesn't pass" :System.out.println ( result ) ;return result;}public static void main ( String args[] ){OperatorsAndExpressions perAndExp=new OperatorsAndExpressionsQ;//条件表达式OperAndExp. conditionalExpression ( 65 ) ;}}其执行结果是 【 8 】
考题
阅读下面程序public class OperatorsAndExpressions {String conditionalExpression(int score) {String result;//如果score超过60分,则结果是passed,否则是doesn't passresult=(score>=60)?"passed":"doesn't pass":System.out.println(result);return result;}public static void main(String args[]) {OperatorsAndExpressions perAndExp=new OperatorsAndExpressions();//条件表达式OperAndExp.conditionalExpression(65);}}程序的执行结果是______。
考题
以下是替换字符串中制定字符的函数过程: Function sReplace (SearchLine As String,SearchFor As String,Replace With As String) As String Dim vSearchLine As String,found As Integer found=InStr (SearchLine,SearchFor):vSearchLine=SearchLine If found <>0 Then vSearchLine=" " If found>1 Then vSearchLine=Left (SearchLine,found -1) vSearchLine=vSearchLine+ReplaceWith End If If(表达式)<Len(SearchLine)Then vSearchLine=vSearchLine+Rights (SearchLine,Len (SearchLine) ―found―Len(SearchFor)+1) End If End If sReplace=vSeachLine End Function过程中的“表达式”应为( )。A.foundB.found-1C.found+Len(SearchFor)D.found+Len(SearchFor)-1
考题
以下四组表达式中,结果是逻辑值.T.的是______。A.'this'$'this is a string'B.'this'$'THIS IS A STRING'C.'this is a string'$'this'D.'this'>'this is a string'
考题
阅读下面程序 public class OperatorsAndExpressions { void equalsMethodl() { String s1=new String("how are you"); String s2=new String("how are you"); System.out.println(s1==s2); } public static void main(String args[]) { OperatorsAndExpressions perAndExp=new OperatorsAndExpressions(); //用于复合类型数据的“==”运算符 OperAndExp.equalsMethodl(); } } 程序运行的结果是A. ==B.trueC.falseD.equal
考题
下列程序的执行结果是 public class Testff{ public static void main(String args[]){ String sl=new String("I am boy"); String s2=new String("I am boy"); System.out.println(sl==s2); } }A.真B.假C.I am boyD.都不正确
考题
阅读下面程序 public class OperatorsAndExpressions { void equalsMethodl(){ String s1=new String("how are you"); String s2=new String("how are you"); System.out.println(s1==s2); } public static void main(String args[]){ OperatorsAndExpressions perAndExp=new OperatorsAndExpressions(); OperAndExp.equalsMethod1(); } } 程序运行结果是( )。A. ==B.trueC.假D.equal
考题
以下4组表达式中结果是逻辑值.T.的是_________。A.'this'$'this is a string'B.'this'$'THIS IS A STRING'C.'this is a string'S'this'D.'this'>'this is a string'
考题
以下SQL 99语句描述的是(59)。CREATE TYPE Employee(name String,ssn integer);CREATE TYPE ManagerUNDER Employee(degree String,dept String);A.关联关系B.嵌套关系C.继承类型D.聚集关系
考题
以下SQL99语句描述的是(26)。 CREATETYPE Employee( Name String, ssn integer); CREATE TYPE Manager UNDER Employee( Degree String, Dept String);A.关联关系B.嵌套关系C.继承类型D.聚集关系
考题
以下( )表达式是不合法的。A.String x="Sky";int y=5;x + =y:B.String x="Sky":int y=5:if(x==y){}C.String x="Sky":int y=5:x=x+y:D.String x=null:int y=(x!=null) (x.length( )>0)?x.length:0
考题
表达式 Writeln(‘This is ‘#39’xxx#39string’)的结果是:( )。A.This is xxx sstringB.this is ‘xxx#39stringC.This is ‘’’xxx’stringD.This is ‘xxx’string
考题
下列选项哪些是正确的JSP表达式语法格式()。A、%string name="YXQ"%=string name="您好"%String name="YXQ"% B、%=String name="您好"% C、%="您好";% D、%="YXQ"%
考题
执行以下代码,输出结果的结果是? () public class Test{ public String[] ss = new String[5]; public static void main(String[] args){ System.out.println(ss[1]); } } A、 nullB、 -1C、 编译时出错D、 运行时报错
考题
11. String test = “Test A. Test B. Test C.”; 12. // insert code here 13. String[] result = test.split(regex); Which regular expression inserted at line 12 will correctly split test into “Test A,” “Test B,” and “Test C”?()A、 String regex = “”;B、 String regex = “ “;C、 String regex = “.*“.D、 String regex = “//s”E、 String regex = “//.//s*”;F、 String regex = “//w[ /.] +“;
考题
单选题下列选项哪些是正确的JSP表达式语法格式()。A
%string name="YXQ"%=string name="您好"%String name=YXQ% B
%=String name=您好% C
%=您好;% D
%=YXQ%
考题
单选题预测以下代码片段的输出结果:() var str ; alert(typeof str);A
. string ;B
. undefined;C
. object ;D
. String;
考题
单选题11. String test = “Test A. Test B. Test C.”; 12. // insert code here 13. String[] result = test.split(regex); Which regular expression inserted at line 12 will correctly split test into “Test A,” “Test B,” and “Test C”?()A
String regex = “”;B
String regex = “ “;C
String regex = “.*“.D
String regex = “//s”E
String regex = “//.//s*”;F
String regex = “//w[ /.] +“;
考题
单选题执行以下代码,输出结果的结果是? () public class Test{ public String[] ss = new String[5]; public static void main(String[] args){ System.out.println(ss[1]); } }A
nullB
-1C
编译时出错D
运行时报错
热门标签
最新试卷