首页整卷下载分项下载 试卷搜索题目搜索全站搜索招考信息

2016年上半年信息系统管理工程师上午试卷综合知识

分类:软考/中级_信息系统管理工程师    来源:软考

1
 
CPU主要包含(1)等部件。
 
 
  A.  运算器、控制器和系统总线
 
  B.  运算器、寄存器组和内存储器
 
  C.  运算器、控制器和寄存器组
 
  D.  控制器、指令译码器和寄存器组
 
 
2
 
按照(2),可将计算机分为RISC(精简指令集计算机)和CISC(复杂指令集计算机)。
 
 
  A.  规模和处理
 
  B.  是否通过
 
  C.  CPU的指令系统架构
 
  D.  数据和指令的表示方式
 
 
3
 
微机系统中的系统总线(如PCI)用来连接各功能部件以构成一个完整的系统,它需包括三种不同功能的总线,即(3)。
 
 
  A.  数据总线、地址总线和控制总线
 
  B.  同步总线、异步总线和通信总线
 
  C.  内部总线、外部总线和片内总线
 
  D.  并行总线、串行总线和USB总线
 
 
4
 
以下关于SRAM(静态随机存储器)和DRAM(动态随机存储器)的说法中,正确的是(4)。
 
 
  A.  SRAM的内容是不变的,DRAM的内容是动态变化的
 
  B.  DRAM断电时内容会丢失,SRAM 的内容断电后仍能保持记忆
 
  C.  SRAM的内容是只读的,DRAM的内容是可读可写的
 
  D.  SRAM和DRAM都是可读可写的,但DRAM的内容需要定期刷新
 
 
5
 
设有一个16K×32位的存储器(即每个存储单位含32位),则其存储单元的地址宽度(5)。
 
 
  A.  14
 
  B.  16
 
  C.  32
 
  D.  48
 
 
6
 
对有关数据加以分类、统计、分析,属于计算机在(6)方面的应用。
 
 
  A.  数值计算
 
  B.  数据处理
 
  C.  辅助设计
 
  D.  实时控制
 
 
7
 
将计算机中可执行的程序转换为高级语言程序的过程称为(7)。
 
 
  A.  反编译
 
  B.  交叉编译
 
  C.  反汇编
 
  D.  解释
 
 
8
 
程序(或算法)的三种基本控制结构为(8)。
 
 
  A.  顺序、逆序和乱序
 
  B.  顺序、选择和循环
 
  C.  递推、递归和循环
 
  D.  顺序、链式和索引
 
 
9
 
面向对象编程语言(OOPL)需支持封装、多态性和继承,(9)不是OOPL。
 
 
  A.  Java
 
  B.  Smalltalk
 
  C.  C++
 
  D.  SQL
 
 
10
 
设有初始为空的栈S,对于入栈序列a、b、c,经由一个合法的进栈和出栈操作序列后(每个元素进栈、出栈各1次),不能得到的序列为(10)。
 
 
  A.  abc
 
  B.  acb
 
  C.  cab
 
  D.  cba
 
 
11
 
设有一个m行n列的矩阵存储在二维数组A[1…m,1…n]中,将数组元素按行排列,对于A[i,j](1≤i≤m,1≤j≤n),排列在其前面的元素个数为(11)。
 
 
  A.  i×(n-1)+j
 
  B.  (i-1)×n+j-1
 
  C.  i×(m-1)+j
 
  D.  (i-1)×m+j-1
 
 
12
 
数据的物理独立性和数据的逻辑独立性是分别通过修改(12)来完成的。
 
 
  A.  模式与内模式之间的映像、外模式与模式之间的映像
 
  B.  外模式与内模式之间的映像、外模式与模式之间的映像
 
  C.  外模式与模式之间的映像、模式与内模式之间的映像
 
  D.  外模式与内模式之间的映像、模式与内模式之间的映像
 
 
13
 
在采用三级模式结构的数据库系统中,如果对数据库中的表Emp创建聚簇索引,那么改变的是数据库的(13)。
 
 
  A.  模式
 
  B.  内模式
 
  C.  外模式
 
  D.  用户模式
 
 
14
 
