已知: int[]a=new int[100];在下列给出的数组元素中,非法的是()。
A. a[o]
B. a[1]
C. a[99]
D. a[100]
查看答案
下列代码的执行结果是()。public class test5{public static void main (String args[]){String sl=new String( “hello“);String s2=new String( “hello“) ;System.out. print(s1==s2);System. out.print(“,“);system. out.println(s1.equals(s2));}
A. true, false
B. true, true
C. false,true
D. false, false
程序的3种基本控制结构是() 。
A. 过程、子过程和分程序
B. 顺序、分支选择和循环重复
C. 递归、堆栈和队列
D. 调用、返回和转移
对于常量,下面描述正确的是() 。
A. 常量可以不初始化,并且不能更新
B. 常量必须被初始化,并且不能更新
C. 常量可以不初始化,并且可以被更新
D. 常量必须被初始化,并且可以被更新
有以下程序片段,下列哪个选项不能插入到行1。()1).2). public class Interesting{3).//do sth4).}
Aimport java.awt.*;
B package mypackage;
Cclass 0therClass { }
Dpublic class MyClass{ }