第28题: [单项选择]Some educators try to put students of similar abilities into the same class because they believe this kind of ______ grouping is advisable. A. homogeneous B. instantaneous C. spontaneous D. anonymous 参考答案:A 答案解析:homogeneous 同种的,同质的;instantaneous 瞬间的;spontaneous 非出于强制的、自发的、自动的; anonymous 匿名的、姓氏不明的
第29题: [单项选择]下列程序执行后,j的值是( )。 public class Test { public static void main(String args[]) { int j=1; for(int i=7;i>0;i-=2) j*=2; System.out.println(j); } } A. 15 B. 1 C. 32 D. 16 参考答案:D 答案解析:[解析] 利用for循环语句求2的4次幂。一般情况下迭代部分都用i++或i--,但在这里用的是i-=2,需要留意。