首页
试卷库
试题库
当前位置:
X题卡
>
所有题目
>
题目详情
【5】 是数据库应用的核心。
查看本题答案
包含此试题的试卷
计算机等级考试《填空》真题及答案
点击查看
你可能感兴趣的试题
数据库系统的核心是______
数据库
数据库管理系统
数据库管理员
数据库应用系统
数据库系统由数据库数据库管理系统数据库管理员及应用程序组成其中数据库管理系统是核心
数据库系统的核心是
数据
数据库管理系统
数据库
数据库应用系统
热门试题
更多
从字符串Sabcdefg中返回子串Bcd的正确表达式是______•
下面的程序是用do_while语句计算10的阶乘请在程序的每条横线处填写一个语句使程序的功能完整注意请勿改动main主方法和其他已有的语句内容仅在横线处填入适当的语句publicclassDoWhileLooppublicstaticvoidmain______intn=10;longresult=1do____________System.out.println10的阶乘为:+result;
宏中的每个操作都有名称用户______
则循环次数为:______
数据结构中与所使用的计算机无关的是数据的______.
如果要设置整个报表的格式应单击相应的______
在以下程序中鼠标单击小应用程序的某一点则会在该点显示一个图标如果双击则会清除该图标且在浏览器的状态栏上会显示鼠标单击位置的坐标运行结果如下图所示请改正程序中的错误有下划线的语句使程序能输出正确的结果注意不改动程序的结构不是增行或删行importjava.applet.*;importjava.awt.*;importjava.awt.event.*;publicclassExample3_1extendsAppletintxPointyPoint;intsum;ImagedisplayIm;publicvoidinitdisplayIm=getImagems.jpg;addMouseListenernewSClickMouse;sum=2;publicvoidpaintGraphicsgifsum==1g.drawImagedisplayImxPointyPointthis;elseg.fillRectxPointyPoint6060;publicclassSClickMouseimplementsMouseListenerpublicvoidmouseClickedMouseEventmousesum=mouse.getClickCount;xPoint=mouse.getX;yPoint=mouse.getY;paint;publicvoidmouseEnteredMouseEventmousepublicvoidmouseExitedMouseEventmousepublicvoidmousePressedMouseEventmousexPoint=mouse.getX;yPoint=mouse.getY;showStatusx=+xPoint+y-+yPoint;publicvoidmouseReleasedMouseEventmouseExampie3_1.html:<html><head><title>Example3_1</title></head><body><appletcode=Example3_1.classwidth=400height=500></applet></body></html>
栈底至栈顶依次存放元素ABCD在第五个元素E3栈前栈中元素可以出栈则出栈序列可能是______.
在数据库系统中数据的最小访问单位是______.
Access适合开发的数据库应用系统是______
算法的基本特征是可行性确定性【1】和拥有足够的情报
下列程序中要求按照从小到大的顺序输出1~100之间所有能被7整除的数字请将下列程序补充完整注意请勿改动main主方法和其他已有语句内容仅在横线处填入适当语句publicclassExample1_3publicstaticvoidmainString[]argvinti=1;______if______System.out.printi+;______whilei<100;System.out.println;
一个非条件宏运行时系统会______
单个用户使用的数据视图的描述称为______
请完成下列Java程序读取新浪首页文件的数据并且显示出来要求编写JFrame扩展类以String类的对象定义的url地址作为入口参数该类实现根据url参数指定的地址进行连接和读取数据并且能显示在一个文本区域内注童请勿改动main主方法和其他已有语句内容仅在下划线处填入适当的语句源程序文件代码清单如下importjavax.swing.*;importjava.awt.*;importjava.awt.event.*;importjava.net.*;importjava.io.*;publicclassex15_2publicstaticvoidmainStringargs[]UrlFramepage=newUrlFramehttp://www.sina.com.cn;page.show;classUrlFrameextendsJFrameJTextAreajta=newJTextArea正在读取文件...;URLurl;publicUrlFrameStringstrAddrsuperstrAddr;//使用父类的构造方法setSize450300;JScrollPanejsp=newJScrollPanejta;getContentPane.addjsp;WindowListenerwl=newWindowAdapterpublicvoidwindowClosingWindowEventweSystem.exit0;;addWindowListenerwl;tryurl=newURLstrAddr;______;catchMalformedURLExceptionmurleSystem.out.println不合适的URL:+strAddr;voidgetDataURLurlURLConnectioncon=null;InputStreamReaderisr;BufferedReaderreadBuf;StringstrLine;StringBufferstrBuf=newStringBuffer;trycon=this.url.openConnection;con.connect;jta.setText打开连接...;isr=newInputStreamReadercon.getInputStream;readBuf=newBufferedReaderisr;jta.setText读取数据...;whilestrLine=readBuf.readLine!=nullstrBuf.appendstrLine+/n;______;catchIOExceptioneSystem.out.printlnIO错误:+e.getMessage;
下面是一个Applet程序其功能是建立两个文本区域一个为编辑区一个为只读区建立两个按钮一个实现将编辑区中被鼠标选定的文本内容复制到只读区中一个实现将只读区的全部文本内容清空请改正程序中的错误有下划线的语句使程序能输出正确的结果注意不改动程序的结构不得增行或删行源程序文件代码清单如下importjava.awt.*;importjava.applet.*;/*<appletcode=ex14_3.classwidth=800height=400></applet>*/publicclassex14_3extendsAppletprivateButtonokBtnclearBtn;privateStringstrMessage;privateTextAreatArea1tArea2;publicvoidinitstrMessage=Hello!Welcometothetest!/n+ThisistheNCRExamination!/n+Wishyougoodluck!;tArea1=newTextArea1025;tArea1.setTextstrMessage;tArea2=newTextArea1025;tArea2.setEditabletrue;okBtn=newButtonCopy;clearBtn=newButtonClear;addtArea1;addtArea2;addokBtn;addclearBtn;publicbooleanactionEventeObjectoife.target==okBtntArea1.setTexttArea2.getSelectedText;elseife.target==clearBtntArea1.setText;returntrue;ex14_3.html<HTML><HEAD><TITLE>ex14_3</TITLE></HEAD><BODY><appletcode=ex14_3.classwidth=800height=400></applet></BODY></HTML>
设计数据访问页时可以编辑现有的______
在使用向导创建交叉表查询时用户需要指定______种字段
运行后的输出结果为______.
下列有关数据库的描述正确的是______.
请完成下列Java程序用JFrame建立一个窗口再用网格布局管理器对窗口布局进行控制上面有2行2列4个按钮要求对按钮的大小进行设定宽度为150高度为80注意请勿改动main主方法和其他已有语句内容仅在下划线处填入适当的语句importjava.awt.*importjava.awt.event.*importjavaxswing.*publicclassex2_1publicstaticvoidmainString[]argsJFramefrm=newJFrame.frm.setTitleex2_1Containercont=frm.getContentPane______;cont.addnewJButtonbutton1cont.addnewJButtonbutton2Dimensiondimen=______;JButtonbtnl=newJButtonbutton3btnl.setpreferredSizedimen;cont.addbtn1;cont.addnewJButtonbutton4;frm.addWindowListenernewWindowAdapterpublicvoidwindowClosingWindowEventweSystem.exit0;frm.packfrm.setVisibletrue;
下列程序用来显示用户要求打开的图片在名为读取图像的JFrame框架中有一个单行文本框用户可以在其中输入图片文件的文件名称按下浏览图片按钮以后新生成一个对话框将图片显示在这个对话框中运行结果如下图所示请填写横线处的内容注意请勿改动main主方法和其他已有语句内容仅在横线处填入适当语句importjava.awt.*;importjava.awt.event.*;importjava.io.*;importjavax.swing.*;publicclassExample2_9publicstaticvoidmainString[]argsJFrameframe=newFileNameFrame读取图像;frame.setDefaultCloseOperationJFrame.EXITONCLOSE;frame.setSize300100;frame.show;classFileNameFrameextendsJFramimplementsActionListenerJLabelinputLabel;JTextFieldfileNameText;JButtoncontaintButton;publicFileNameFrameStringtitleTextsupertitleText;inputLabel=newJnabel请输入图像文件的名称;fileNameText=newJTextField10;containtButton=newJButton浏览图片;fileNameText.addActionListenerthis;containtButton.addActionListenerthis;JPanelpanel=newJPanel;panel.addfileNameText;panel.addcontaintButton;Containercontaint=getContentPane;containt.setLayoutnewBorderLayout33;containt.addinputLabelBorderLayout.NORTH;containt.addpanelBorderLayout.CENTER;publicvoidactionPerformedActionEventeStringfileName=fileNameText.getText;ImageIconimage=______;ImageDialogdlg=newImageDialogthis;dlg.setImageimage;dlg.setTitlefileName;dlg.show;classImageDialogextendsJDialogJLabelimageLabel;publicImageDialogJFrameframesuperframe;imageLabel=newJLabel;getContentPane.addimageLabel;this.addWindowListenernewWindowAdapterpublicvoidwindowClosingWindowEventehide;;this.setSize200200;publicvoidsetImageImageIconiconimageLabel.______icon;
下面程序执行结果为1×1=12×1=22×2=43×1=33×2=63×3=99×1=99×2=189×3=279×4=369×5=459×6=549×7=639×8=729×9=81请在每条横线处填写一个语句使程序的功能完整注意请勿改动main主方法和其他已有的语句内容仅在横线处填入适当的语句publicclassForLoopStatementpublicstaticvoidmainStringargs[]intmn;form=1;m<10;____________System.out.printm+*+n+=+m*n+;______
下面是一个Applet程序程序的功能是用鼠标点击画图本题是通过点击鼠标后画出一个Java字请改正程序中的错误有下划线的语句使程序能输出正确的结果注意不改动程序的结构不得增行或减行importjava.awt.*importjava.awt.event.*;importjava.applet.*/*<appletcode=SimpleHitMouse.javawidth=800height=400></applet>*/publicclassSimpleHitMouseimplementsAppletprivatejava.util.Vectorpoints=newjava.util.Vector;publicvoidinitaddMouseListenernewMouseAdapterpublicvoidmousePressedMouseEventepointsaddnewPointe.getXe.getY;paint;;publicvoidupdateGraphicsgrepaintg;publicvoidpaintGraphicsgforinti=0;i<pointssize;i++Pointdot=Pointpoints.elementAti;g.drawStringxdot.xdotypublicstaticvoidmainStringargs[]Framefram=newFrameCelayTree;SimpleHitMousedot=newSimpleHitMouse;dot.init;dot.start;fram.addCenterdotfram.setSize400300;fram.addWindowListenernewWindowAdapterpublicvoidwindowClosingWindowEventeSystem.exit0;fram.showexl_2.html:<html><head><title>ASimpleprogram</title></head><body><appletcode=SimpleHitMouseclasswidth=800height=400></applet></body></html>
Jackson结构化程序设计方法是英国的M.Jackson提出的它是一种面向【3】的设计方法
下面是一个Applet程序其功能是实现一个计数器每隔0.15秒计数器数值加1数值动态变化并且能够控制计数器的暂停和继续要求通过使用swing的构件建立图形用户界面主要包括一个文本区域用于显示计数器结果两个按钮一个使计数器暂停一个使计数器继续工作请改正程序中的错误有下划线的语句使程序能输出正确的结果注意不改动程序的结构不得增行或删行importjavaxswing.*importjava.awt.*importjava.awt.event.*/*<appletcode=ex4_2.classwidth=800height=400></applet>*/publicclassex4_2extendsJAppletprivateJTextFieldjtf=newJTextField15;privateJButtonHold=newJButtonHoldresume=newJButtonResume;privateex4_2thobj4_2th=newex4_2th;classex4_2thextendsThreadprivateintcnt=0;privatebooleanbIsHold=false;publicex4_2thstart;publicvoidholdbIsHold=truepublicsynchronizedvoidfauxResumebIsHold=false;wait;publicvoidrunwhiletruetrysleep150synchronizedthiswhilebIsHoldnotify;catchInterruptedExceptionieSystem.err.printlnInterrupted;jtf.setTextcnt;publicvoidinitContainercp=getContentPanecp.setLayoutnewFlowLayout;cp.addjtfHold.addActionListenernewActionListenerpublicvoidactionPerformedActionEventaeobj4_2th.hold;cp.addHold;resumeaddActionListenernewActionListenerpublicvoidactionPerformedActionEventeobj4_2th.fauxResume;cp.addresumepublicstaticvoidmainString[]argsex4_2obj4_2=newex4_2Stringstr=obj4_2.getClasstoString;ifstr.indexOfclass!=-1str=str.substring6JFramefrm=newJFramestrfrm.addWindowListenernewWindowAdapterpublicvoidwindowClosingWindowEventweSystem.exit0;;frm.getContentPaneaddobj4_2frm.setSize300200obj4_2.initobj4_2.start;frm.setVisibletrueex4_2.html<HTML><HEAD><TITLE>ex4_2</TITLE></HEAD><BODY><appletcode=ex4_2.classwidth=800height=400</applet></BODY></HTML>
自动编号数据类型一旦被指定就会永久地与______连接
下列算式正确的是______
下列程序打包到example包main方法调用线程类输出0~9这10个数请填写横线处的内容注意请勿改动main主方法和其他已有语句内容仅在横线处填入适当语句______interfaceMyInterfacepublicabstractvoidprintintn;classMythreadextendsThread______MyInterfacepublicvoidrunforinti=0;i<10;i++this.printi;publicvoidprintintnSystem.out.printn+;publicclassExample1_6publicstaticvoidmainStringargv[]Mythreadth=newMythread;______
为了避免流程图在描述程序逻辑时的灵活性提出了用方框图宋代替传统的程序流程图通常也把这种图称为______.
热门题库
更多
嵌入式软件助理工程师
计算机操作系统
软件测试工程师
计算机等级考试
法宣在线考试
司法卷一
司法卷二
司法卷三
司法卷四
企业法律顾问资格考试
“十三五”规划继续教育
潜力激活与创造力开发继续教育
创新创业能力继续教育
科研方法与论文写作继续教育
全面深化改革实现文明发展
提高自身绩效路径与方法