Tag Archives: MCITP Training

70-450: PRO: Designing, Optimizing and Maintaining a Database Administrative Solution Using Microsoft SQL Server 2008


QUESTION 1
You work as a database administrator at ABC.com. You are in the process of preparing the
deployment of a new database that will have 45 gigabytes storage space for the transaction log
file, and 280 gigabytes storage space for the database data file.
There are approximately six 120 GB disk drives available for the database in the storage array.
ABC.com contains a RAID controller that supports RAID levels 0, 1, 5 and 10. The disks are on
the RAID controller. You have received an instruction from the CIO to make sure that the
transaction log’s write performance runs at optimum. The CIO has also instructed you to make
sure that in the event of a drive failure, the database and transaction log files are protected.
To achieve this goal, you decide to configure a storage solution.
Which of the following actions should you take?

A. You should consider using a RAID 1 volume as well as a RAID 5 volume in your storage configuration.
B. You should consider using a RAID 1 volume as well as a RAID 10 volume in your storage configuration.
C. You should consider using a RAID 3 volume as well as a RAID 5 volume in your storage configuration.
D. You should consider using a RAID 1 volume as well as a RAID 3 volume in your storage configuration.

Answer: A

Explanation:


QUESTION 2
You work as a database administrator at ABC.com. ABC.com has a database server named ABCDB04
with a SQL Server 2008 instance that includes an extensive mission-critical database that is
constantly being used ABC-DB04 has a quad-core motherboard with four CPUs.
When it is reported that ABC-DB04 often encounters CPU pressure, you receive an instruction
from management to make sure that the accessible CPU cycles are not exhausted by online index rebuilds.
Which of the following actions should you take?

A. You should make use of the affinity I/O mask option.
B. You should make use of the optimize for ad hoc workloads option.
C. You should make use of the affinity mask option.
D. You should make use of the max degree of parallelism option.

Answer: D

Explanation:


QUESTION 3
You work as a database administrator at ABC.com. ABC.com has a database server named ABCDB01
with a SQL Server 2008 instance.
During routine monitoring on ABC-DB01, you discover that the amount of CXPACKET waits
experienced by the instance is low, while the amount of lazy writer waits is abundant.
You have been instructed to enhance the operation of the instance to ensure productivity.
Which of the following actions should you take?

A. You should consider setting up the Windows System Monitoring tool to better the performance.
B. You should consider setting up the Asynchronous database mirroring to better the performance.
C. You should consider using the SQLAGENT.OUT log to better the performance.
D. You should consider setting up the software non-uniform memory access (soft-NUMA) to better the performance.

Answer: D

Explanation:


QUESTION 4
You work as a database administrator at ABC.com. ABC.com has a database server named ABCDB01.
ABC-DB01 is configured with 4 quad-core processors, 80 gigabytes of RAM, and multiple
independent raid volumes.
You are in the process of using a transactional database on the instance. It is anticipated that the
transactional database will have a significant amount of INSERT, UPDATE, and DELETE
activities, which incorporates the creation of new tables.
You receive an instruction from management to minimize the contention in the storage allocation
structures so that database performance is optimized, and the disk bandwidth maximized.
Which of the following actions should you take?

A. You should consider enabling Server Auditing.
B. You should consider using multiple data files for the database.
C. You should consider using row-level compression.
D. You should consider using the checksum page verify option.

Answer: B

Explanation:


QUESTION 5
You work as a database administrator at ABC.com.
ABC.com has informed you that a new database, named ABCData, has to be installed on a SQL
Server 2008 instance. ABCData is made up of several schemas, of which one will host a
significant amount of read-only reference information. Information is regularly inserted and
updated on ABCData.
You have received instructions from the management to configure a physical database structure
that enhances the backup operation.
Which of the following actions should you take?

A. This can be accomplished by using multiple filegroups and a single log file to set up the database.
B. This can be accomplished by using caching on the multiple data files.
C. This can be accomplished by using multiple downstream servers to create the database.
D. This can be accomplished by using the Database Engine Tuning Advisor tool to create the database.

Answer: A

Explanation:


MCTS Training, MCITP Trainnig

Best Microsoft MCTS Certification, Microsoft MCITP Training at certkingdom.com

70-451 – PRO: Designing Database Solutions and Data Access Using Microsoft SQL Server 2008

QUESTION 1
You work as a database developer at Certkingdom.com. You need to plan a SQL Server 2008 database
that will be accessed by mobile users.
The database must be able to profile data before importing it from heterogeneous data sources,
including Microsoft Office Excel, Microsoft SQL Server 2000, Microsoft SQL Server 2005, and
CSV files. In addition, Certkingdom.com’s mobile users must have collaboration and offline capabilities
and they must be able to use heterogeneous data stores.
How should you plan your database if you want your design to use the least amount of
administrative effort?

A. You should make use of the Analysis Services and the Notification Services.
B. You should make use of the SQL Server Agent.
C. You should make use of the Integration Services and the Microsoft Sync Framework.
D. You should make use of the Service Broker and SQL Mail.

Answer: C


