The perform Integrated Change Contorl process is the ultimate responsibility of the(①).Although

题目

The perform. Integrated Change Contorl process is the ultimate responsibility of the(①).Although changes may be initiated verbally,they should be recorded in writtern form. and entered into the (②)system.

①A.resource manager

B.division manager

C.functional manager

D.project manager

②.A.quality management

B.configuration management

C.project manager

D.scope management

如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

_____it was raining hard ,_____the farmers were still working.

A.Although, but

B.But, although

C.Although, yet

D.Although, while


参考答案:C

第2题:

You are the network administrator for Ezonexam. You are planning to upgrade 35 Windows NT Server 4.0 computers to Windows 2000 Server. You want to accomplish the upgrades by using a distribution server. The Windows NT Server 4.0 computers support a tight production schedule that requires them to be online from 8:00 A.M. to midnight, seven days a week. You schedule the upgrade to run during non-business hours. Because of the limited amount of time the upgrades must be performed as quickly as possible.

You want to complete the upgrades before production begins in the morning.

What should you do?

A.Perform. an unattended installation by running the winnt32 command and the /cmdcons switch.

B.Perform. an unattended installation by running the winnt32 command and specify the use of a .txt file and a uniqueness database file.

C.Perform. an unattended installation by running the winnt command and specify the use of a .txt file and a uniqueness database file.

D.Perform. an unattended installation by using a Winnt.sif file with a commands section that initiates the Update.exe command in quiet mode.


正确答案:B
解析:Explanation: Performing an unattended installation from a distribution server will work since the upgrade must be done in non-business hours.

An answer file provides the generic answers to setup questions. This is typically a file with a .txt extension (although the extension does not matter).

A uniqueness database file: This file, which has a .udf extension, provides the answers to computer specific questions that will change from machine to machine (for example, the computer name). Thus it identifies names of computers.

Incorrect answers:
A: This /cmdcons switch specifies that files required for command-line repair console be installed when making use of winnt32.exe. This is not what is required; you need to completer upgrades and not repair.

C: The winnt.exe command line is used in DOS-based and 16-bit installations.

D: To use a bootable CD-ROM for a fully automated operating system installation, the answer file must be called Winnt.sif and be located on a floppy disk. This is not how the upgrade is envisaged under the given circumstances.

第3题:

122 In general, groups will ____ the average individual problem solver on problems with multiple stages.

A. Perform. better than

B. Perform. worse than

C. Take less time than

D. Do about as well as


正确答案:A

第4题:

PleasechoosethecorrectdescriptionaboutCiscoSelf-DefendingNetworkcharacteristics.()

A.INTEGRATED-P4S2,COLLABORATIVE-P4S1ADAPTIVE-P4S3

B.INTEGRATED-P4S1,COLLABORATIVE-P4S2ADAPTIVE-P4S3

C.INTEGRATED-P4S3,COLLABORATIVE-P4S2ADAPTIVE-P4S1

D.INTEGRATED-P4S2,COLLABORATIVE-P4S3ADAPTIVE-P4S1


参考答案:A

第5题:

You are the network administrator for Ezonexam.com.

You are planning to install 10 new Windows 2000 Server computers. Ezonexam has a tight production schedule that requires no changes be made to the Active Directory except during scheduled outages. You schedule the installations during an upcoming network outage which will occur betweenmidnight and 8:00 A.M.

You want to complete the installations before production begins in the morning.

What should you do?

A.Perform. the installations by using four floppy disks create with the Makebt32.exe utility.

B.Perform. the installations by using four floppy disks create with the Makeboot.exe utility.

C.Perform. the installations by using the Windows 2000 Installation compact disc.

D.Perform. the installations by using the Windows 2000 Installation compact disc and a floppy disk containing a Winnt.sif file.


正确答案:D
解析:Explanation: We must use Setup Manager to create a winnt.sif. We must then copy this file to a floppy. Then start the installation process from the CD-ROM and insert the floppy disk. The installation process will be a fully automated unattended installation.

Incorrect answers:
A: Makebt32.exe is used to create four installation startup disks. This is not automated.

B: Makeboot.exe is used to make Windows 2000 setup floppy disks.

C: Performing the installation using the Windows 2000 Installation CD alone is not what is required in this instance.

第6题:

营销数据库管理的基本法则RFM法则是()的缩写。

A:Recency,Finance,Monetary

B:Responsibility,Finance,Money

