一起答

软件水平考试(初级)程序员上午(基础知识)模拟试卷14

  • 卷面总分:75分
  • 浏览次数:0
  • 测试费用:免费
  • 答案解析:是
  • 练习次数:15次
  • 作答时间:150分钟
试卷简介
部分试题预览
  1. (71)

    • A.Flash
    • B.Hard
    • C.Floppy
    • D.Compact
  2. Primary memory is stored on chips located(66). In addition, computers usually use disks as second memory, for example,(67)disks located inside the computer.

    • A.on the motherboard
    • B.outside
    • C.inside the processor
    • D.on the CPU
  3. Certain keywords or phrases in a hypertext document are linked to other online documents through(75).

    • A.hyperlinks
    • B.references
    • C.transports
    • D.containments
  4. (67)

    • A.DELETE
    • B.DROP
    • C.RELEASE
    • D.FREE
  5. The color display will use both chrominance and luminance information. A black and white display uses(74).

    • A.neither of the two components
    • B.the chrominance component
    • C.the luminance component
    • D.both of the twocomponents
  6. (66)

    • A.SC AVG(Grade)
    • B.SC AVG(DISTINCT Grade)
    • C.AVG(Grade)FROM SC
    • D.SCAVG(DISTINCT Grade)FROM SC
  7. (65)

    • A.DROP TABLE S Age
    • B.DROP Age FROM S
    • C.ALTER TABLE S DROP Age
    • D.ALTER TABLE S Age
  8. (64)

    • A.ADD TABLE S
    • B.ADD TABLE S ADD
    • C.ALTER TABLE S
    • D.ALTER TABLE S ADD
  9. (62)

    • A.不通过CPU的控制,不利用系统总线
    • B.不通过CPU的控制,利用系统总线
    • C.通过CPU的控制,不利用系统总线
    • D.通过CPU的控制,利用系统总线
  10. SQL的DDL主要是定义(20)。若有:

     学生关系模式S(Sno,Sname,Age,Sex),

     课程关系模式C(Cno,Cname,Teacher)以及

     成绩关系模式SC(Sno,Cno,Grade),其中S的属性分别表示学生的学号、姓名、年龄、性别,C的属性分别表示课程号、课程名、任课教师姓名,SC的属性分别表示学号、课程号、成绩。

     若要在表S中增加一个“家庭住址”(Address)属性,应使用语句(21)Address VARCHAR(30);若要在表S中删除Age属性,应使用语句:(22);已知某课程的课程号为‘C1’,若要输出该课程的平均成绩,应使用语句:SELECT(23)WHERE Cno=‘C1’;若要删除表S、C和 SC,应使用(24)语句。

    • A.基本表、视图和索引
    • B.实体、联系和属性
    • C.字段、数据类型和长度
    • D.元组和属性