更多“●Thebasic concept of a data (72) is the difference between data and information.(72) A.war ”相关问题
  • 第1题:

    ●The (72) tells the computer what to do.

    (72) A.disk

    B.memory

    C.program

    D.data


    正确答案:C

  • 第2题:

    在有13个元素构成的有序表data[1..13]中,用折半查找(即二分查找,计算时向下取整)方式查找值等于data[8]的元素时,先后与(41)等元素进行了比较。

    A.data[7]. data[6]. data[8]

    B.data[7]. Data[8]

    C.data[7]. data[10]. data[8]

    D.data[7]. data[10]、data[9]. data[8]


    正确答案:C
    本题考查数据结构基础知识。在二分查找(即折半查找)过程中,令处于中间位置记录的关键字和给定值比较,若相等,则查找成功:若不等,则缩小范围,直至新的查找区间中间位置记录的关键字等于给定值或者查找区间没有元素时(表明查找不成功)为止。在有13个元素构成的有序表data[1..13]中进行二分查找的过程如下图所示(计算中间元素位置时向下取整,结点中的数字为元素的下标或序号),从中可以看出,查找元素data[8]时,需与data[7]、data[10]、data[8]等元素比较。

  • 第3题:

    The term computer describes a device made up of a combination of electronic components.By itself, a computer has no ( 1) and is referred to as hardware, which means simply the physical equipment. The hardware can't be used until it is connected to other elements, all of which constitute the six parts of a computer-based information system,hardware,software,data/information, people, procedures and communications.
    A system is defined as a collection of related components that ( 72) to perform a task in order to accomplish a goal. Any organization that uses information technology will have a computer-based information system to provide managers (and various categories of employees with the appropriate kind of information to help them make decisions.
    Systems analysis and design is to ascertain how a system works and then take steps to make it (73 ) Often, a system approach is used to define, describe, and solve a problem or to meet a(an)( 74)
    From time to time, organizations need to (75 ) their information systems, in, response to new marketing' opportunities, modified government regulations, the introduction .of new technology, merger with another company, or other developments. When change is needed, the time is ripe for applying the principles of systems analysis and design.

    (1)应选( )。




    A. information
    B. software
    C. intelligence
    D. Data

    答案:C
    解析:
    翻译:

    计算机这个术语描述由电子的和机电的部件组合而成的一种设备。计算机本身没有只能,因此称为硬件,仅仅是物理设备。硬件只有和其他要素连接才能使用,所有这些要素即为构成基于计算机信息系统的六要素:硬件、软件、数据/信息、人、操作程序和通信。
    系统定义为一组相关组件的集合,这些组件相互交互以完成一个任务,以实现一个目标。任何使用信息技术的组织会拥有一个基于计算机的信息系统,给管理人员(和各类员工)提供适当类型的信息以帮助他们做出决策。

    系统分析和设计是确定系统如何工作然后经过一系列步骤以使其更好。通常,采用系统方法来定义、描述和解决一个问题或满足一个目标。

    随着时间推移,新的市场机会、政府规定的变化、新技术的出现、公司兼并以及其他方面的发展等,使得组织需要改变其信息系统。当需要改变时,应用系统分析与设计的时机已经成熟。

  • 第4题:

    ● Spyware and other forms of malware are the biggest online threat to your computer's (71) nowadays. These malicious (72)which get to your PC through freeware, shareware, commercial sites, deceptive pop-ups or in any other way, can record your surfing habits and sites you visit, share your personal information with their partners. Any personal (73), when inwrong hands, can leave you a victim of an "identity theft" by steeling your credit (74)details,birth records and other (75) information.


    正确答案:B,C,A,D,B

  • 第5题:

    在有13个元素构成的有序表data[1..13]中,用折半查找(即二分查找,计算时向下取整)方式查找值等于data[8]的元素时,先后与( )等元素进行了比较。

    A.data[7]、data[6]、data[8]
    B.data[7]、data[8]
    C.data[7]、data[10]、data[8]
    D.data[7]、data[10]、data[9]、data[8]

    答案:C
    解析:
    本题考查数据结构基础知识。
    在二分查找(即折半查找)过程中,令处于中间位置记录的关键字和给定值比较,若相等,则查找成功;若不等,则缩小范围,直至新的查找区间中间位置记录的关键字等于给定值或者查找区间没有元素时(表明查找不成功)为止。
    在有13个元素构成的有序表data[1..13]中进行二分查找的过程如下图所示(计算中间元素位置时向下取整,结点中的数字为元素的下标或序号),从中可以看出,查找元素data[8]时,需与data[7]、data[10]、data[8]等元素比较。

  • 第6题:

    将数据库导入R语言后,可用()显示数据库结构,用()查看数据库行列数,用()查看每个变量的基本统计值。

    A.str(data) summary(data) dim(data)

    B.str(data) dim(data) summary(data)

    C.dim(data) summary(data) str(data)

    D.summary(data) dim(data) str(data)


    str(data) dim(data) summary(data)