在某企业的信息综合管理系统设计阶段,如果员工实体在质量管理子系统中被称为“质检员”,而在人事管理子系统中被称为“员工”,这类冲突被称之为(14)。
 
 
  A.  语义冲突
 
  B.  命名冲突
 
  C.  属性冲突
 
  D.  结构冲突
 
 
15
 
设有一个关系emp-sales(部门号,部门名,商品编号,销售数),部门号唯一标识emp-sales关系中的每一个元组。查询各部门至少销售了5种商品或者总销售数大于2000的部门号、部门名及平均销售数的SQL语句如下:
ELECT部门号,部门名,AVG(销售数)AS平均销售数
FROM emp-sales
GROUP BY (15)
HAVING (16)  OR (17)
 
 
  A.  部门号
 
  B.  部门名
 
  C.  商品编号
 
  D.  销售数
 
 
16
 
设有一个关系emp-sales(部门号,部门名,商品编号,销售数),部门号唯一标识emp-sales关系中的每一个元组。查询各部门至少销售了5种商品或者总销售数大于2000的部门号、部门名及平均销售数的SQL语句如下:
ELECT部门号,部门名,AVG(销售数)AS平均销售数
FROM emp-sales
GROUP BY (15)
HAVING (16)  OR (17)
 
 
  A.  COUNT(商品编号)>5
 
  B.  COUNT(商品编号)≥5
 
  C.  COUNT(DISTINCT部门号)≥5
 
  D.  COUNT(DISTINCT部门号)>5
 
 
17
 
设有一个关系emp-sales(部门号,部门名,商品编号,销售数),部门号唯一标识emp-sales关系中的每一个元组。查询各部门至少销售了5种商品或者总销售数大于2000的部门号、部门名及平均销售数的SQL语句如下:
ELECT部门号,部门名,AVG(销售数)AS平均销售数
FROM emp-sales
GROUP BY (15)
HAVING (16)  OR (17)
 
 
  A.  SUM(销售数)>2000
 
  B.  SUM(销售数)≥-2000
 
  C.  SUM(‘销售数’)>2000
 
  D.  SUM(‘销售数’)≥2000
 
 
18
 
在Windows操作系统中,用户A可以共享存储在计算机、网络和Web上的文件和文件夹,但当用户A共享文件或文件夹时,(18)这是因为访问用户A的计算机或网络的人(19).
 
 
  A.  其安全性与未共享时相比将会有所提高
 
  B.  其安全性与未共享时相比将会有所下降
 
  C.  其可靠性与未共享时相比将会有所提高
 
  D.  其方便性与未共享时相比将会有所下降
 
 
19
 
在Windows操作系统中,用户A可以共享存储在计算机、网络和Web上的文件和文件夹,但当用户A共享文件或文件夹时,(18)这是因为访问用户A的计算机或网络的人(19).
 
 
  A.  只能够读取,而不能修改共享文件夹中的文件
 
  B.  可能能够读取,但不能复制或更改共享文件夹中的文件
 
  C.  可能能够读取、复制或更改共享文件夹中的文件
 
  D.  不能够读取、复制或更改共享文件夹中的文件
 
 
20
 
在Windows操作系统中,如果没有默认的浏览jpg格式文件的程序,那么当用户双击“IMG_20160122_103.jpg"文件名时,系统会自动通过建立的(20)来决定使用什么程序打开该图像文件。
 
 
  A.  文件
 
  B.  文件关联
 
  C.  子目录
 
  D.  临时文件
 
 
21
 
多媒体中的“媒体”有两重含义,一是指存储信息的实体;二是指表达与传递信息的载体。(21)是存储信息的实体;(22)是表达与传递信息的载体。
 
 
  A.  文字、图形、图像、声音
 
  B.  视频、磁带、半导体存储器
 
  C.  文字、图形、磁带、半导体存储器
 
  D.  磁盘、光盘、磁带、半导体存储器
 
 
22
 
多媒体中的“媒体”有两重含义,一是指存储信息的实体;二是指表达与传递信息的载体。(21)是存储信息的实体;(22)是表达与传递信息的载体。
 
 
  A.  文字、图形、图像、声音
 
  B.  声卡、磁带、半导体存储器
 
  C.  文字、图形、磁带、半导体存储器
 
  D.  磁盘、光盘、磁带、半导体存储器
 
 
