Microsoft Certification Questions

Q:

You want to prevent the creation of administrative shares on a Windows 2000 server computer. What should you do?

A) Nothing. You can't prevent the creation of administrative shares. B) Configure the Advanced options in Configure Your Server
C) Configure the Advanced settings on the View tab in Folder Options D) Use Reged32.exe or the System Policy Editor to edit the registry
 
Answer & Explanation Answer: D) Use Reged32.exe or the System Policy Editor to edit the registry

Explanation:

Edit the registry to prevent the creation of administrative shares.

Report Error

View Answer Report Error Discuss

0 2451
Q:

Your network consists of a single Active Directory domain named contoso.com. The functional level of the domain is Windows Server 2003. You have a file server named Server1 that is used to store users' home folders and profiles. On Server1, you create a folder named D:data and share the folder as UserData. You create a new user account named TemplateUser in Active Directory. You need to ensure that each user account you create by copying TemplateUser is configured to have a unique home folder stored in the UserData share. Which home folder path should you specify?

A) D:\data\%homedrive% B) D:\data\%username%
C) \\server1\userdata\%homedrive% D) \\server1\userdata\%username%
 
Answer & Explanation Answer: D) \\server1\userdata\%username%

Explanation:
Report Error

View Answer Report Error Discuss

2 2408
Q:

You use Microsoft Visual Studio 2010 and Microsoft .NET Framework 4 to create an application. You use the ADO.NET Entity Data Model (EDM) to define a Customer entity. You need to add a new Customer to the data store without setting all the customer's properties. What should you do?

A) Call the Create method of the Customer object. B) Call the CreateObject method of the Customer object.
C) Override the Create method for the Customer object. D) Override the SaveChanges method for the Customer object.
 
Answer & Explanation Answer: B) Call the CreateObject method of the Customer object.

Explanation:
Report Error

View Answer Report Error Discuss

0 2406
Q:

You decide to add a global catalog server to your site. What tool should you use to cause a domain controller to function as a global catalog server?

A) Active Directory Users and Computers B) Active Directory Sites and Services
C) Network and Dial-up Connections folder D) The System application
 
Answer & Explanation Answer: B) Active Directory Sites and Services

Explanation:

Use Active Directory Sites and Services to modify the NTDS settings for the server object to configure the server as a global catalog Server.

Report Error

View Answer Report Error Discuss

0 2403
Q:

You are considering upgrading a Windows NT Workstation 4.0 computer on your network to Windows 2000 Professional. The computer has 12 applications installed in addition to the operating system. All the applications are compatible with Windows 2000. The end user would benefit from the additional features Windows 2000 provides. What action should you take? 

A) Upgrade the Windows NT Workstation 4.0 computer to Windows 2000 Server B) Upgrade the Windows NT Workstation 4.0 computer to Windows 2000 Professional
C) Perform a clean install of Windows 2000 Professional on the Windows NT Workstation 4.0 computer D) Don't upgrade the Windows NT Workstation 4.0 computer, but install the Directory Service Client on it instead
 
Answer & Explanation Answer: B) Upgrade the Windows NT Workstation 4.0 computer to Windows 2000 Professional

Explanation:

Upgrading the computer to Windows 2000 Professional is probably the best choice given that the current operating system is Windows NT Workstation 4.0 (which upgrades easily to Windows 2000 Professional) and the fact that the computer has 12 additional applications installed on it that would need to be reinstalled and reconfigured if a clean install was performed.

Report Error

View Answer Report Error Discuss

0 2393
Q:

In Which part of the Windows 2000 architecture do applications run in?

A) User mode B) Kernel mode
C) Window Manager D) Executive Services
 
Answer & Explanation Answer: A) User mode

Explanation:

Applications and their subsystems  run in user mode.

Report Error

View Answer Report Error Discuss

0 2376
Q:

You plan to install Windows 7 by using a Windows 7 DVD.
You need to perform an automated installation of Windows 7.
What should you do?

A) Create an answer file named oobe.xml. Copy the file to a network share. B) Create an answer file named winnt.sif. Place the file on a removable drive.
C) Create an answer file named sysprep.inf. Copy the file to a network share. D) Create an answer file named autounattend.xml. Place the file on a removable drive.
 
Answer & Explanation Answer: D) Create an answer file named autounattend.xml. Place the file on a removable drive.

Explanation:
Report Error

View Answer Report Error Discuss

1 2353
Q:

You use Microsoft Visual Studio 2010 and Microsoft .NET Framework 4 to create an
application. The application connects to a Microsoft SQL Server 2008 database. The database includes a table named dbo.


Documents that contains a column with large binary dat a. You are creating the Data Access Layer (DAL). You add the following code segment to query the dbo.Documents table. (Line numbers are included for reference only.)


01public void LoadDocuments(DbConnection cnx)
02{
03var cmd = cnx.CreateCommand();
04cmd.CommandText = "SELECT * FROM dbo.Documents";
05...
06cnx.Open();
07
08ReadDocument(reader); }


You need to ensure that data can be read as a stream. Which code segment should you insert at line 07?

A) var reader = cmd.ExecuteReader(CommandBehavior.Default); B) var reader = cmd.ExecuteReader(CommandBehavior.SchemaOnly);
C) var reader = cmd.ExecuteReader(CommandBehavior.KeyInfo); D) var reader = cmd.ExecuteReader(CommandBehavior.SequentialAccess);
 
Answer & Explanation Answer: D) var reader = cmd.ExecuteReader(CommandBehavior.SequentialAccess);

Explanation:
Report Error

View Answer Report Error Discuss

0 2345