QUESTION 2
Certkingdom.com has hired you to design a SQL Server 2008 database for its online retail application. The
database must be able to run both Transact-SQL statements as well as SQL Server Integration
Services (SSIS) packages. Certkingdom.com plans on running scheduled maintenance tasks on the
database and they want the database to send alerts and notifications to the network
administrators.
How should you design this database?

A. You should make use of the Analysis Services and the Notification Services.
B. You should make use of the Reporting Services.
C. You should make use of SQL Server Agent.
D. You should make use of the Service Broker and the Notification Services.

Answer: C


QUESTION 3
Certkingdom.com hires you as their database administrator of their SQL Server 2008 database
infrastructure. You need to optimize a very large database table for query execution against string
data. The database contains several million rows of data. You need to ensure that the queries are
performed in order of proximity and are completed in the least amount of time possible.
How should you configure the database?

A. You should create a partitioned view on the table.
B. You should create a nonclustered index on the table.
C. You should make use of the Analysis Services.
D. You should enable Full-Text-Search.

Answer: D


QUESTION 4
You work as a database developer at Certkingdom.com. You need to design a SQL Server 2008 database
named Sales. The Sales database will have tables named Customers with an identity column
named CustomerID, Products with and identity column named ProductID, SalesReps with an
identity column named RepID, Orders with an identity column named OrderID, and Invoices with
an identity column named InvoiceID.
Sales representatives are assigned to specific customers with each Sales Representative being
assigned to more than one customer.
You need to ensure that the database is normalized and that it represents the relationship
between the Sales Representatives and the customers.
How should you design your database?

A. You should create a foreign key constraint between the SalesReps and Customers tables.
B. You should make use of the hierarchyid data type on the SalesReps table.
C. You should add a SalesRep2Customer table with foreign key constraints to the SalesReps and
Customers tables.
D. You should make use of a table-valued function on the SalesReps table.
E. You should make use of a view based on the SalesReps and Customers tables.

Answer: C

Explanation:


MCTS Training, MCITP Trainnig

Best Microsoft MCTS Certification, Microsoft MCITP Training at certkingdom.com

No apps, no success for Windows 8 and RT, say analysts

‘You get just one chance with consumers,’ says expert about app inventory for tablets, convertibles

Computerworld – The success of Windows RT, and to a lesser extent Windows 8, will hinge on the quality and quantity of apps in the Windows Store next month, analysts said today.

And they don’t like what they’ve seen so far.

“History shows that for consumers, the first impression is the one that sticks,” said Patrick Moorhead, principal analyst with Moor Insights & Strategy, referring to app availability. Yet, just weeks before the Oct. 26 launch of Windows 8 and Windows RT, the Windows Store inventory is not only light, but doesn’t include many of the apps consumers see as must-haves, he continued.

 

MCTS Training, MCITP Trainnig
Best Microsoft MCTS Certification, Microsoft MCITP Training at certkingdom.com

Moorhead pointed out several recent tablet failures, including Hewlett-Packard’s TouchPad and RIM’s BlackBerry PlayBook, and said that one commonality was their lack of high-quality apps. Microsoft risks following in their footsteps if it can’t demonstrate its app store is well-stocked at launch.

“You get just one chance with consumers,” Moorhead argued. “Microsoft is commercial first, consumer second. With the commercial market, you can roll out and then grow [application availability]. But in the consumer market, it has to succeed immediately.”

Other experts also worried about the app situation.

“At the end of the day, it’s all going to come down to the Windows Store,” said Michael Cherry, an analyst with Directions on Microsoft. “There’s been so much wailing and gnashing of teeth over Windows 8, most of it around the [“Modern”] interface, but over time I’m adapting to the UI. But here’s what my big problem is as of today: I have yet to find an app that I just have to have.”

The Windows Store is the only distribution center for Windows 8 and Windows RT apps written for what Microsoft calls the “Modern” interface, the tile-based environment borrowed from Windows Phone. Like Apple’s iOS App Store and its OS X Mac App Store, the Windows Store is curated — Microsoft reviews each submission and is the final arbiter of what can be sold or given way for free.

There are currently just over 1,000 apps in the Windows Store, a far cry from the more than 200,000 in Apple’s App Store written specifically for the iPad.

“Apps are certainly critical,” said Michael Silver, of Gartner, who included a robust app store as one of a handful of must-dos for Microsoft. If the Windows Store isn’t populated by enough apps, or at least enough of the top-selling apps available on other platforms — what Silver called a “critical mass” — Microsoft will have its work cut out for it.

“If they don’t [have the right apps], Windows 8 and Windows RT will be challenged in the consumer market,” said Silver. “But I wouldn’t count them out if they don’t get it right the first time. They’ll just spend another half billion dollars on marketing, and risk [Windows 8/RT] getting a bad reputation, like Vista did. So it’s a lot easier if they get it right the first time.”

Although a lack of apps may affect Windows 8 less than Windows RT, since the former can run traditional, or “legacy” apps on the Windows 7-style desktop, a lightly-stocked Windows Store could stymie sales of touch-based PCs, tablets and so-called “convertibles” — hardware that combines elements of both tablets and notebooks — powered by Windows 8.