23
 
关于虚拟局域网,下面的说法中错误的是(23)。
 
 
  A.  每个VLAN都类似于一个物理网段
 
  B.  一个VLAN只能在一个交换机上实现
 
  C.  每个VLAN都形成一个广播域
 
  D.  各个VLAN通过主干段交换信息
 
 
24
 
OSPF将路由器连接的物理网络划分为以下4种类型,其中,以太网属于广播多址网络,X.25分组交换网属于(24)。
 
 
  A.  点对点网络
 
  B.  广播多址网络
 
  C.  点到多点网络
 
  D.  非广播多址网络
 
 
25
 
动态主机配置协议(DHCP)的作用是(25) ;DHCP客户机如果收不到服务器分配IP地址,则会获得一个自动专用IP地址(APIPA),如169.254.0.X。
 
 
  A.  为客户机分配一个永久的IP地址
 
  B.  为客户机分配一个暂时的IP地址
 
  C.  检测客户机地址是否冲突
 
  D.  建立IP地址与MAC地址的对应关系
 
 
26
 
SNMP属于OSI/RM的(26)协议。
 
 
  A.  管理层
 
  B.  应用层
 
  C.  传输层
 
  D.  网络层
 
 
27
 
下面4个主机地址中属于网络220.115.200.0/21的地址是(27)。
 
 
  A.  220.115.198.0
 
  B.  220.115.206.0
 
  C.  220.115.217.0
 
  D.  220.115.224.0
 
 
28
 
在下图的SNMP配置中,能够响应Manager2的getRequest请求的是(28)。
 
 
  A.  Agent1
 
  B.  Agent2
 
  C.  Agent3
 
  D.  Agent4
 
 
29
 
电子政务根据其服务的对象不同,基本上可以分为四种模式。某政府部门内部的“办公自动化系统”属于(29)模式。
 
 
  A.  G2B
 
  B.  G2C
 
  C.  G2E
 
  D.  G2G
 
 
30
 
下列行为中,(30)的行为不属于网络攻击。
 
 
  A.  连续不停Ping某台主机
 
  B.  发送带病毒和木马的电子邮件
 
  C.  向多个邮箱群发一封电子邮件
 
  D.  暴力破解服务器密码
 
 
31
 
杀毒软件报告发现病毒Macro.Melissa(宏病毒),这类病毒主要感染(31)。
 
 
  A.  DLL系统文件
 
  B.  磁盘引导区
 
  C.  EXE或COM可执行文件
 
  D.  Word或Excel文件
 
 
32
 
李某未经许可擅自复制并销售甲公司开发的财务管理软件光盘,已构成侵权。乙公司在不知李某侵犯甲公司著作权的情况下,从经销商李某处购入8张光盘并已安装使用。以下说法正确的是(32)。
 
 
  A.  乙公司的使用行为不属于侵权,可以继续使用这8张软件光盘
 
  B.  乙公司的使用行为属于侵权,需承担相应法律责任
 
  C.  乙公司向甲公司支付合理费用后,可以继续使用这8张软件光盘
 
  D.  乙公司与经销商李某都应承担赔偿责任
 
 
33
 
某软件公司对其软件产品注册商标为Aiai,为确保公司在市场竞争中占据优势,对员工进行了保密约束。尽管这样,该软件公司仍不享有(33)。
 
 
  A.  专利权
 
  B.  商标权
 
  C.  商业秘密权
 
  D.  著作权
 
 
34
 
在统一建模语言:(UML)中,(34)给出了系统内从一个活动到另一个活动的流程,它强调对象间控制流程。
 
 
  A.  对象图
 
  B.  活动图
 
  C.  协作图
 
  D.  序列图
 
 
35
 
假设某公司业务的用例模型中,“检验”用例需要等到“生产”用例执行之后才能执行,这两个用例之间的关系属于(35)关系。
 
 
  A.  关联
 
  B.  扩展
 
  C.  依赖
 
  D.  使用
 
 
36
 
(36)是面向对象方法中最基本的封装单元,它可以把客户要使用的方法和数据呈现给外部世界,而把客户不需要知道的方法和数据隐藏起来。
 
 
  A.  属性
 
  B.  方法
 
  C.  类
 
  D.  过程
 
 
