Microsoft Certification Questions

Q:

You are preparing to install Windows 2000 server on a new computer at your office. You want to perform an over-the-network installation. Which method will you use to start the installation ?

A) From a CD-ROM drive B) By using winnt.exe
C) By using winnt32.exe D) By using a network installation startup disk
 
Answer & Explanation Answer: B) By using winnt.exe

Explanation:

winnt.exe is used to start an over-the-network installation of Windows 2000.

Report Error

View Answer Report Error Discuss

1 2324
Q:

You want to use a single group to organise users from multiple domains that perform similar job tasks. Which kind of group should you use?

A) Universal group B) Global group
C) Domain Local group D) Built-in special group
 
Answer & Explanation Answer: A) Universal group

Explanation:

Universal groups are used to organize users from multiple domains  that perform similar job tasks or have similar network access requirements, and / or to control access to shared resources in multiple domains.

Report Error

View Answer Report Error Discuss

0 2321
Q:

You are preparing to upgrade a Windows NT Server 4.0 computer to Windows 2000 Server. You recently obtained upgrade packs for several software applications installed on this computer.When should you apply the upgrade packs?

A) Before the upgrade B) During the upgrade
C) After the upgrade D) You can install the upgrade pack at any time
 
Answer & Explanation Answer: B) During the upgrade

Explanation:

During the upgrade process, the Windows 2000 Setup program will prompt you to provide any upgrade packs you have for installed software applications.

Report Error

View Answer Report Error Discuss

0 2316
Q:

A large document contains meeting notes from all meeting that took place between HR and Finance. You need to find all instances of 'derive' or 'dive' or 'dave'. What would be the most efficient way to find these terms using the Find & Replace dialog box?

A) Choose Wildcard option and search for d?ve B) Choose Wildcard option and search for d*ve
C) Choose Wildcard option and search for ?ve D) Choose Wildcard option and search for *ve
 
Answer & Explanation Answer: B) Choose Wildcard option and search for d*ve

Explanation:
Report Error

View Answer Report Error Discuss

3 2296
Q:

You develop an inventory management application called XYZManagement that will call a Microsoft SQL Server stored procedure named sp_GetDailyXYZSales. The stored procedure will run a query that returns your daily sales total as an output parameter. This total will be displayed to users in a message box.


Your application uses a SqlCommand object to run sp_GetDailyXYZSales. You write the
following code to call sp_GetDailyXYZSales:
SqlConnection cnn = new SqlConnection(myConnString);
SqlCommand cmd = new SqlCommand(“sp_GetDaily XYZ Sales”, cnn);
cmd.CommandType = CommandType.StoredProcedure;
SqlParameter prm = cmd.Parameters.Add(“@ItemTotal”,SqlDbType.Int);
prm.Direction = ParameterDirection.Output;
cnn.Open();
cmd.ExecuteNonQuery();


Now you must write additional code to access the output parameter. Which code segment should you use?

A) MessageBox.Show(?Total is: ? + cmd.Parameters[?@Output?].Value.ToString()); B) MessageBox.Show(?Total is: ? + cmd.Parameters[?@Output?].ToString());
C) MessageBox.Show(?Total is: ? + cmd.Parameters[?@ItemTotal? D) MessageBox.Show(?Total is: ? + cmd.Parameters[?@ItemTotal?
 
Answer & Explanation Answer: C) MessageBox.Show(?Total is: ? + cmd.Parameters[?@ItemTotal?

Explanation:

The @ItemTotal parameter is declared as an output parameter with SQL Server data type INT.We use the Value property of the SQLParameter class to retrieve the value of this parameter. We must also convert the INT value to a string value with the ToString method. We then supply this string to the MessageBox.Show method. 

 

Incorrect Answers


Option A, B:
The @ItemTotal parameter is the output parameter. Using @Output this way is incorrect. Output is a keyword and no variable named @Output has been declared.


Option D:
We must use the Value method to retrieve the value of the parameter..

Report Error

View Answer Report Error Discuss

1 2287
Q:

You want to create and format a simple volume on a Windows 2000 computer. Which tool should you use?

A) Disk Administrator B) Disk Management
C) The Convert.exe command -line utility D) The Format.exe command-line utility
 
Answer & Explanation Answer: B) Disk Management

Explanation:

Windows 2000 includes a powerful tool to manage disks - it's called Disk Management. You can use Disk Management to create and manage several different volume types on a Windows 2000 computer.

Report Error

View Answer Report Error Discuss

1 2286
Q:

Your network consists of a single Active Directory domain. All servers run Windows Server 2003 Service Pack 2 (SP2). All client computers run Windows XP Service Pack 3 (SP3). You install and configure Microsoft Windows Server Update Services (WSUS) 3.0 on a member server named Server1. You create a new Group Policy Object named GPO1 that enables automatic updating. You link GPO1 to the domain. You need to ensure that each client computer obtains software updates from Server1. What should you do?

A) On each client computer, run Gpupdate /Force. B) On each client computer, run wuauclt /detectnow.
C) From GPO1, configure the Enable client side targeting setting. D) From GPO1, configure the Specify intranet Microsoft update service location setting.
 
Answer & Explanation Answer: D) From GPO1, configure the Specify intranet Microsoft update service location setting.

Explanation:
Report Error

View Answer Report Error Discuss

3 2273
Q:

You are upgrading your single master Windows NT Server 4.0 network to Windows 2000. Which computer should you upgrade first?

A) The stand-alone server in the Windows NT 4.0 domain that will become the root domain in your Windows 2000 network B) The primary domain controller (PDC) in the Windows NT 4.0 domain that will become a child domain in your Windows 2000 network
C) The backup domain controller (BDC) in the Windows NT 4.0 domain that will become a child domain in your Windows 2000 network D) The Primary domain controller (PDC) in the Windows NT 4.0 domain that will become the root domain in your Windows 2000 network
 
Answer & Explanation Answer: D) The Primary domain controller (PDC) in the Windows NT 4.0 domain that will become the root domain in your Windows 2000 network

Explanation:

When upgrading from a Windows NT 4.0 single master domain model to windows 2000, the first computer you should upgrade is the PDC of the Windows NT 4.0 domain that will become the root domain of your Windows 2000 network.

Report Error

View Answer Report Error Discuss

0 2270