“Windows 8 is going to do just fine, particularly because consumers won’t have a choice,” said Moorhead. “But the hardware being trumpeted is not as inexpensive as a tablet, and more expensive than a traditional notebook. People are going to pay more for that touch screen, and they’re going to want to know what kind of apps they can run on it.”

Cherry agreed.

“If there’s little you can do with [a new touch-enabled PC], it will naturally throttle the market,” Cherry said.

Today’s Windows Store situation, of course, won’t be the same on Oct. 26, analysts acknowledged. Both Cherry and Silver believe that Microsoft is purposefully withholding some apps to tout them next month during the launch of the new operating systems.

“We don’t know how many have been submitted, we don’t know what’s in the pipeline,” said Silver. “And that blends into the next point: Windows 8 will be a huge market that developers can’t afford to ignore.”

Even so, Silver wondered why Microsoft hasn’t made more of upcoming apps. “They do need to get stuff in the store pretty soon,” he said. “And while they may be waiting to make some major announcements, we think they need to introduce a major application a week to build momentum.”

The lack of publicity around the Windows Store is puzzling, agreed Moorhead, who blamed Microsoft’s new, more secretive communications strategy, which he has criticized before.

“The level of excitement and the value proposition about Windows 8 has been in question,” Moorhead said. “They’ve changed the way they communicate with the public; they’ve been in ‘stealth’ mode for a long time now. And because of that, there’s a healthy amount of skepticism about Windows 8 out there.”

Silver has noticed the change, too. “Microsoft decided it wanted to be more like Apple [with Windows 8]” he said, ticking off a number of similarities, from the way it debuted the Surface tablets to the “walled garden” approach to apps and the Windows Store. “Part of that is more secrecy,” Silver added.

But the lack of apps could be more than a tactical move, said Cherry, who has been working on a “Modern” app of his own for weeks now.

“Look at the one Office app Microsoft has released, OneNote MX,” said Cherry. “It has minimal functionality. If Microsoft’s own people have trouble creating a good app, I have to assume it’s hard to do.”

Moorhead, too, cited developers as a potential bottleneck.

“A lot of developers will have a wait-and-see attitude about Windows 8,” said Moorhead. “If they’re not seeing their competitors in the Windows Store, they’re not going to be motivated to develop for it.”

And mobile developers don’t grow on trees. “A lot of these developers were first taken by Apple, then shared with Android. So it comes down to how many people are out there who can actually do [Modern apps] at this time,” Moorhead said.

Microsoft first opened the Windows Store in February when it launched Windows 8 Consumer Preview, but restricted submissions to free apps until last month when it released the final RTM, for “release to manufacturing,” code.

As of Saturday, the Windows Store had 1,080 apps, 187 of them paid apps, according to McAkins Online, which tracks the number available.

“But without the right apps, it’s like buying an electric car that you can’t find a plug for,” said Moorhead.

 

MCTS Training, MCITP Trainnig
Best Microsoft Microsoft-MCITP-Database-Developer-2008 Certification,
Microsoft Microsoft-MCITP-Microsoft-Exchange-Server-2010 Training at certkingdom.com

70-664 Q&A / Study Guide / Testing Engine / Videos

MCTS Training, MCITP Trainnig

Best Microsoft MCTS Certification, Microsoft MCITP Training at certkingdom.com


QUESTION 1
You work as a Network Administrator at Certkingdom.com. You have been asked to deploy Lync Server
2010 as a VOIP telephony and video conferencing solution for the company.
Company management is concerned about the possible network load imposed by the VoIP and
video conferencing features of Lync Server 2010.
To manage the network bandwidth used by the system, you configure Call Admission Control.
How can you enable the Call Admission Control feature?

A. By running the Set-CsNetworkInterSitePolicy cmdlet.
B. By running the Set-CsNetworkConfiguration cmdlet.
C. By running the Set-CsCpsConfiguration cmdlet.
D. By running the Set-CsVoiceConfiguration cmdlet.

Answer: B

Explanation:


QUESTION 2
You work as a Network Administrator at Certkingdom.com. The company’s communication system is
provided by a Lync Server 2010 infrastructure.
You have configured a bandwidth policy to limit the network bandwidth used by real-time audio
and video sessions.
You want to override the policy for the Managing Director of the company.
What type of policy should you create first to enable you to override the bandwidth policy for the
Managing Director?

A. You should first create a Conferencing Policy.
B. You should first create a Client Version Policy.
C. You should first create a Voice Policy.
D. You should first create an External Access Policy.

Answer: C

Explanation:


QUESTION 3
You work as a Network Administrator at Certkingdom.com. You are configuring a new Lync Server 2010 infrastructure.
You want the company phone number to be displayed in the format +11112222333 when users on
the Public Switched Telephone Network (PSTN) receive calls from users using the Lync Server
system.
Which cmdlet should you run?

A. You should run the Set-CsVoiceConfiguration cmdlet.
B. You should run the Set-CsNetworkInterSitePolicy cmdlet.
C. You should run the Set-CsVoicePolicy cmdlet.
D. You should run the Set-CsLocationPolicy cmdlet.

