Microsoft Certification Questions

Q:

You have a computer that runs Windows 7. The computer connects to the corporate network by using a VPN connection.

 

You need to ensure that you can access the Internet when the VPN connection is active. The solution must prevent Internet traffic from being routed through the VPN connection.


What should you do?

A) Configure a static DNS server address. B) Configure a static IP address and default gateway.
C) Configure the security settings of the VPN connection. D) Configure the advanced TCP/IP settings of the VPN connection.
 
Answer & Explanation Answer: D) Configure the advanced TCP/IP settings of the VPN connection.

Explanation:
Report Error

View Answer Report Error Discuss

1 2806
Q:

Which master role causes the domain controller that performs this role to be the only domain controller in the forest that can add a new domain to the forest?

A) PDC emulator B) Schema master
C) Relative ID master D) Domain naming master
 
Answer & Explanation Answer: D) Domain naming master

Explanation:

The domain naming master is the only domain controller that can add or remove domains to/form the forest

Report Error

View Answer Report Error Discuss

0 2803
Q:

Your network contains an application server named Server1 that runs Windows Server 2003 Service Pack(SP2). You open the Performance tab in Task Manager as shown in the exhibit:

You need to improve the performance of Server1. What should you do?

 

A) Install additional RAM. B) Install a second processor.
C) Decrease the size of the paging file. D) Add the /PAE switch to the Boot.ini file.
 
Answer & Explanation Answer: A) Install additional RAM.

Explanation:
Report Error

View Answer Report Error Discuss

1 2786
Q:

Paint programs keep track of every __________ placed on the screen.

A) Object B) Image
C) Color D) Pixel
 
Answer & Explanation Answer: D) Pixel

Explanation:
Report Error

View Answer Report Error Discuss

7 2783
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 2782
Q:

You want to enable dynamic routing on a Windows 2000 Server computer on your TCP/IP network . You want this computer to manage the propagation of multicast traffic throught your network. Which routing protocol should you use?

A) IGMP Version2, Router and Proxy B) Open Shortest Path First (OSPF)
C) RIP Version 2 for Internet Protocol D) Network Address Translation(NAT)
 
Answer & Explanation Answer: A) IGMP Version2, Router and Proxy

Explanation:

IGMP is the only routing protocol that manages multicast traffic.

Report Error

View Answer Report Error Discuss

0 2761
Q:

Which authentication method supports smart cards?

A) Encrypted authentication (CHAP) B) Extensible authentication protocol (EAP)
C) Shiva Password Authentication Protocol (SPAP) D) Microsoft encrypted authentication version 2(MS-CHAP v2)
 
Answer & Explanation Answer: B) Extensible authentication protocol (EAP)

Explanation:

Only the Extensible authentication protocol (EAP) has the ability to support smart cards.

Report Error

View Answer Report Error Discuss

0 2757
Q:

You use Microsoft Visual Studio 2010 and Microsoft .NET Framework 4 to create an
application. The application connects to a Microsoft SQL Server database. The application has two DataTable objects that reference the Customers and Orders tables in the database. The application contains the following code segment. (Line numbers are included for reference only.)


01DataSet customerOrders = new DataSet();
02customerOrders.EnforceConstraints = true;
03ForeignKeyConstraint ordersFK = new ForeignKeyConstraint("ordersFK",
04customerOrders.Tables["Customers"].Columns["CustomerID"],
05customerOrders.Tables["Orders"].Columns["CustomerID"]);
06
07customerOrders.Tables["Orders"].Constraints.Add(ordersFK);


You need to ensure that an exception is thrown when you attempt to delete Customer records that have related Order records. Which code segment should you insert at line 06?

A) ordersFK.DeleteRule = Rule.SetNull; B) ordersFK.DeleteRule = Rule.None;
C) ordersFK.DeleteRule = Rule.SetDefault; D) ordersFK.DeleteRule = Rule.Cascade;
 
Answer & Explanation Answer: B) ordersFK.DeleteRule = Rule.None;

Explanation:
Report Error

View Answer Report Error Discuss

0 2720