有关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.

类的成员有几种访问控制级?()A、   只有一级访问级B、   两级,公开级和私有级C、   三级,公开级,保护级,私有级D、   四级,公开级,缺省级,保护级,私有级

按钮的事件处理类的主要作用是什么?()A、根据用户点击及时修改按钮的外观B、监听用户对按钮的点击,及时作出响应C、展示按钮点击时的动画效果D、设置按钮对哪一类事件有反应

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、原则上讲,所有的对象都在堆区上分配内存,是线程之间共享的

类的可访问性不影响类成员的可访问性