Answer: C

Explanation:


QUESTION 4
Your work as a Network Administrator at Certkingdom.com includes the management of the Lync Server
2010 infrastructure.
The Lync Server 2010 infrastructure includes a Mediation Server pool that includes three servers
named Certkingdom-Med1, Certkingdom-Med2 and Certkingdom-Med3.
You need to take Certkingdom-Med3 offline for maintenance.
Which two of the following steps should you perform to allow you to take Certkingdom-Med3 offline without
disconnecting any current calls in progress?

A. Navigate to the Lync Server 2010 Topology Builder.
B. Navigate to the Lync Server 2010 Control Panel.
C. Modify the properties of the Mediation Pool.
D. Modify the properties of Certkingdom-Med3.
E. Create a new Mediation Pool.

Answer: B,D

Explanation:


QUESTION 5
You work as a Network Administrator at Certkingdom.com. You are in the process of deploying a Lync
Server 2010 infrastructure for the company.
You have configured dial-in conferencing and verified that it is functioning properly.
You now want to notify users about the availability of the feature. The notification should include
introductory instructions such as the initial PIN and the link to the Dial-in Conferencing Settings
webpage.
What is the easiest way to send the notification with the required information to the users?

A. Open the Lync Management Shell and run the New-CsAnnouncement cmdlet.
B. Open the Lync Management Shell and run the Set-CsPinSendCAWelcomeMail cmdlet.
C. Open the Lync Management Shell and run the New-CsConferenceDirectory cmdlet.
D. Open the Lync Management Shell and run the New-CsConferencingConfiguration cmdlet.

Answer: B

Explanation:


MCTS Training, MCITP Trainnig

Best Microsoft MCTS Certification, Microsoft MCITP Training at certkingdom.com

MCITP Online Training

It is certainly more difficult than the MCSE Windows Server 2003. This doesn’t mean the tests are unfairly difficult, just that they are more challenging. As a result, your commitment in time and resources denotes your willingness to earn this certification which not everyone is willing to put in. There are well over 60,000 people certified with some sort of MCITP Certification worldwide. Of the over 13 different MCITP Certification windows 7 configuration tracks (which includes Windows 7) that are available the most popular certification is the MCITP Enterprise Administrator.The next most popular is the MCITP Enterprise Support Technician with over 10,000 and shortly followed by MCITP Server Administrator with over 9,000 people certified.

 

MCTS Training, MCITP Trainnig

Best Microsoft MCTS Certification, Microsoft MCITP Training at certkingdom.com Continue reading MCITP Online Training

70-630 Q&A / Study Guide / Testing Engine

MCTS Certification, MCITP Certification

Microsoft MCTS Certification, MCITP Certification and over 2000+
Exams with Life Time Access Membership at https:://www.actualkey.com

 


QUESTION 1
You work as a SharePoint Server administrator at Certkingdom.com. You have just the completed the
insertion of new content in the root site. However, later that day the users complained that the new
content is not added in the search results when they run searches on the root site. You need to
make sure that the relevent content is included in query results.
What actions should you take to perform this task?

A. The best option is to set the Complete Through constraint.
B. The best option is to reset the crawled content and start a full crawl.
C. The best option is to set the Resource Center view.
D. The best option is to edit the CSS style sheet to include the new content.

Answer: B

Explanation:


QUESTION 2
You work as a SharePoint Server administrator at Certkingdom.com. One of Certkingdom.com branch offices
consists of a Windows Server 2003 Active Directory domain. You have received instructions from
the CIO to extend SharePoint user profiles to include the userID property from the users’ domain accounts.
What actions should you take to perform this task?

A. The best option is to add a Microsoft Operations Manager (MOM) server.
B. The best option is to create a custom Microsoft Management Console that can access the branch office.
C. The best option is to create a new user profile property that is configured with import mapping.
D. The best option is to run the SharePoint Products and Technologies Configuration.

Answer: C

Explanation:


QUESTION 3
You work as a SharePoint Server administrator at Certkingdom.com. The Certkingdom.com network contains a
SharePoint Portal Server 2003 server named Certkingdom-SR44. Certkingdom-SR44 hosts a SharePoint portal
that is accessed through a hyperlink on the users’ client computers. The hyperlink points to
http://www.Certkingdom.com/ms/certifications.
You want to migrate Certkingdom-SR44 to Microsoft Office SharePoint Server (MOSS) 2007. You need to
ensure that the SharePoint portal will be accessible after the migration.
What actions should you take to perform this task?

A. By running the stsadm command with the osearch operator.
B. By editing the hyperlink so it will point to the new URL of the migrated content.
C. By running the stsadm command with the enumsites operator.
D. By enabling the Shared Services Provider Synchronizing job.

Answer: B

Explanation:


QUESTION 4
You work as a SharePoint Server administrator at Certkingdom.com. Certkingdom.com contains a Microsoft
Content Management Server 2002 computer named Certkingdom-SR11. You have received instructions
from the CIO to uCertkingdomrade Certkingdom-SR11 to Microsoft Office SharePoint Server (MOSS) 2007.
What actions should you take to perform this task?

