有关for和while循环,以下说法错误的是() A、for循环的循环变量只能是从零开始或者从1开始的整数B、while循环是最通用的循环语句C、for循环在固定次数的循环中使用比较方便D、for循环能够完成工作,用while循环也能完成
有关for和while循环,以下说法错误的是()
- A、for循环的循环变量只能是从零开始或者从1开始的整数
- B、while循环是最通用的循环语句
- C、for循环在固定次数的循环中使用比较方便
- D、for循环能够完成工作,用while循环也能完成
相关考题:
What will be the result of attempting to run the following program?() public class Qaa75 { public static void main(String args[]) { String[][][] arr = { { {}, null }, { { "1", "2" }, { "1", null, "3" } }, {}, { { "1", null } } }; System.out.println(arr.length + arr[1][2].length); } } A、The program will terminate with an ArrayIndexOutOfBoundsException.B、The program will terminate with a NullPointerException.C、4 will be written to standard output.D、6 will be written to standard output.E、7 will be written to standard output.
try { int x = 0; int y = 5 / x; } catch (Exception e) { System.out.println(“Exception”); } catch (ArithmeticException ae) { System.out.println(“Arithmetic Exception”); } System.out.println(“finished”); What is the result?() A、 finishedB、 ExceptionC、 Compilation fails.D、 Arithmetic Exception
下面有关JVM内存,说法错误的是()。A、程序计数器是一个比较小的内存区域,用于指示当前线程所执行的字节码执行到了第几行,是线程隔离的B、Java方法执行内存模型,用于存储局部变量,操作数栈,动态链接,方法出口等信息,是线程隔离的C、方法区用于存储JVM加载的类信息、常量、静态变量、即使编译器编译后的代码等数据,是线程隔离的D、原则上讲,所有的对象都在堆区上分配内存,是线程之间共享的
类的可访问性不影响类成员的可访问性