37
 
某地方税务局要上线一套新的税务系统,在上线初期,为实现平稳过渡,新老系统同时运行一个月后再撤掉老系统,这种系统转换方式属于(37)。
 
 
  A.  直接转换
 
  B.  并行转换
 
  C.  分段转换
 
  D.  串行转换
 
 
38
 
某电商企业使用信息系统来优化物流配送,该系统使用了一些人工智能算法,那么该系应该是(38)。
 
 
  A.  面向作业处理的系统
 
  B.  面向管理控制的系统
 
  C.  面向决策计划的系统
 
  D.  面向数据汇总的系统
 
 
39
 
以下不属于信息系统硬件结构的是(39)。
 
 
  A.  集中式
 
  B.  环式
 
  C.  分布式
 
  D.  分布-集中式
 
 
40
 
信息系统的组成包括(40)。
①计算机硬件系统和软件系统    
②数据及其存储介质     
③通信系统
④非计算机系统的信息收集、处理设备      
⑤规章制度和工作人员
 
 
  A.  ①②
 
  B.  ①②③
 
  C.  ①②③④
 
  D.  ①②③④⑤
 
 
41
 
以下不属于信息系统开发方法的是(41)。
 
 
  A.  结构化分析与设计法
 
  B.  面向对象分析与设计法
 
  C.  边写边改法
 
  D.  原型法
 
 
42
 
以下关于信息系统项目管理的说法中,不正确的是(42)。
 
 
  A.  项目管理需要专门的组织
 
  B.  项目管理具有创造性
 
  C.  项目负责人在管理中起重要作用
 
  D.  项目管理工作相对简单
 
 
43
 
以下关于项目的说法中,不正确的是(43)。
 
 
  A.  项目具有明确的目标
 
  B.  项目的组织结构是封闭的
 
  C.  项目的生命期有限
 
  D.  项目具有不确定性
 
 
44
 
以下不属于信息系统项目管理工具的是(44)。
 
 
  A.  Microsofi Project
 
  B.  PHP
 
  C.  P3E
 
  D.  ClearQuest
 
 
45
 
以下不属于数据流图基本符号的是(45)。
 
 
  A.  数据存储
 
  B.  处理
 
  C.  数据流
 
  D.  条件判断
 
 
46
 
系统说明书应达到的要求包括(46)。
①全面     ②系统     ③准确     ④详实     ⑤清晰     ⑥重复
 
 
  A.  ①②③
 
  B.  ①②③④
 
  C.  ①②③④⑤
 
  D.  ①②③④⑤⑥
 
 
47
 
以下关于数据流图的说法中不正确的是(47)。
 
 
  A.  数据流图是分层的,需要自顶向下逐层扩展
 
  B.  数据流图中的符号要布局合理,分布均匀
 
  C.  数据流图要反映数据处理的技术过程和处理方式
 
  D.  数据流图绘制过程中要与用户密切接触,不断修改
 
 
48
 
以下不属于系统详细设计的是(48)。
 
 
  A.  数据库设计
 
  B.  输入输出设计
 
  C.  处理过程设计
 
  D.  模块化结构设计
 
 
49
 
以下关于功能模块设计原则的说法中,不正确的是(49)。
 
 
  A.  系统分解要有层次
 
  B.  模块大小要适中
 
  C.  适度控制模块的扇入扇出
 
  D.  要有大量重复的数据冗余
 
 
50
 
以下关于聚合的说法中正确的是(50)。
 
 
  A.  偶然聚合耦合程度低,可修改性好
 
  B.  逻辑聚合耦合程度高,可修改性差
 
  C.  顺序聚合耦合程度高,可修改性好
 
  D.  功能聚合耦合程度高,可修改性差
 
 
51
 
以下与程序设计风格无关的是(51)。
 
 
  A.  代码的正确性
 
  B.  标识符的命名
 
  C.  代码中的注释
 
  D.  代码的布局格式
 
 
52
 
完整的软件测试需要经过(52)。
 
 
  A.  白盒测试、黑盒测试两个步骤
 
  B.  人工测试、机器测试两个步骤
 
  C.  静态测试、动态测试两个步骤
 
  D.  单元测试、组装测试、确认测试和系统测试四个步骤
 
 
