MCSE-Microsoft Certified Solutions Expert Questions

Q:

You are installing Windows 2000 on a computer that already has another operating system installed on it. You choose to install Windows 2000 in a different folder than the previously installed operating system. What will Windows 2000 do?

A) Wireless devices B) Multiple displays
C) Advanced Power Management (APM) D) Uninterruptible Power Supplies (UPSs)
 
Answer & Explanation Answer: C) Advanced Power Management (APM)

Explanation:

Of the four features listed, all are supported on both Windows 2000 Professional and Windows 2000 Server Computers except APM. APM is only supported on Windows 2000 Professional computers.

Report Error

View Answer Report Error Discuss

0 3667
Q:

Which operating system(s) can you upgrade to Windows 2000 Server?

A) Windows 95 B) Windows 98
C) Windows for Workgroups D) Windows NT Server 4.0
 
Answer & Explanation Answer: D) Windows NT Server 4.0

Explanation:

The only operating systems that can be upgraded to Windows 2000 Server are Windows NT Server 3.51 and Windows NT Server 4.0 E is the only correct answer.

Report Error

View Answer Report Error Discuss

0 3495
Q:

You are an administrator of a SQL Server 2000 computer. The server contains a database that stores inventory data. Another database administrator has created a number of scheduled jobs to maintain the inventory database. Each weeknight the following jobs occur.


- A BULK INSERT job imports data at 10:00 P.M
- Indexes are rebuilt at 10:15 P.M
- Data integrity checks are performed at 10:30 P.M
- A differential backup is performed at 10:45 P.M
- A DBCC SHRINKDATABASE job runs at 11:00 P.M.


You notice that the final job often fails and returns the following error message: "Server: Msg 3140, Level 16, State 3. Could not adjust the space allocation for file  'inventory_data'."You need to ensure that the final job runs without errors.

What should you do?

A) Modify the DBCC SHRINKDATABASE job so that it uses DBCC SHRINKFILE statement to shrink each file individually. B) Create a new DBCC SHRINKFILE job to shrink the inventory_data file. Schedule the new job to run at the same time as the DBCC SHRINKDATABASE job.
C) Increase the time between the differential backup and the DBCC SHRINKDATABASE job. D) Increase the time between the data integrity checks and the differential backup.
 
Answer & Explanation Answer: C) Increase the time between the differential backup and the DBCC SHRINKDATABASE job.

Explanation:

The DBCC SHRINKDATABSE cannot be executed until the previous job step, the differential backup, has been completed. We should increase the time between these two job steps, or even better configure the last job step to run only after the differential backup has been completed.

 

Note: The DBCC SHRINKDATABASE statement shrinks data files on a per-file basis but shrinks log files as if all the log files existed in one contiguous log pool. The target size for the data and log files cannot be smaller than the minimum size of a file that was specified when the file was originally created, or the last explicit size set with a file size changing operation such as the ALTER DATABASE statement with the MODIFY FILE option or the DBCC SHRINKFILE statement.

Report Error

View Answer Report Error Discuss

0 3397
Q:

You are the administrator of a SQL Server 2000 computer. The server contains a database named FinanceData that is used by a client/server application. Each employee has a SQL Server login that the application uses to access the server.Your company hires a new employee named Andrew. You create a SQL Server login named Andrew. You also create a database user named Andrew in the database and grant the database user full permissions in the database.Whenever Andrew runs the client/server application, he receives the following error message: "Invalid object name." Andrew also reports that he cannot access the database by using the application.You need to ensure that Andrew can use the application. Which Transact-SQL statement should you execute?

A) EXEC sp_defaultdb 'Andrew','FinanceData' B) GRANT ALL ON FinanceData TO Andrew
C) EXEC sp_addlogin 'Andrew' D) EXEC sp_grantdbaccess 'FinanceData','Andrew'GOsp_addrolemember 'db_datareader','Andrew'
 
Answer & Explanation Answer: A) EXEC sp_defaultdb 'Andrew','FinanceData'

Explanation:

Error 208 produces the message 'Invalid object name' and occurs when an object that does not exist in the current database is referenced. If the object exists in another database, we must use the USE statement to explicitly switch the context to the correct database or we must qualify the object name with the database name. A third option is to use the sp_defaultdb stored procedure. This stored procedure is used to change the default database for a login. When a client connects with SQL Server, the default database defined for its login becomes the current database without an explicit USE statement. The default database can be defined when the login is added with
sp_addlogin. When executing sp_addlogin the master database is the default database if a database is not specified. In this scenario a SQL Server 2000 login and a user account has been created for Andrew and he has been given database access and the required permissions.

Report Error

View Answer Report Error Discuss

0 3263
Q:

When will the configure DNS Server Wizard not permit you to configure a Windows 2000 DNS server as a root server?

A) When Active Directory is installed on the DNS server B) When the DNS server has a dynamic IP address
C) When the DNS server is connected to the Internet D) When another server is configured to use the DNS server as a forwarder
 
Answer & Explanation Answer: C) When the DNS server is connected to the Internet

Explanation:

When a Windows 2000 DNS server is connected to the Internet, the Configure DNS Server Wizard does not permit you to configure this server as a root server.

Report Error

View Answer Report Error Discuss

0 3238
Q:

You want to configure bindings and provider order on a Windows 2000 computer. Which tool should you use?

A) Network and Dial-up Connections folder B) Windows Explorer
C) System D) Device Manager
 
Answer & Explanation Answer: A) Network and Dial-up Connections folder

Explanation:

Use the Advanced Settings option in the Advanced menu in the Network and Dial-up Connections folder to configure bindings and provider order

Report Error

View Answer Report Error Discuss

0 3231
Q:

You are preparing to install Windows 2000 on a computer, and you want this computer to be able to dual  boot between Windows 2000 and Windows 98. Which file system should you use?

A) FAT B) NTFS
C) HPFS D) You can use either FAT or NTFS
 
Answer & Explanation Answer: A) FAT

Explanation:

If you want your computer to dual boot between Windows 2000 and windows 98, you should choose the FAT or FAT 32 file system, because Windows 98 does not support NTFS or HPFS, and Windows 2000 does not support HPFS.

Report Error

View Answer Report Error Discuss

0 3219
Q:

What is the default optimization setting for the Server service on Windows 2000 Server computers?

A) Minimize memory used B) Balance
C) Maximize data throughput for file sharing D) Maximize data throughput for network applications
 
Answer & Explanation Answer: C) Maximize data throughput for file sharing

Explanation:

The Maximize data throughput for file sharing setting is the default setting , and is appropriate for Windows 2000 Server computers that are functioning primarily  as file servers. The Maximize data throughput for network applicatons setting is the preffered setting for domain controllers.

Report Error

View Answer Report Error Discuss

0 3197