A. The best option is to run the stsadm command with the addwppack operator.
B. The best option is to run the stsadm command with the installfeature operator.
C. The best option is to run the CMS Assessment utility on Certkingdom-SR11.
D. The best option is to run the Optimize HTML command in SharePoint Designer.

Answer: C

Explanation:


QUESTION 5
You work as a SharePoint Server administrator at Certkingdom.com. Certkingdom.com has a Development
department with a database server named Certkingdom-DB02. Certkingdom-DB02 hosts a database named
CkdProducts. Certkingdom.com has implemented a Web application in the SharePoint site that must
access data in CkdProducts.
What actions should you take?

A. The best option is to obtain and install an application definition file from the Development department.
B. The best option is to enable the Save for Sharing option, then save CkdProducts in the Development department.
C. The best option is to save CkdProducts as a Microsoft Excel 2007 worksheet.
D. The best option is to create a custom group in the Site Settings page to the trusted file locations list.

Answer: A

Explanation:


MCTS Certification, MCITP Certification

Microsoft MCTS Certification, MCITP Certification and over 2000+
Exams with Life Time Access Membership at https:://www.actualkey.com

70-620 Q&A / Study Guide / Testing Engine

MCTS Training, MCITP Trainnig

Best Microsoft MCTS Certification, Microsoft MCITP Training
at certkingdom.com

QUESTION 1
You are employed as a Desktop Technician at Certkingdom.com. The Certkingdom.com network consists of a
single Active Directory domain named Certkingdom.com.
Certkingdom.com has acquired a computer named Certkingdom-WS624. The operating system on the computer is
Microsoft Windows XP Professional and its specifications are:
• 1 GB of RAM
• 2GHz processor
• 64-MB video adapter
• 60-GB hard disk with 15 GB of free space
You received instructions for installation of Microsoft Windows Vista on Certkingdom-WS624.
After performing fresh installation you need to identify the which of uCertkingdomrade is needed for
supporting Microsoft Windows Aero Experience?

A. You need to uCertkingdomrade the hard disk to 100 GB.
B. You need to clear 40 GB of free space on the hard disk.
C. You need to uCertkingdomrade the memory to 2 GB of RAM.
D. You need to install a 128 MB of RAM video adapter supporting Microsoft DirectX 9, and
Microsoft Pixel Shader 2.0.
E. You need to uCertkingdomrade the processor to a dual-core processor.

Answer: D

Explanation: To support the Microsoft Windows Aero Experience, you need a video adapter that
has at least 128 MB of RAM, support for Microsoft DirectX 9, and Microsoft Pixel Shader 2.0.


QUESTION 2
You are employed as a network administrator at Certkingdom.com. The Certkingdom.com network consists of a
single Active Directory domain named Certkingdom.com.
A client computer named Certkingdom-WS620 is running Microsoft Windows 2000 with Service Pack 3.
Certkingdom-WS620 also runs some legacy applications. The Certkingdom.com management wants all computers
to be running Microsoft Windows Vista. To this end you have received instructions from the CIO to
uCertkingdomrade Certkingdom-WS620 to Microsoft Windows Vista.
Which two steps should you take to uCertkingdomrade Certkingdom-WS620 and keeping the current applications
intact and not requiring reinstallation?

A. By Installing Windows Vista into a separate partition.
B. By using the Windows Easy Transfer wizard.
C. By uCertkingdomrading to Microsoft Windows XP Professional.
D. By uCertkingdomrading to Windows Vista.
E. By installing the latest version of the Service Pack.
F. By copying your user profile to a removable media.
G. By Performing a clean installation of Windows Vista.
H. By Copying the user profile to the C:\Windows\Users directory.

Answer: C,D

Explanation: To move to Windows Vista without having to reinstall your applications, you need to
do an ‘in-place’ uCertkingdomrade. However, you cannot uCertkingdomrade directly to Windows Vista from
Windows 2000 Professional (you would need a clean install which would delete your applications).
Therefore, you need to uCertkingdomrade to Windows XP Professional first. Then you can uCertkingdomrade to
Windows Vista and keep the applications.


QUESTION 3
You are employed as a network administrator at Certkingdom.com. The Certkingdom.com network consists of a
single Active Directory domain named Certkingdom.com. All client computers on the Certkingdom.com network run
Microsoft Windows Vista.
Certkingdom.com contains a client computer named Certkingdom-WS621. Certkingdom-WS621 has been assigned to a
Certkingdom.com user named Andy Booth. You received a report from Andy Booth complaining that CertkingdomWS621
is performing slower than it should. You have a suspicion that it could be malware that is
causing the problem.
How can you find out what is causing the problems?

A. You need to run a Windows Defender scan.
B. You need to view the processes list in Task manager.
C. You need to view the startup items in the System Configuration utility.
D. You need to run Disk Defragmenter.

Answer: A

Explanation: Windows Defender is an application that can scan for malware or other potentially
harmful files. You can initiate a Windows Defender scan to scan all the files on your system for
malware or other potentially harmful files.


