Microsoft Certification Questions

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 2067
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 2057
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 2053
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 2029
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 2029
Q:

You are choosing a windows 2000 operating system to use on a new computer at your company. This new computer will be used exclusively as a network file server. Which operating system should you use choose?

A) Windows 2000 professional B) Windows 2000 Server
C) Windows 2000 Advanced Server D) Windows 2000 Datacenter Server
 
Answer & Explanation Answer: B) Windows 2000 Server

Explanation:

Windows 2000 server is optimized for use on network file, print , application and Web servers.

Report Error

View Answer Report Error Discuss

0 2027
Q:

You use Visual Studio .NET to create an assembly, called XYZAssembly, that will be used by other applications, including a standard COM client application.


You must deploy your assembly on the COM application to a client computer. You must ensure that the COM application can instantiate components within the assembly as COM components.

What should you do?

A) Create a strong name of the assembly by using the Strong Name tool (Sn.exe). B) Generate a type library for the assembly by using the Type Library Importer (Tlbimp.exe). Register the file on the client computer.
C) Generate a registry file for the assembly by using the Assembly Registration tool (Regasm.exe) Register the file on the client computer. D) Deploy the assembly to the global assembly cache on the client computer. Add a reference to the assembly in the COM client application.
 
Answer & Explanation Answer: C) Generate a registry file for the assembly by using the Assembly Registration tool (Regasm.exe) Register the file on the client computer.

Explanation:

The Assembly Registration tool reads the metadata within an assembly and adds the necessary entries to the registry, which allows COM clients to create .NET Framework classes transparently. Once a class is registered, any COM client can use it as though the class were a COM class..

 

Incorrect Answers:

Option A:
The Strong Name tool helps sign assemblies with strong names.


Option B:
The Type Library Importer, tlbimp.exe, converts the type definitions found within a COM type library into equivalent definitions in a common language runtime assembly. It would not be useful in this scenario however.


Option D:
This would not allow the COM application to use the class.

Report Error

View Answer Report Error Discuss

1 2026
Q:

You just finished installing the Dynamic Host Configuration Protocol (DHCP) service on a Windows 2000 Server computer that is a domain controller on your network. What must you do before the DHCP service can start?

A) Authorize the DHCP server in Active Directory B) Configure a scope, a superscope, and a multicast scope
C) Configure a DHCP address reservation D) Configure the DHCP server for DNS integration
 
Answer & Explanation Answer: A) Authorize the DHCP server in Active Directory

Explanation:

Before the DHCP service can start, the DHCP server must be authorized in Active Directory.

Report Error

View Answer Report Error Discuss

0 2025