SRAM芯片6116(2k*8位)有()位地址线、()位数据线。
查看答案
动态RAM依据()的原理存储信息,因此一般在()时间内必须刷新一次。
下列程序的输出结果是()。public class Test{public static void main(String[] args){int x = 4;System.out.println("value is " + ((x > 4) ? 99.9 : 9));}}
A. 输出结果为 value is 99.9
B. 输出结果为 value is 9
C. 输出结果为 value is 9.0
D. 编译错误
如下面程序代码段,若a的值为3,则执行后c的值是()。if( a > 0)if(a > 3)c = 2;else c = 3;else c = 4;
A. 1
B. 2
C. 3
D. 4
如下程序代码段:switch(m){case 0: System.out.println("Condition 0");case 1: System.out.println("Condition 1");case 2: System.out.println("Condition 2");case 3: System.out.println("Condition 3");break;default: System.out.println("Other Condition");}当m的值为()时,输出的结果中包含"Condition 3"。
A. 2
B. 0、1
C. 0、1、2
D. 0、1、2、3