ROM存储容量为1024X8,它的地址线和数据线各为()条。
查看答案
ROM的电路结构主要由__、__和__三部分构成。
ROM的字数为1024,位数为8位,则存储容量为__。
完成程序功能,使得输出结果为:PersonPersonEmployeeEmployee程序源代码为:package view;class Person {void work() {System.out.println("Person");}}class Employee extends Person{void work(){System.out.println("Employee");}void work2(){System.out.println("work2");}}class Controller{static void personWork(Person p) {p.work();}}public class Test{public static void main(String[] args) {Controller.personWork(new Person());[] persons = new Person[3];persons[0]= new Person() ;persons[1]= new Employee() ;persons[2]= new Employee() ;for(Person p:persons)2(p);}}
进行系统物理设计的是哪个阶段( )。
A. 系统规划
B. 系统分析
C. 系统设计
D. 系统运行