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

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

Given:11.Stringtest="TestA.TestB.TestC.";12.//insertcodehere13.String[]result=test.split(regex);Whichregularexpression,insertedatline12,correctlysplitstestinto"TestA","TestB",and"TestC"?()

A.Stringregex="";

B.Stringregex="";

C.Stringregex=".*";

D.Stringregex="\\s";

E.Stringregex="\\.\\s*";


参考答案

更多 “ Given:11.Stringtest=TestA.TestB.TestC.;12.//insertcodehere13.String[]result=test.split(regex);Whichregularexpression,insertedatline12,correctlysplitstestintoTestA,TestB,andTestC?()A.Stringregex=;B.Stringregex=;C.Stringregex=.*;D.Stringregex=\\s;E.Stringregex=\\.\\s*; ” 相关考题
考题 用人的目的是quot;激活quot;人,而非quot;管住quot;quot;管死quot;人。要做到人尽其才,必须鼓励竞争,优胜劣汰。( ) 此题为判断题(对,错)。

考题 在PowerPoint 2003中,删除幻灯片的操作可以是()。A.单击常用工具栏中的quot粘贴quot按钮B.选择quot编辑quot菜单中的quot删除幻灯片quot选项C.选择quot编辑quot菜单中的quot清除quot选项D.单击常用工具栏中的quot复制quot按钮

考题 在PowerPoint 2003启动幻灯片放映的操作中,错误的是()。A.单击演示文稿窗口左下角的quot幻灯片放映quot视图按钮B.选择quot幻灯片放映quot菜单中的quot观看放映quot命令C.选择quot幻灯片放映quot菜单中的quot幻灯片放映quot命令D.按F5键

考题 Stringtest=TestA.TestB.TestC.”;12.//insertcodehere13.String[]result=test.split(regex);Whichregularexpressioninsertedatline12willcorrectlysplittestintoTestA,”TestB,”andTestC”?() A.Stringregex=“”;B.Stringregex=““;C.Stringregex=“.*“.D.Stringregex=“\\s”E.Stringregex=“\\.\\s*”;F.Stringregex=“\\w[\.]+“;

考题 Given:11.Stringtest=Thisisatest;12.String[]tokens=test.split(\s);13.System.out.println(tokens.length);Whatistheresult?() A.Anexceptionisthrownatruntime.B.1C.4D.Compilationfails.E.0

考题 Given:11.Stringtest=Thisisatest;12.String[]tokens=test.split(\s);13.System.out.println(tokens.length);Whatistheresult?() A.0B.1C.4D.Compilationfails.

考题 Given:11.Stringtest=a1b2c3;12.String[]tokens=test.split(\\d);13.for(Strings:tokens)System.out.print(s+);Whatistheresult?() A.abcB.123C.a1b2c3D.a1b2c3

考题 Given11.publicinterfaceStatus{12./*insertcodehere*/intMY_VALUE=10;13.}Whichthreearevalidonline12?() A.finalB.staticC.nativeD.publicE.private

考题 下面的方法,当参数值为2的时候返回值是多少 1. public int getValue(int i) { 2. int result = 0; 3. switch (i) { 4. case 1: 5. result = result + i; 6. case 2: 7. result = result + i * 2; 8. case 3: 9. result = result + i * 3; 10. } 11. return result; 12. }A.10B.8C.6D.4E.2F.0