C:Responsibility,Frequency,Monetary

D:Recency,Frequency,Monetary


答案D

第7题:

A goal of the()process is to determine the correctness of deliverables.

A.Perform. Quality Assurance

B.Plan Quality Management

C.Control Quality

D.Perform. Quality Improvement


参考答案:C

第8题:

4 In general, groups will ____ the average individual problem solver on problems with multiple stages. A. Perform. better than

B. Perform. worse than

C. Take less time than

D. Do about as well as


正确答案:A

第9题:

You are the administrator of a SQL Server 2000 computer. The server contains your company's order processing database. Two-hundred operators take orders by telephone 24 hours a day. Threehundred data entry personnel enter data from orders received by mail.

To ensure that order data will not be lost, your company's disaster recovery policy requires that backups be written to tape. Copies of these tapes must be stored at an off-site company location. Orders must be entered into the database before they can be filled. If the server fails, you must be able to recover the order data as quickly as possible.

You need to create a backup strategy that meets the company requirements and minimizes server workload. Which two actions should you take? (Each correct answer represents part of the solution. Choose two.)

A.Perform. a combination of full database and filegroup backups.

B.Perform. a combination of full database and file backups.

C.Perform. a combination of full database, differential, and transaction log backups.

D.Back up the data to a local tape drive.

E.Back up the data to a network share, and then use enterprise backup software to write the disk backups to tape.


正确答案:CE
解析:Explanation:
C: Most OLTP backup schemes include a full database, differential, and transaction log backups

E: In order to recover the data as quickly as possibly we backup the data to network share, and then backup that share to tape. This minimizes the impact of the backup process on the SQL Server computer.

Note 1: SQL Server 2000 provides three database recovery models. These are the Simple recovery model, the Full Recovery Model and the Bulk-Logged Recovery model. Simple Recovery requires the least administration. In the Simple Recovery model, data is recoverable only to the last full database or differential backup. Transaction log backups are not used, and consequently, minimal transaction log space is required.

This Recovery Model is not an appropriate choice for production systems where loss of recent changes is unacceptable. Full Recovery and Bulk-Logged Recovery models provide the greatest protection for data. These models rely on the transaction log to provide full recoverability and to prevent work loss in the broadest range of failure scenarios.

The Full Recovery model provides the most flexibility for recovering databases to an earlier point in time. The Bulk-Logged model provides higher performance and lower log space consumption for certain large-scale operations. It does this at the expense of some flexibility of pointin- time recovery. In this scenario we would want to implement the Full Recovery model as this Recovery model provides complete protection against media failure and provides the ability to recover the database to the point of failure or to a specific point in time.

To guarantee this degree of recoverability, all operations are fully logged. The backup strategy for full recovery consists of database backups, differential backups, which are optional, and transaction log backups. The differential backups are optional but have less of an effect on the system while they run, as they are smaller than full database backups.

This is because a differential backup creates a copy of all the pages in a database modified after the last database backup. A transaction log backup makes a copy only of the log file and backs up the changes made to the database after the last full or differential database backup. A log file backup cannot be used by itself to restore a database. A log file is used after a database restore to recover the database to the point of the original failure. The full database, differential, and transaction log backups can be written to a hard disk or other disk storage media such as a tape drive.

Disk backup devices can be defined on a local disk of a server or on a remote disk on a shared network resource. Tape backup devices are used in the same way as disk devices, with the exception that the tape device must be connected physically to the computer running an instance of SQL Server. SQL Server 2000 thus does not support backing up to remote tape devices.

Note 2, file backup, filegroup backup: SQL Server 2000 supports backing up or restoring individual files or filegroups within a database. This is a complex backup and the restore process that is usually reserved for large databases with high availability requirements. If the time available for backups is not long enough to support backing up the full database, subsets of the database can be backed up at different times. If a disk holding database files or filegroups fails, the site can restore just the lost files or filegroups. This allows for a quicker recovery because only the damaged files or filegroups are restored in the first step, not the entire database.

Incorrect Answers:
A: An OLTP server requires transaction log backups in order to be able to recover up to the point of failure.

B: An OLTP server requires transaction log backups in order to be able to recover up to the point of failure.

D: Backing up to a local tape device would minimize cost but it would compared to a backup to a network it would decrease performance of the server more, and it would take more time to recover.

第10题:

38________

A.ability

B. Time

C. courage

D.responsibility


正确答案:B