题目

The entity-relationship(E-R)data model is based on a perception of a real world that consists of a clletion of basic objects,called( ),and of relationships among these objects.An entity is a“thing”or"object"in the real world that is distinguishable from other objects.Entities are described in a database by asetof(请作答此空):A relationship isan association among several entities.The set of all entities of the same type and the set of all relationships of the ametype are termed an entity sct and relationship set,respectively.The overall logical structure(schema)of a database can be expressed graphically by an E-R diagram,which is built up from the fllowing components:( )represent entity set,( )represent atributes,ete.In addition to entities and relations,the E-R model represents certain( )to which thecontents of a database must conform.The entity-relationship model is widely used in database design.
A.keys
B.attributes
C.records
D.Rows

提示:未搜索到的试题可在搜索页快速提交,您可在会员中心"提交的题"快速查看答案。
答案
查看答案
相关试题
若in、out分别表示入队、出队操作,初始队列为空且元素a、b、c依次入队,则经过操作序列in、in、out、out、in、out之后,得到的出队序列为()。
A.cba
B.bac
C.bca
D.abc
一组对象以定义良好但是复杂的方式进行通信,产生的相互依赖关系结构混乱且难以理解。采用()模式,用一个中介对象来封装一系列的对象交互,从而使各对象不需要显式地相互引用,使其耦合松散,而且可以独立地改变它们之间的交互。此模式与(请作答此空)模式是相互竞争的模式,主要差别是:前者的中介对象封装了其他对象间的通信,而后者通过引入其他对象来分布通信。
A.解释器(Interpreter)
B.策略(Strategy)
C.中介者(Mediator)
D.观察者(Observer)
若对线性表的最常用操作是访问任意指定序号的元素,并在表尾加入和删除元素,则适宜采用()存储
A.顺序表
B.单链表
C.双向链表
D.哈希表
以下关于软件维护和可维护性的叙述中,不正确的是()。
A.软件维护要解决软件产品交付用户之后运行中发生的各种问题
B.软件的维护期通常比开发期长得多,其投入也大得多
C.进行质量保证审查可以提高软件产品的可维护性
D.提高可维护性是在软件维护阶段考虑的问题
阅读以下Java代码,填充(1)~(5)的空缺,将解答填入答题纸的对应栏内。【说明】进行两个整数之间的比较,由考生通过输入窗口分别输入两个整数,程序比较出结果。例如:先后输入的两个数分别为25和36。比较结果显示:25!=3625<3625<=36【Java代码】import javax.swing.JOptionPane;public class Java3{public static void main(String args[]){String (1)//用户输入第1个字符串secondNuimber, //用户输入第2个字符串result;//包含输出结果的字符串int number1,//比较的第1个数number2; //比较的第2个数//读用户输入的第1个字符串firstNumber=JOptionPane(2)("Enter first integer:");//读用户输入的第2个字符串secondNumber=JOpttionPane.showlnputDialog("Enter second integer:");//将字符串类型转换成整数类型number1=Integer.(3)(firstNumber);number2=Integer.parselnt(secondNumber);result="";if((4))result=number1+"=="+number2;if(number1!=number2)result=number1+"!=”"+number2;if(number1<number2)result=result+"\n"+number1+"<"+number2;if(numbe1>number2)result=result+"\n"+number1+">"+number2;if(number1<=number2)result=result+"\n"+number1+"<="+number2;if(number1>=number2)result=result+"\n"+number1+">="+number2;//显示结果JOptionPane.(5)(null,result,"Comparison Results",JOptionPane.INFORMATION_MESSAGE.;//程序正常退出System.exit(0);}}
联系我们 会员中心
返回顶部