53
 
以下不属于黑盒测试方法的是(53)。
 
 
  A.  等价类划分法
 
  B.  边界值分析法
 
  C.  因果图法
 
  D.  路径覆盖法
 
 
54
 
信息安全已经引起了广泛重视,统计数据表明,一个企业的信息安全问题往往是从企业内部出现的,特别是用户身份的盗用,往往会造成重要数据的泄漏或损坏。因此用户身份的管理是一个主要问题,解决这类问题的重要途径是采用统一用户管理,这样做的收益很多,下面不属于此类收益的是(54)。
 
 
  A.  用户使用更加方便
 
  B.  安全控制力度得到加强
 
  C.  检索查询速度更快
 
  D.  减轻管理人员的负担
 
 
55
 
系统成本管理范围大致分为两类,即固定成本和可变成本。其中可变成本是指日常发生的与形成资产无关的成本,下面所列各项中,不属于固定成本的是(55)。
 
 
  A.  运行成本
 
  B.  建筑费用及场所成本
 
  C.  人力资源成本
 
  D.  外包服务成本
 
 
56
 
IT服务计费管理是负责向使用IT服务的客户收取相应费用的流程,它是IT财务管理中的重要环节,常见的计费定价方法有多种,当其表达成“IT服务价格=IT服务成本+X%"时,应属于(56)。
 
 
  A.  成本加成定价法
 
  B.  现行价格法
 
  C.  市场价格法
 
  D.  固定价格法
 
 
57
 
IT资源管理能否满足要求主要取决于IT基础架构的配置及运行情况的信息,配置管理就是专门提供这方面信息的流程。配置管理作为一个控制中心,其主要目标表现在四个方面,下面(57)不在这四个方面之列。
 
 
  A.  计量所有资产
 
  B.  作为故障管理、变更管理和新系统转换等的基础
 
  C.  为其他IT系统管理提供硬件支持
 
  D.  验证基础架构记录的正确性并纠正发现的错误
 
 
58
 
在资源管理中,楼宇管理属于(58)。
 
 
  A.  硬件管理
 
  B.  软件管理
 
  C.  设施和设备管理
 
  D.  网络资源管理
 
 
59
 
据权威市场调查机构Gartner Group对造成非计划宕机的故障原因分析发现,造成非计划宕机的故障分成三类,下面(59)不属于它定义的此三类。
 
 
  A.  技术性故障
 
  B.  应用性故障
 
  C.  操作故障
 
  D.  地震等灾害性故障
 
 
60
 
在对问题控制与管理中,问题的控制过程中常用到调查分析,其分析方法主要有四种,这四种分析方法正确的是(60)。
 
 
  A.  Kepner&Tregoe法、鱼骨图法、头脑风暴法和数据流图法
 
  B.  Kepner&Tregoe法、鱼骨图法、头脑风暴法和流程图法
 
  C.  Kepner&Tregoe法、鱼骨图法、头脑风暴法和程序图法
 
  D.  Kepner&Tregoe泫、鱼骨图法、头脑风暴法和CAD图法
 
 
61
 
在安全管理中,备份是很重要的一种手段,下面选项中,(61)不属于安全备份策略。
 
 
  A.  完全备份
 
  B.  增量备份
 
  C.  差异备份
 
  D.  磁带备份
 
 
62
 
运行管理是过程管理,是实现全网安全和动态安全的关键。运行管理中的终端管理包含三个主要模块,下面所列不属于这三个模块的是(62)。
 
 
  A.  事件管理
 
  B.  客户管理
 
  C.  配置管理
 
  D.  软件分发
 
 
63
 
计算机系统性能评价技术是按照一定步骤,选用一定的度量项目,通过建模和实验,对计算机的性能进行测试并对测试结果作出解释的技术。计算机系统工作能力的常用评价指标主要有三类,下面(63)不属于这三类指标。
 
 
  A.  系统响应时间
 
  B.  系统吞吐率
 
  C.  资源利用率
 
  D.  系统输出率
 
 
64
 