QUESTION 4
You are employed as a network technician at Certkingdom.com. The Certkingdom.com network consists of a
single Active Directory domain named Certkingdom.com. All client computers on the Certkingdom.com network run
Microsoft Windows Vista.
A Certkingdom.com user named Andy Booth has been assigned a client computer named Certkingdom-WS629.
One morning Andy Booth complains that Certkingdom-WS629 does not produce any sound when he
views a video file clip. You open the Device Manager as shown below.

What configuration change should you make to Certkingdom-WS629?

A. You need to update the driver for the audio device.
B. You need to uninstall the device then run a hardware scan.
C. You need to enable the audio device in Device Manager.
D. You need to change the IRQ for the device.
E. You need to run Microsoft Windows Update and install the latest updates for Certkingdom-WS629.
F. You need to replace the audio device with one that is compatible with Windows Vista.

Answer: C

Explanation: The icon by the sound device (the Creative SB Live! Series device) shows that the
device is disabled. Therefore, to receive audio output from Certkingdom-WS629, you simply need to
enable the device. You can do this by right-clicking on the device and selecting Enable.


QUESTION 5
You are employed as a help desk technician at Certkingdom.com. The Certkingdom.com network consists of a
Workgroup named Certkingdom. The client computers on the Certkingdom.com network run a mix of Windows XP
Professional and Windows Vista. You
The Certkingdom.com management wants to conduct a meeting with all their users. You need to facilitate
this meeting. However, invitation to the Certkingdom.com users are not getting sent as they do not appear
in the Invite people list of the Microsoft Windows Meeting Space meeting.
What should you do to be able to invite all Certkingdom.com users to the Windows Meeting Space
meetings? (Each correct answer presents part of the solution. Choose TWO.)

A. You need to instruct the Certkingdom.com users with Windows XP Professional computers to create an
exception for invitations from Windows Meeting Space in the Microsoft Windows Firewall.
B. You need to uCertkingdomrade the Windows XP Professional computers to Windows Vista.
C. You need to configure the Windows XP Professional computers to use Microsoft NetMeeting to
connect to the meeting.
D. You need to instruct all members of the Certkingdom workgroup to sign in to the People Near Me feature.
E. You need to install Service Pack 3 on the Windows XP Professional computers.

Answer: B,D

Explanation:


MCTS Training, MCITP Trainnig

Best Microsoft MCTS Certification, Microsoft MCITP Training
at certkingdom.com

70-659 Q&A / Study Guide / Testing Engine

MCTS Training, MCITP Trainnig

Best Microsoft MCTS Certification, Microsoft MCITP Training at certkingdom.com


QUESTION 1
You work as a Network Administrator at Certkingdom.com. The network consists of a single Active
Directory Domain Services (AD DS) domain. All servers run Windows Server 2008 R2 and all
client computers Windows 7 Professional.
The company network consists of an internal LAN and a perimeter network. The two networks are
separated by an internal corporate firewall. An external corporate firewall connects the perimeter
network to the Internet.
The network includes virtual machines (VMs) running on host servers contained in both the
internal network and the perimeter network.
You have recently installed a server named Certkingdom-VMM1 on the internal network. Certkingdom-VMM1 runs
Microsoft System Center Virtual Machine Manager (VMM) 2008 R2 and will be used to manage
the virtual environment.
You are now in the process of deploying VMM agents on the host servers. You have configured
the port number for the VMM agents and configured the internal corporate firewall to allow
communications on the appropriate port number.
What else do you need to configure to ensure that the VMM agents can communicate with CertkingdomVMM1?

A. You need to configure the name of the VMM server (Certkingdom-VMM1).
B. You need to configure the Fully Qualified Domain Name (FQDN) of a domain controller.
C. You need to configure the name of a SQL Server.
D. You need to configure an encryption key.

Answer: D

Explanation:


QUESTION 2
You work as a Network Administrator at Certkingdom.com. The network consists of a single Active
Directory Domain Services (AD DS) domain. All servers run Windows Server 2008 R2 and all
client computers Windows 7 Professional.
The company network consists of two subnets. The Development subnet is used by the
Development department. The Production subnet is used by all other company departments.
You install a Windows Server 2008 R2 Hyper-V server named Certkingdom-VMHost1 in the Production
subnet. Certkingdom-VMHost1 contains two network interface cards named NIC1 and NIC2. You have
configured NIC1 as a management interface.
You want to configure Certkingdom-VMHost1 to host virtual machines on both the Production subnet and
the Development subnet.
How should you configure Certkingdom-VMHost1?

A. You should use VLAN tags for the VMs and configure NIC2 to use Trunk Mode.
B. You should assign NIC2 as an additional management interface.
C. You should configure both adapters to support jumbo frames.
D. You should configure NIC1 with an IP address in the Production subnet and configure NIC2
with an IP address in the Development subnet.

Answer: A

Explanation:


