Microsoft Certification Questions

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 1782
Q:

You want to search for a specific shared folder object in Active Directory. Which tool should you use?

A) Search B) Windows Explorer
C) Active Directory Sites and Services D) Active Directory Users and Computers
 
Answer & Explanation Answer: D) Active Directory Users and Computers

Explanation:

To search for a specific shared folder in Active Directory, use Active Directory Users and computers. You can use Windows Explorer to browse Active Directory, but you can't use it to search for a specific  shared folder.

Report Error

View Answer Report Error Discuss

0 1777
Q:

John is a system administrator for a renowned travel agency.The agency is planning to upgrade its computer systems to Windows XP Professional.Most of the computers are networked but some computers do not have CD-ROM drives.How can John upgrade the computer systems without CD-ROM drives to Windows XP Professional?

A) can attach a portable tape backup unit to each computer and install the operating system from it. B) can use the windows installer program to push out the operating system.
C) can perfom the installation over a network share. D) can not install windows XP Professional unless he installs a CD-ROM drive in the computer systems that do not have them.
 
Answer & Explanation Answer: C) can perfom the installation over a network share.

Explanation:
Report Error

View Answer Report Error Discuss

0 1776
Q:

Which Windows 2000 tool can you use to initiate the transfer of images from a digital camera to your Windows 2000 computer?

A) Imaging B) Wireless Link
C) Scanners and Cameras D) Sounds and Multimedia
 
Answer & Explanation Answer: A) Imaging

Explanation:

The Imaging application (Start => Programs => Accessories => Imaging) is the only windows 2000 application that can be used to initiate image transfer. You can use Wireless Link to configure how Windows 2000 will handle received image files, but you can't use Wireless Link to initiate the image transfer.

Report Error

View Answer Report Error Discuss

0 1767
Q:

You want to add an additional paging file to your Windows 2000 Server computer. Which tool should you use?

A) System B) Folder Options
C) Windows Explorer D) Add/Remove Programs
 
Answer & Explanation Answer: A) System

Explanation:

The System application is used to create, configure, and manage paging files.

Report Error

View Answer Report Error Discuss

0 1767
Q:

You develop an enterprise application, called XYZApplication that includes a Windows Form presentation layer, middle-tier components for business logic and data access, and a Microsoft SQL Server database.


You are in the process of creating a middle-tier component that will execute the data access routines in your application. When data is passed to this component, the component will call several SQL Server stored procedures to perform database updates. All of these procedure calls run under the control of a single transaction.


The code for the middle-tier component will implement the following objects:
SqlConnection cn = new SqlConnection();
SqlTransaction tr;


If two users try to update the same data concurrently, inconsistencies such as phantom reads will occur. You must now add code to your component to specify the highest possible level of protection against such inconsistencies.
Which code segment should you use?

A) tr = cn.BeginTransaction(?ReadCommitted?); B) tr = cn.BeginTransaction(IsolationLevel.ReadCommitted);
C) tr = cn.BeginTransaction(IsolationLevel.Serializable); D) tr = cn.BeginTransaction(?Serializable?);
 
Answer & Explanation Answer: C) tr = cn.BeginTransaction(IsolationLevel.Serializable);

Explanation:

Serializable is the highest isolation transaction level. It provide the highest possible level of protection against concurrent data errors. The correct syntax to begin a transaction with this transaction isolation level is: cn.BeginTransaction(IsolationLevel.Serializable)

Report Error

View Answer Report Error Discuss

0 1763
Q:

You create an ASP.NET page that uses images to identify areas where a user can click to initiate actions. The users of the application use Internet Explorer.


You want to provide a pop-up window when the user moves the mouse pointer over an image. You want the pop-up window to display text that identifies the action that will be taken if the user clicks the image.


What should you do?

A) For each image, set the AlternateText property to specify the text you want to display, and set the ToolTip property to True. B) For each image, set the ToolTip property to specify the text you want to display.
C) In the onmouseover event handler for each image, add code that calls the RaiseBubbleEvent() method of the System.Web.UI.WebControls.Image class. D) In the onmouseover event handler for each image, add code that calls the ToString() method of the System.Web.UI.WebControls.Image class.
 
Answer & Explanation Answer: B) For each image, set the ToolTip property to specify the text you want to display.

Explanation:

WebControl.ToolTip property gets or sets the text displayed when the mouse pointer hovers over the Web server control. The use of the ToolTip property meets the requirement of this scenario.

 

Incorrect Answers:

A: The AlternateText property is used to specify the text to display if the image is not available.


C: The RaiseBubbleEvent is not useful here. ASP.NET server controls such as the Repeater, DataList and DataGrid Web controls can contain child controls that raise events. Rather than each button raising an event individually, events from the nested controls are "bubbled"—that is, they are sent to the control's parent.


D: The ToStringMethod() would not by itself provide the functionality required.

Report Error

View Answer Report Error Discuss

0 1756
Q:

For most large companies, in terms of ease of network administration, what is the optimum number of Active Directory domains to use on their Windows 2000 network?

A) 1 B) 2
C) 3 D) More than 3
 
Answer & Explanation Answer: A) 1

Explanation:

Using a single domain greatly simplifies the administration of your network

Report Error

View Answer Report Error Discuss

0 1754