持续性能评价中(64)是指把n个程序组成的工作负荷中每个程序执行的速率(或执行所费时间的倒数)加起来,求其对n个程序韵平均值。
 
 
  A.  几何性能平均值
 
  B.  调和性能平均值
 
  C.  峰值性能平均值
 
  D.  算术性能平均值
 
 
65
 
根据系统运行的不同阶段可以实施4种不同级别的维护。当提供最完美的支持,配备足够数量工作人员,提供随时对服务请求进行响应的速度,并针对系统运转的情况提出前瞻性建议时,这种维护属于(65)。
 
 
  A.  一级维护
 
  B.  二级维护
 
  C.  三级维护
 
  D.  四级维护
 
 
66
 
制定系统运行计划之前,工作小组成员要先了解单位现有软、硬件和所有工作人员的技术水平及其对旧系统的熟悉情况,并充分学习和掌握新系统的功能和特性,结合本单位的实际情况制定新系统的运行计划。下列选项中,(66)不应在计划内容之列。
 
 
  A.  运行开始的时间
 
  B.  运行周期
 
  C.  开发小组人员的安排
 
  D.  运行管理制度
 
 
67
 
系统评价就是对系统运行一段时间后的技术性能及经济效益等方面的评价,是对信息系统审计工作的延伸。信息系统的技术性能评价内容不包括对(67)的评价。
 
 
  A.  开发小组成员的技术水平
 
  B.  系统的总体技术水平
 
  C.  系统的功能覆盖范围
 
  D.  系统文档资料的规范与正确程度
 
 
68
 
系统运行质量评价是指从系统实际运行的角度对系统性能和建设质量等进行的分析、评估和审计。针对系统的质量评价,下列说法中,不正确的是(68)。
 
 
  A.  系统是否满足了用户和管理业务对信息系统的需求
 
  B.  系统的总体技术水平
 
  C.  系统实施前业务人员技术水平评估
 
  D.  系统功能的先进性、有效性和完备性
 
 
69
 
一般来说,用户支持应该首先确定用户支持的范围。下列说法中,(69)不包括在通常用户支持的范围之列。
 
 
  A.  软件升级服务
 
  B.  软件技术支持服务
 
  C.  远程热线支持服务
 
  D.  软件终身跨平台操作
 
 
70
 
关于帮助服务台的职能,不正确的说法是(70)。
 
 
  A.  及时发现系统运行中的错误
 
  B.  接受客户请求(电话、传真、电子邮件等)
 
  C.  记录并跟踪事故和客户意见
 
  D.  及时通知客户其请求的当前状况和最新进展
 
 
71
 
Murphy's Law suggests, "If anything can go wrong, it will." Murphy has motivated numerous pearls of wisdom about projects; machines, people, and why things go wrong. A project is a [temporary] sequence of unique, complex, and connected (71) having one goal or purpose and that must be completed by a specific time, within budget, and according to (72).Project management is the (73) of scoping, planning, staffing, organizing, directing, and controlling the development of an acceptable information system at a minimum cost within a specified time frame. Project management is a cross life cycle activity because it overlaps all phases of any systems development methodology.
For any systems development project, effective project management is necessary to ensure that the project meets the deadline, is developed within a (an) (74) budget, and fulfills customer expectations and specifications.
Corporate rightsizing has changed the structure and culture of most organizations, and hence, project management. More flexible and temporary interdepartmental(不同部门间)teams that are given greater responsibility and authority for the success of organizations have replaced rigid hierarchical command structures and permanent teams. Contemporary system development methodologies depend on having teams that include both technical and nontechnical users, managers, and information technologists all directed to the project goal. These (75) teams require leadership and project management.
 
 
  A.  activities
 
  B.  tasks
 
  C.  services
 
  D.  software
 
 
72
 
