Microsoft Certification Questions

Q:

The president of your company collects manager's weekly reports in a shared folder on her Windows 2000 Professional computer called reports. Because the reports contain sensitive information, she asks you to prevent users from enabling offline access for the network share that contains the financial report. What should you do?

A) Use Windows Explorer to disable Offline Files. B) Use Windows Explorer to disable Caching for the reports on the network share.
C) Set the Manager's access level to read-only. D) Implement a domain policy to block the synchronization of offline files.
 
Answer & Explanation Answer: B) Use Windows Explorer to disable Caching for the reports on the network share.

Explanation:
Report Error

View Answer Report Error Discuss

0 2163
Q:

What must you do before you can publish a Windows 2000 printer in Active Directory?

A) Share the printer B) Install the NetBEUI protocol
C) Install printer drivers for the other operating systems. D) Assign the Everyone group the Allow - Manage Documents permissions to the printer
 
Answer & Explanation Answer: A) Share the printer

Explanation:

Only printers that have been shared can be published in Active Directory.

Report Error

View Answer Report Error Discuss

0 2153
Q:

You have a Windows NT 4.0 Workstation computer with an NTFS file system that you use for software development. As your company upgrades their systems to Windows 2000, you will need to be able to test applications in both the Windows NT Workstation environment and the Windows 2000 environment. You decide that the easiest course of action would be to install Windows 2000 Professional in a dual boot environment with Windows NT 4.0 Workstation on your computer. What should you do before installing Windows 2000 Professional?

A) Edit the BOOT.INI file to reflect the new installation of Windows 2000 Professional. B) Install Service Pack 3 or later for Windows NT Workstation 4.0.
C) Install Service Pack 4 or later for Windows NT Workstation 4.0. D) Convert the NTFS file system to FAT.
 
Answer & Explanation Answer: C) Install Service Pack 4 or later for Windows NT Workstation 4.0.

Explanation:
Report Error

View Answer Report Error Discuss

0 2151
Q:

You are installing windows 2000 Professional on a computer that is not on a network . When prompted by Windows 2000 Setup during the installation, what should you " Make this computer a member of "?

A) Domain B) Active Directory domain
C) E-mail group D) Workgroup
 
Answer & Explanation Answer: D) Workgroup

Explanation:

In general, if your computer is not on a network, make the computer a member of a workgroup

Report Error

View Answer Report Error Discuss

0 2144
Q:

You are creating an ASP.NET page for selling movie tickets. Users select a region, and then they select from a list of cities in that region. The site displays the names and locations of movie theaters in the city selected by the user.


Your company, XYZ Brothers, maintains a list of theaters in a database table that includes the city, name, and street address of each theater. You want to minimize the time required to retrieve and display the list of theater names after a user selects the region and city.

 

 What should you do?

A) Modify the connection string to add the packet size property and set its values to 8192. B) Add the following directive to the page: OutputCache VaryByParam=?
C) Add the following directive to the page: OutputCache VaryByControl=?region;city? D) Modify the connection string to keep your database's connection pool as small as possible.
 
Answer & Explanation Answer: B) Add the following directive to the page: OutputCache VaryByParam=?

Explanation:

You can vary user control output to the cache by specifying the user control name and the parameter. We use the VaryByParam attribute of the  OutputCache  

 

Incorrect Answers: 

 

A: The Packet Size property of the Connection string is the size in bytes of the network packets sed to communicate with an instance of data provider. It is not an optimal property to change to optimize data retrieval.

 

C: The company database does not seem to include a region column.

 

D: If we keep the connection pool small we would allow less simulation connections. However, this would not minimize the required to retrieve and display the data.

Report Error

View Answer Report Error Discuss

0 2142
Q:

You are creating an ASP.NET page for a travel service. The page contains a CheckBoxList control that contains travel destinations. Customer can select favorite destinations to receive weekly e-mail updates of travel packages.

 

The CheckBoxList control is bound to a database table of possible destinations. Each destination is ranked according to its popularity. You modify the page to sort the destination list by rank, from the most popular to the least popular. The list has three columns.

 

You want the most popular destination to be on the top row of the check box list at run time. Which property setting should you use for the CheckBoxList control?

A) Set the RepeatDirection property to Vertical. B) Set the RepeatDirection property to Horizontal.
C) Set the RepeatLayout property to Flow. D) Set the RepeatLayout property to Table.
 
Answer & Explanation Answer: B) Set the RepeatDirection property to Horizontal.

Explanation:

The DataList.RepeatDirection property is used to get or select whether the DataList control displays vertically or horizontally. If this property is set to RepeatDirection.Horizontal, the items in the list are displayed in rows loaded from left to right, then top to bottom, until all items are rendered.

 

Incorrect Answers:

A: If the DataList.RepeatDirection property is set to RepeatDirection.Vertical, the items in the list are displayed in columns loaded from top to bottom, then left to right, until all items are rendered.


C, D:DataList.RepeatLayout Property gets or sets whether the control is displayed in a table or flow layout. It does not affect the order in which the items are displayed.

Report Error

View Answer Report Error Discuss

0 2140
Q:

You want to create a Group Policy Object (GPO) that will be associated with a specific domain. Which tool should you use?

A) Domain Security Policy B) Domain Controller Security Policy
C) Active Directory Users and Computers D) Active Directory Sites and Services
 
Answer & Explanation Answer: C) Active Directory Users and Computers

Explanation:

You can use Active Directory Users and Computers to create a GPO that will be associated with a specific domain or OU. If you are creating a GPO that will be associated with a site, you should use Active Directory Sites and Services.

Report Error

View Answer Report Error Discuss

0 2139
Q:

You ASP.NET application manages order entry data by using a DataSet object named EXorderEntry. The EXorderEntry object includes two DataTable objects named orderNames and OrderDetails. A ForeignKeyConstraint object named orderDetailsKey is defined between the two DataTable objects.


You attempt to delete a row in orderNames while there are related rows in OrderDetails, and an exception is generated.What is the most likely cause of the problem?

A) The current value of OrderDetails.KeyDeleteRule is Rule.Cascade. B) The current value of OrderDetails.KeyDeleteRule is Rule.SetNull.
C) The current value of OrderDetails.KeyDeleteRule is Rule.SetDefault. D) The current value of OrderDetails.KeyDeleteRule is Rule.None.
 
Answer & Explanation Answer: D) The current value of OrderDetails.KeyDeleteRule is Rule.None.

Explanation:

The rule enumeration indicates the action that occurs when a ForeignKeyConstraint is enforced.None specifies that no action will occur, but exceptions are generated. This is what has occurred in this scenario.

 

Incorrect Answers:

 

A: Cascade specifies that all rows containing that value are also deleted.

B: SetNull specifies that values in all child columns are set to null values.

C: SetDefault specifies that all child columns be set to the default value for the column.

Report Error

View Answer Report Error Discuss

0 2137