第7题:[单选题]The( )of the speech contest is made up of four professors and a famous broadcaster. A.committee B.board C.panel D.leadership 参考答案:C panel通常是负有专门使命的小组,用于本句最准确。A.committee是指一批人中推选出的管理委员会;B.board多指有控制权的人组成的委员会,如:the board of directors;D.leadership是抽象的领导集团。
第11题: [单项选择]给定下面的代码: byte[] arrayl,array2[]; byte array3[][]; byte [][] array4; 如果上面的每一个数组都初始化了,以下各项语句中错误的是( )。 A. array2=array1 B. array2=array3 C. array2=array4 D. both A and B 参考答案:A 答案解析:[解析] 本题考查对多维数组的理解。二维数组可以有如下的定义方式。
type arrayName[][];
type[][] arrayName;
type[] arrayName[];
其中