下面这行代码String[][]s=newString[10][];的正确陈述是()A、该行代码非法B、s是一10行10列的数组C、s是一包含10个一维数组的二维数组D、s中每个元素设为""

下面这行代码String[][]s=newString[10][];的正确陈述是()

  • A、该行代码非法
  • B、s是一10行10列的数组
  • C、s是一包含10个一维数组的二维数组
  • D、s中每个元素设为""

相关考题:

给出下面的代码,则以下( )选项返回true。 String s="hello"; String t="hello"; Char c[]={'h','e','l','l','o'};A.s. equals (t) ;B.t. equals (C);C.s==t;D.t==c;

执行下列代码后,哪个结论是正确的String[]s=newString[10];()A、s[10]为““;B、s[9]为null;C、s[0]为未定义D、s.length为10

执行下列代码后,哪个结论是正确的String[]s=newString[10];()A、[10]为"";B、[9]为null;C、[0]为未定义D、lengtH为10

publicclassX{publicstaticvoidmain(String[]args){strings=newstring(Hello”);modify(s);System.out.printIn(s);}publicstaticvoidmodify(Strings){s+=world!”;}}Whatistheresult?() A.Theprogramrunsandprints“Hello”B.Anerrorcausescompilationtofail.C.Theprogramrunsandprints“Helloworld!”D.Theprogramrunsbutabortswithanexception.

下列代码的执行结果是()。publicclasstest5{publicstaticvoidmain(Stringargs[]){Strings1=newString("hello");Strings2=newString("hello");System.out.prim(s1==s2);System.out.print(",");System.out.println(s1.equals(s2));}A.true,falseB.true,trueC.false,trueD.false,false

阅读下面代码 public class Test { String s="One World One Dream"; public static void main(String[] args) { System.out.println(s); } } 其运行的结果是A.argsB.World One DreamC.sD.编译时出错

下列语句输出结果为( )。 public class test { public static void main (String args[]) { Strings1=newString("HOW"); Strings2=newString("How"); System.out.println(!(s1.equals(s2))): } }A.假B.真C.0D.1

给出下面不完整的类代码,则横线处的语句应该为( )。 class Person { String name,department; int age; public Person (Strings) {name=s;} public Person (String s,intA.{name=s;age=a;} public Person (String n,String d,intA){ __________ department=d; } }A)Person (n,A);B.this (Person(n,A));C.this(n,A);D.this(name,age);

下面程序代码运行结果为( )。 import java.awt.*; public class Test { public static void main (String args[]) { String s1="a+b+c"; String s2="+"; int i=s1.lastIndexOf (s2); System.out.println(i); } }A.0B.1C.2D.3

下列语句输出结果为( )。 public class test { public static void main(String args[]) String s1 =newString("HOW"); String s2=newString("How"): System.out.pnntln(!(s1.equals(s2))); } }A.假B.真C.0D.1

String s = "Hello";s = s + " world!";这两行代码执行后,原始的String 对象中的内容到底变了没有?

下面的程序执行后,屏幕上显示的应是()。PubhcclassExam{publicstaticvoidmain(String[]args){charchar1[]={'t','e','s','t'};charchat2[]={'t','e','s','t','1'}Sbings1=newString(char1);Strings2=newString(char2,0,4);System.out.println(s1.equals(s2));}}A.真B.假C.testD.编译错误

下面的程序执行后,屏幕上显示的应是( )。 publicclassExam{ publicstaticvoidmain(String[]args){ charcharl[]={'t','e','s','t'}; charchar2[]={'t','e,'s','t','1'}; Strings1=newString(char1); Strings2=newString(char2,0,4); System.out.println(s1.equals(S2)); } }A.trueB.falseC.testD.编译错误

定义一个表示20个值为null的字符串数组,下面选项正确的是()。A、String[]aB、Stringa[]C、chara[20][]D、Stringa[]=newString[20]

下面的哪些程序片断可能导致错误() A、String s = "Gone with the wind";  String t = " good ";  String k = s + t;B、String s = "Gone with the wind";  String t;  t = s[3] + "one";C、String s = "Gone with the wind";  String standard = s.toUpperCase();D、String s = "home directory"; String t = s - "directory"

执行以下代码后,下面哪些描述是正确的() public  class  Student{  private String name = “Jema”;  public void setName(String name){  this.name = name;  }  public String getName(){  return this.name;  }  public static void main(String[] args){  Student s;  System.out.println(s.getName()); } }A、输出nullB、第10行编译报错C、第11行编译报错D、输出Jema

下面哪些代码中声明的变量可以存放10个String对象()A、String[]a;B、Object[]a;C、String[50]a;D、chara[][];

下面的那一项能正确生成5个空字符串()A、Stringa[]=newString[5]B、String5[a]C、String[5]aD、Stringa[5]

"分析下面这行代码if(5705|2)Systen.out.println(""true""),选择唯一正确的说法()"A、这行代码不能编译B、代码编译,无任何输出C、代码编译,输出trueD、代码编译,输出false

下列哪个语句是声明了一个含有10个string对象的数组()。A、char str[];B、char str[][];C、string str[]=newstring[10];D、string str[10];

执行下列代码后,()结论是正确的。 String[]s=newString[10];A、s[10]为"";B、s[9]为null;C、s[0]为未定义D、s.length为10

已知Strings=“Java”,则下面哪些代码是正确的()A、s=s+1;B、char c=s[3];C、int i=s.length;D、String t=s+new Object();

多选题执行下列代码后,()结论是正确的。 String[]s=newString[10];As[10]为;Bs[9]为null;Cs[0]为未定义Ds.length为10

单选题下面这行代码String[][]s=newString[10][];的正确陈述是()A该行代码非法Bs是一10行10列的数组Cs是一包含10个一维数组的二维数组Ds中每个元素设为

单选题在某个JSP页面中存在这样一行代码, 运行该JSP后,以下说法正确的是()。A这行代码没有对应的输出B这行代码对应的输出时6C这行代码对应的输出时24D这行代码将引发错误

单选题"分析下面这行代码if(5705|2)Systen.out.println(""true""),选择唯一正确的说法()"A这行代码不能编译B代码编译,无任何输出C代码编译,输出trueD代码编译,输出false

单选题执行以下代码后,下面哪些描述是正确的() public  class  Student{  private String name = “Jema”;  public void setName(String name){  this.name = name;  }  public String getName(){  return this.name;  }  public static void main(String[] args){  Student s;  System.out.println(s.getName()); } }A输出nullB第10行编译报错C第11行编译报错D输出Jema