QUESTION 3
You work as a Network Administrator at Certkingdom.com. The network consists of a single Active
Directory Domain Services (AD DS) domain. All servers in the network run Windows Server 2008 R2.
A server named Certkingdom-VMM1 runs Microsoft System Center Virtual Machine Manager (VMM) 2008
R2 and is used to manage the company’s virtual environment.
The company includes a Development department. Users in the Development department use
their computers to develop and test software applications for use by other company departments and customers.
You install a Windows Server 2008 R2 Hyper-V server named Certkingdom-VMTest1 in the Development
department. Certkingdom-VMTest1 will host virtual machines (VMs) for the Development department
users to use to test their applications.
You need to ensure that the VMs are completely isolated from production servers.
How can you ensure that the test VMs can communicate with each other while being isolated from
the host server and the rest of the network?

A. By configuring the VMs to connect to a Dedicated virtual network.
B. By configuring the VMs to connect to an Internal virtual network.
C. By configuring the VMs to connect to a Local virtual network.
D. By configuring the VMs to connect to a Private virtual network.

Answer: D

Explanation:


QUESTION 4
You work as a Network Administrator at Certkingdom.com. The network consists of a single Active
Directory Domain Services (AD DS) domain.
You are configuring a virtual environment for the company. You have an iSCSI storage disk array
that will be used to store virtual machines (VMs).
You install a server named Certkingdom-Host1 that runs a Server Core Installation of Windows Server 2008 R2.
You need to configure Certkingdom-Host1 to store to VMs on the iSCSI disk array.
Which two of the following tools could you use?

A. You could use Disk Management.
B. You could use Diskpart.exe.
C. You could use iSCSICLI.exe.
D. You could use iSCSICPL.exe.

Answer: C,D

Explanation:


QUESTION 5
You work as a Network Administrator at Certkingdom.com. The network consists of a single Active
Directory Domain Services (AD DS) domain named Certkingdom.com.
The company network consists of an internal LAN and a perimeter network. To comply with
company security policy, servers located in the perimeter network are not members of the
Certkingdom.com domain.
A Microsoft Hyper-V Server 2008 R2 server named Certkingdom-VMHost1 is located in the perimeter network.
You relocate Certkingdom-VMHost1 into the internal network. You now need to join Certkingdom-VMHost1 to the
Certkingdom.com AD DS domain.
How should you join Certkingdom-VMHost1 to the Certkingdom.com domain?

A. You should use the System Properties control panel applet.
B. You should use the Netsh command line utility.
C. You should use the Hyper-V configuration utility (hvconfig).
D. You should use the dcpromo utility.

Answer: D

Explanation:


MCTS Training, MCITP Trainnig

Best Microsoft MCTS Certification, Microsoft MCITP Training at certkingdom.com

70-576 Q&A / Study Guide / Testing Engine

MCTS Training, MCITP Trainnig

Best Microsoft MCTS Certification, Microsoft MCITP Training
at certkingdom.com


QUESTION 1
You are employed as a SharePoint administrator at CertKingdom.com. CertKingdom.com has a
SharePoint Server 2010 site.
You need to develop a custom workflow for a document approval process that relies on an
approval chain. The approval chain must consist of several reviewers with each reviewer
approving or rejecting the document as part of the approval process. Once a reviewer has
provided his or her feedback, the status of the document must be changed automatically, an
automated email must be sent to the author and the next reviewer in the approval chain must be
notified automatically. The task for the next reviewer should also be created automatically.
Which of the following actions should you take? (Choose Two.)

A. You should consider including an Association form for feedback from reviewers.
B. You should consider including an Initiation form for feedback from reviewers.
C. You should consider including a Modifications form for feedback from reviewers.
D. You should consider including a Task form for feedback from reviewers.
E. You should consider including a Composite activity for approval and rejection.
F. You should consider including a Logged activity for approval and rejection.
G. You should consider including a Simple activity for approval and rejection.

Answer: D,E


QUESTION 2
You are employed as a SharePoint administrator at CertKingdom.com. CertKingdom.com has a
SharePoint Server 2010 site.
You have been tasked with developing a SharePoint Server 2010 feature that contains a feature
receiver. Whenever the SharePoint Server 2010 feature is activated or deactivated, the feature
receiver runs code that interacts with a Web service. This could result in unmanageable errors.
In the event that the Web service does result in errors, the SharePoint Server 2010 feature should
be prevented from activating or deactivating.
You start by wrapping the code in a Try-Catch block.
Which combination of the following actions should you take NEXT? (Choose two.)

A. You should consider having the error logged.
B. You should consider sending an additional request to the Web service in the Catch block.
C. You should consider throwing an exception in the Catch block.
D. You should consider capturing SPException type exceptions only.
E. You should consider throwing an exception in the Finally block.

Answer: A,C


QUESTION 3
You are employed as a SharePoint administrator at CertKingdom.com.
CertKingdom.com has a Windows Server 2008 computer named CERTKINGDOM-SR76 that has a
RAID-0 volume. CERTKINGDOM-SR76 runs SharePoint Server 2010 with a Microsoft SQL Server
Express 2008 database. CERTKINGDOM-SR76 also hosts a SharePoint site that contains 56 GB of
multimedia content. Some of the files that are included in the multimedia content are as big as 18
MB. The SharePoint site to use the standard SharePoint components and features.
You are required to make sure that CERTKINGDOM-SR76’s hard disk is configured for optimum read
performance.
Which combination of the following actions should you take? (Choose two.)