Murphy's Law suggests, "If anything can go wrong, it will." Murphy has motivated numerous pearls of wisdom about projects; machines, people, and why things go wrong. A project is a [temporary] sequence of unique, complex, and connected (71) having one goal or purpose and that must be completed by a specific time, within budget, and according to (72).Project management is the (73) of scoping, planning, staffing, organizing, directing, and controlling the development of an acceptable information system at a minimum cost within a specified time frame. Project management is a cross life cycle activity because it overlaps all phases of any systems development methodology.
For any systems development project, effective project management is necessary to ensure that the project meets the deadline, is developed within a (an) (74) budget, and fulfills customer expectations and specifications.
Corporate rightsizing has changed the structure and culture of most organizations, and hence, project management. More flexible and temporary interdepartmental(不同部门间)teams that are given greater responsibility and authority for the success of organizations have replaced rigid hierarchical command structures and permanent teams. Contemporary system development methodologies depend on having teams that include both technical and nontechnical users, managers, and information technologists all directed to the project goal. These (75) teams require leadership and project management.
 
 
  A.  document
 
  B.  order
 
  C.  specification
 
  D.  authority
 
 
73
 
Murphy's Law suggests, "If anything can go wrong, it will." Murphy has motivated numerous pearls of wisdom about projects; machines, people, and why things go wrong. A project is a [temporary] sequence of unique, complex, and connected (71) having one goal or purpose and that must be completed by a specific time, within budget, and according to (72).Project management is the (73) of scoping, planning, staffing, organizing, directing, and controlling the development of an acceptable information system at a minimum cost within a specified time frame. Project management is a cross life cycle activity because it overlaps all phases of any systems development methodology.
For any systems development project, effective project management is necessary to ensure that the project meets the deadline, is developed within a (an) (74) budget, and fulfills customer expectations and specifications.
Corporate rightsizing has changed the structure and culture of most organizations, and hence, project management. More flexible and temporary interdepartmental(不同部门间)teams that are given greater responsibility and authority for the success of organizations have replaced rigid hierarchical command structures and permanent teams. Contemporary system development methodologies depend on having teams that include both technical and nontechnical users, managers, and information technologists all directed to the project goal. These (75) teams require leadership and project management.
 
 
  A.  process
 
  B.  activity
 
  C.  step
 
  D.  task
 
 
74
 
Murphy's Law suggests, "If anything can go wrong, it will." Murphy has motivated numerous pearls of wisdom about projects; machines, people, and why things go wrong. A project is a [temporary] sequence of unique, complex, and connected (71) having one goal or purpose and that must be completed by a specific time, within budget, and according to (72).Project management is the (73) of scoping, planning, staffing, organizing, directing, and controlling the development of an acceptable information system at a minimum cost within a specified time frame. Project management is a cross life cycle activity because it overlaps all phases of any systems development methodology.
For any systems development project, effective project management is necessary to ensure that the project meets the deadline, is developed within a (an) (74) budget, and fulfills customer expectations and specifications.
Corporate rightsizing has changed the structure and culture of most organizations, and hence, project management. More flexible and temporary interdepartmental(不同部门间)teams that are given greater responsibility and authority for the success of organizations have replaced rigid hierarchical command structures and permanent teams. Contemporary system development methodologies depend on having teams that include both technical and nontechnical users, managers, and information technologists all directed to the project goal. These (75) teams require leadership and project management.
 
 
  A.  predefined
 
  B.  acceptable
 
  C.  rigid
 
  D.  Strict
 
 
75
 
Murphy's Law suggests, "If anything can go wrong, it will." Murphy has motivated numerous pearls of wisdom about projects; machines, people, and why things go wrong. A project is a [temporary] sequence of unique, complex, and connected (71) having one goal or purpose and that must be completed by a specific time, within budget, and according to (72).Project management is the (73) of scoping, planning, staffing, organizing, directing, and controlling the development of an acceptable information system at a minimum cost within a specified time frame. Project management is a cross life cycle activity because it overlaps all phases of any systems development methodology.
For any systems development project, effective project management is necessary to ensure that the project meets the deadline, is developed within a (an) (74) budget, and fulfills customer expectations and specifications.
Corporate rightsizing has changed the structure and culture of most organizations, and hence, project management. More flexible and temporary interdepartmental(不同部门间)teams that are given greater responsibility and authority for the success of organizations have replaced rigid hierarchical command structures and permanent teams. Contemporary system development methodologies depend on having teams that include both technical and nontechnical users, managers, and information technologists all directed to the project goal. These (75) teams require leadership and project management.
 
 
  A.  invariable
 
  B.  fixed
 
  C.  permanent
 
  D.  dynamic