对于下列Com接口(Com.java)类,哪个叙述是正确的? interface Com {int MAX = 100;int f(); }
A. Com是一个public接口。
B. 编译器认为int MAX = 100;就是 public static final int MAX = 100;
C. 编译器认为int f();就是abstract int f();
D. 编译器认为int MAX = 100;就是 public final int MAX = 100;
查看答案
下列【1】、【2】、【3】、【4】注释标注的哪行代码有错误?interface Com {public static int M = 12;//【1】protected char LETTER = '好';//【2】public void f();//【3】abstract int g();//【4】}
A. 【1】
B. 【2】
C. 【3】
D. 【4】
下列【1】、【2】、【3】、【4】注释标注的哪行代码有错误?interface Com {int MAX = 100; //【1】void f();}abstract class Animal implements Com {int MIN ;//【2】}class Dog extends Animal{public void f() {MIN = 10;//【3】MAX = 200;//【4】}}
A. 【1】
B. 【2】
C. 【3】
D. 【4】
下列【1】、【2】、【3】、【4】注释标注的哪行代码有错误?public interface Com {abstract void cry();//【1】public int x = 0;//【2】static int y = 0;//【3】}abstract class Cat implements Com {abstract void cry();//【4】}
A. 【1】
B. 【2】
C. 【3】
D. 【4】
all of the following are objectives of internal control except
A. to safeguard assets
B. to ensure accurate and reliable accounting records
C. to maximize net income
D. to comply with legal requirements