A. You should make use of Filestream storage on the database.
B. You should make use of Filestream storage on the SharePoint site.
C. You should make use of remote Binary Large Object (BLOB) storage on the SharePoint site.
D. You should make use of external Binary Large Object (BLOB) storage on the SharePoint site.
E. You should make use of Binary Large Object (BLOB) storage on the database.

Answer: A,C


QUESTION 4
You are employed as a SharePoint administrator at CertKingdom.com.
CertKingdom.com runs SharePoint Server 2010 with a Microsoft SQL Server Express 2008 database.
SharePoint hosts a site that contains two lists named Customers and Invoices. Certain customers
have numerous invoices.
You have been tasked with making sure that the two lists need relates to each other.
Which two of the following actions should you take? (Choose two.)

A. You should consider create a one-to-one relationship.
B. You should consider create a one-to-many relationship.
C. You should consider create a many-to-one relationship.
D. You should consider including a Lookup column on the Invoices list.
E. You should consider including a Business Data column on the Invoices list.
F. You should consider including an External Data column on the Customers list.
G. You should consider including a column index on the Invoices list.
H. You should consider including a column index on the Customers list.

Answer: B,D


QUESTION 5
You are employed as an application developer at CertKingdom.com. CertKingdom.com has a SharePoint
Server 2010 site.
You have been tasked with developing a SharePoint Server 2010 solution that has workflows
configured to include code on list items, as well as custom pages for adding, viewing, and
updating list items.
Which of the following is the type of solution that you should develop?

A. A SharePoint Server 2010 sandboxed solution.
B. Multiple SharePoint Server 2010 sandboxed solutions.
C. A SharePoint Server 2010 farm solution.
D. A solution containing the Web Part and its related assemblies.

Answer: C


MCTS Training, MCITP Trainnig

Best Microsoft MCTS Certification, Microsoft MCITP Training
at certkingdom.com

70-573 Q & A / Study Guide / Testing Engine

MCTS Training, MCITP Trainnig

Best Microsoft MCTS Certification, Microsoft MCITP Training
at certkingdom.com


QUESTION 1
A site definition has been purchased from another company. It is used to created SharePoint sites.
Now there is a request to modify the home page for the site definition by adding a Web Part.
What actions need to be taken? Select two.

A. Add..
B. Uninstall..
C. Remove…
D. Modify..
E. Install…
F. ..the file CSTemplate.xsd
G. ..the file Onet.xml
H. ..a Feature receiver
I. ..a Feature dependcy
J. ..the file config.web
K. ..the file web.config

Answer: D,G

Explanation:


QUESTION 2
A customized Site Featured need to be made. There is customized site definition.
The Feature of this site definition must be activated for all additional sites which are created using
it.
What actions need to be taken? Select two.

A. Add..
B. Uninstall..
C. Remove…
D. Modify..
E. Install…
F. ..the file CSTemplate.xsd
G. ..the file Onet.xml
H. ..a Feature receiver
I. ..a Feature dependcy
J. ..the file config.web
K. ..the file web.config

Answer: D,G

Explanation:


QUESTION 3
There is third party site definition named CertKingdom.
A file named TemplateCertKingdom.xsd is included in CertKingdom.
TemplateCertKingdom.xsd contains configuration date.
There is a provision handler for CertKingdom.
The information in TemplateCertKingdom.xsd must be read.
The following property should be used.

Answer:


QUESTION 4
There is a specialized program to import data into SharePoint sites.
There is a specialized site definition named CertKingdom created by MS Visual Studio 2010.
The specialized program code must be run whenever a new site is created by using CertKingdom.
What should be done to ensure this? Select three.

A. Modify..
B. Add…
C. Delete…
D. ..file..
E. ..class..
F. ..feature..
G. .. CSTemplate.xsd
H. ..SPItemEventReceiver
I. .. Onet.xml
J. .. receiver
K. .. SPChangeFile
L. .. SPWebEventReceiver
M. .. dependcy
N. .. SPWebProvisioningProvider
O. ..config.web
P. .. web.config

Answer: B,E,N

Explanation:


QUESTION 5
There is a specialized Web Part named CertKingdomWebpart.
There must be a test to check if CertKingdomWebpart generates leaks in the RAM.
What should be done to ensure this? Select two.

A. Modify..
B. Add…
C. Run..
D. Delete…
E. .. WinDbg.exe
F. .. CSTemplate.xsd
G. ..SPItemEventReceiver
H. .. Onet.xml
I. .. SPDisposeCheck.exe
J. .. SPChangeFile
K. .. SPWebEventReceiver
L. .. SPMetal.exe
M. .. SPWebProvisioningProvider
N. ..config.web
O. .. web.config

Answer: C,I

Explanation:


MCTS Training, MCITP Trainnig

Best Microsoft MCTS Certification, Microsoft MCITP Training
at certkingdom.com