Thursday, December 8, 2011

Microsoft 70-526 Q & A / Study Guide

MCTS Training, MCITP Trainnig

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


QUESTION 1
You are working as an application developer at Certkingdom.com. The Certkingdom.com
network consists of a single Active Directory domain named Certkingdom.com.
Certkingdom.com uses Visual Studio 2005 as an application platform. Certkingdom.com
consists of a Development department. You as the developer of Certkingdom.com use a
client computer named Certkingdom-WS001 as developing collateral. You have
received instructions to make sure that the PictureBox control's properties cannot
be changed with a logo that you have added to the PictureBox in the designer of the
form base. Before the time you have added a form to the Microsoft Windows Forms
Control Library project and add a PictureBox control to the form. The form is
presenting Certkingdom.com's logo.
What action should you take?

A. You should set the Locked property to False.
B. You should set the Locked property to True.
C. You should set the Modifiers property to Private.
D. You should set the Modifiers property to Protected.

Answer: C

Explanation:
When you set the Modifiers property to Private, the value will show
that only the base form can modify the control.
Incorrect Answers:
A: You should not set it to False, because the control can be moved and resized.
B: If you set the property to True the control cannot be removed of resized. .
D: If you set the Modifiers property to Protected, the value will show that the base form
and any of the form yet to come can modify the control.


QUESTION 2
You are working as an application developer at Certkingdom.com. The Certkingdom.com
network consists of a single Active Directory domain named Certkingdom.com.
Certkingdom.com uses Visual Studio 2005 as an application platform. Certkingdom.com
consists of a Development department. You as the developer of Certkingdom.com use a
client computer named Certkingdom-WS005 as developing collateral. You have just
included a DateTimePicker control to a form. You then set the format property to
Time. During the cause of the day, you check how the DateTimePicker control is
working, and learnt that it does not allow the Certkingdom.com users to change the
selected time.
What should you do to change the control so that it will allow the Certkingdom.com uses
to change the selected time?

A. You should set the ShowUpDown property to True.
B. You should set the ShowSelectBox property to True.
C. You should set the Visible property to False.
D. You should set the Checked property to False.

Answer: A

Explanation:
The ShowUpDown property is by default set on False. You should set
it on True. On False it will show the DateTimePicker must simulate a drop-down
control. This setting will allow the users to set the MonthCalender. If it is set to True
the users can select the time.
Incorrect Answers:
B: The ShowSelectBox will not resolve the problem. This will show if a CheckBox
should be displayed on the DateTimePicker.
C: If you set the Visible property to False, it will hide the DateTimePicker. .
D: You should not set the Checked property to False. If this is set on True, a CheckBox
control will be displayed on the DateTimePicker.


QUESTION 3
You are working as an application developer at Certkingdom.com. The Certkingdom.com
network consists of a single Active Directory domain named Certkingdom.com.
Certkingdom.com uses Visual Studio 2005 as an application platform. Certkingdom.com
consists of a Development department. You as the developer of Certkingdom.com use a
client computer named Certkingdom-WS001 as developing collateral. The manager of
Certkingdom.com wants to have a borderless form with the background shown in the
exhibit.

When the form is view, the manager named Rory Allen does not want the maroon
area to be visible. He only wants the blue to be visible when the form is displayed.
Which of the following code segments should be used?

A. this.TransparencyKey = Color.Maroon;
B. this.BackColor = Color.Maroon;
C. this.TransparencyKey = Color.CornflowerBlue
D. this.BackColor = Color.Transparent;

Answer: A

Explanation:
The TransparencyKey = Color.Maroon specify the color that the
transparent represents the area on the form. With this setting the blue will respond
to the mouse.
Incorrect Answers:
B: You should not use the BackColor = Color.Maroon. This will determine the
background color of the form.
C: You should not use this code segment. The manager does not wan the blue area to be
transparent.
D: You should not use the BackColor = Color.Transparent. The manager does not want
the background to be transparent.


QUESTION 4
You are working as an application developer at Certkingdom.com. The Certkingdom.com
network consists of a single Active Directory domain named Certkingdom.com.
Certkingdom.com uses Visual Studio 2005 as an application platform. Certkingdom.com
consists of a Development department. You as the developer of Certkingdom.com use a
client computer named Certkingdom-WS020 as developing collateral.
You have configured three columns to a form and add a TableLayoutPanel to the
form. You want the two side columns to have a fix width of 200 pixels each and
anchor the four edges of the form to the control. A Certkingdom.com manager wants
the center column to fill the remaining space, when ever the form is resized. You
need to change the ColumnStyle instance that represents the center column?
How should you set the ColumnStyle instance's Size Type property?

A. Set it to AutoSize and the Width property to 100F.
B. Set it to Absolute and the Width property to 100F.
C. Set it to Percent and the Width property to 100F.
D. Set it to AutoSize and the Width property to 0F.

Answer: C

Explanation:
This setting will show that the column should fill the remaining space.
Incorrect Answers:
A: This setting will allow the column to be sized enough so that not any of its child
controls are clipped. In this setting the middle will not occupy the remaining free space.
B: If you set it to Absolute, the value of the Width property will show the number of
pixels for the column.
D: You need to set the ColumnStyle instance's Size Type property to AutoSize and the
Width property to 100F.


QUESTION 5
You are working as an application developer at Certkingdom.com. The Certkingdom.com
network consists of a single Active Directory domain named Certkingdom.com.
Certkingdom.com uses Visual Studio 2005 as an application platform. Certkingdom.com
consists of a Development department. You as the developer of Certkingdom.com use a
client computer named Certkingdom-WS020 as developing collateral. You have added
a SplitContainer control named CertkingdomSplitContainer to a form. You then left the
control to the default properties. To the right-most container of the SplitContainer
control, you need to add a PropertyGrid.
Which of the following code segments should you use?

A. PropertyGrid propertyGrid = new PropertyGrid[];
Panel rightPanel = [Panel] CertkingdomSplitContainer.GetContainerControl[];
rightPanel.ControlAdd[porpertyGrid];
B. PropertyGrid propertyGrid = new PropertyGrid[];
Panel rightPanel = [Panel] CertkingdomSplitContainer.GetNextControl[propertyGrid, true];
rightPanel.ControlAdd[porpertyGrid];
C. PropertyGrid propertyGrid = new PropertyGrid[];
CertkingdomSplitContainer.Container.Add[propertyGrid, "RightPanel"];
D. PropertyGrid propertyGrid = new PropertyGrid[];
CertkingdomSplitContainer.Panel2.Control.Add[propertyGrid];

Answer: D

Explanation:
An area can be divided into two containers, which is separated by a
movable bar, if you use the SplitContainer control. When the two Panels are
created, the left one is the Panel1 and the right is Panel2. You are adding a panel so
it will be on the right. You then need to specify Panel2.
Incorrect Answers:
A, B, C: You should not use the Add method of the SplitContainer.Container to add the
PropertyGrid. You also should not pass a PropertyGrid instance to the GetNextControl
method to return a Panel instance. This will actually retrieve the next tab-ordered control
given the current control. You also should not call the GetContainerControl method to
return a Panel instance. This will return the logical container of the SplitContainer
control.


QUESTION 6
You are working as an application developer at Certkingdom.com. The Certkingdom.com
network consists of a single Active Directory domain named Certkingdom.com.
Certkingdom.com uses Visual Studio 2005 as an application platform. Certkingdom.com
consists of a Development department. You as the developer of Certkingdom.com use a
client computer named Certkingdom-WS020 as developing collateral. You are busy to
develop a Microsoft Windows Forms exam delivery application. This is going to be
used to access the content of the exam via the Internet. A WebBrowser named
testbrowser is added to the control to a form named CertkingdomForm, which is define
as follows:
[PermissionSet[SecurityAction.Demand, Name="FullTrust"]]
[System.Runtime.InteropServices.ComVisible[true]]
public CertkingdomForm : Form
{
public CertkingdomForm[]
{
InitializeComponent[];
}
public void Expire[]
{
}
}
The JavaScript-based timer that is used by the Web site for the exam has a function
to inform the exam delivery application when the time has expired for the exam,
which is the following:
window.external.Expire[];
What should you do to make sure that the Expire method of CertkingdomForm is called
when the JavaScrip function is carry out?

A. You should set the Document.DomDocument property of the browser instance to the
current instance of the CertkingdomForm class.
B. You should set the ObjectForScripting property of the browser instance to the current
instance of the CertkingdomForm class.
C. You should call the AttachEventHandler of the Document property of the browser
instance.
D. You should call the ExecCommand method of the Document property of the browser
instance.

Answer: B

Explanation:
You must set the ObjectForScripting for the browser instance to the
current instance of the CertkingdomForm class.
Incorrect Answers:
A: The property of the Document.DomDocument represents the true DOM object of an
HTML document.
C: The AttachEventHandler allows you to attach a HTML Document Object Model
event to an event handler.
D: The ExecCommand method allows you to execute commands against DOM
documents.


QUESTION 7
You are working as an application developer at Certkingdom.com. The Certkingdom.com
network consists of a single Active Directory domain named Certkingdom.com.
Certkingdom.com uses Visual Studio 2005 as an application platform. Certkingdom.com
consists of a Development department. You as the developer of Certkingdom.com use a
client computer named Certkingdom-WS003 as developing collateral. You have
received instructions to make sure that the PictureBox will display dynamically
loaded images.
Which property will display a static image if any dynamic image fails to load?

A. BackgroundImage
B. Image
C. ErrorImage
D. InitailImage

Answer: C

Explanation:
The ErrorImage property specifies the image that should be
displayed. This will happened only if the image that you are trying to load
dynamically fails.
Incorrect Answers:
A: The BackgroundImage property specifies a background image which is used by the
control.
B: The Image property specifies the image you want the PictureBox control to display.
D: The InitailImage specifies the image you want the PictureBox control to display while
the other one is loading.


QUESTION 8
You are working as an application developer at Certkingdom.com. The Certkingdom.com
network consists of a single Active Directory domain named Certkingdom.com.
Certkingdom.com uses Visual Studio 2005 as an application platform. Certkingdom.com
consists of a Development department. You as the developer of Certkingdom.com use a
client computer named Certkingdom-WS020 as developing collateral. You are
developing a Web service for new updates to query automatically, by use of a
Microsoft Windows Forms application. You then add a NotifyIcon component
named Certkingdomnotify to the application's main form. Whenever a new update is
available you want the following balloon tip to display as seen in the exhibit for 5
seconds.

Which segment should you use to write a code to download the updates if the users
click the balloon tip?

A. Certkingdomnotify.BallonTipClick +=delegate
{
// Download the updates
}
Certkingdomnotify.ShowBallonTip[5000, "New Update Available"; "Click here to download"
, ToolTipIcon.Info];
B. Certkingdomnotify.ShowBallonTip[5];
Certkingdomnotify.BalloonTipIcon = ToolTipIcon.Info;
Certkingdom.Balloon TipTitle = "New Update Available";
Certkingdom.BalloonTipText = "Click here to download";
Certkingdom.Click += delegate
{
// Download the updates
}
C. Certkingdomnotify.BalloonTipIcon = ToolTipIcon.Info;
Certkingdom.Balloon TipTitle = "New Update Available";
Certkingdom.BalloonTipText = "Click here to download";
Certkingdom.Click += delegate
{
// Download the updates
}
Certkingdomnotify.ShowBallonTip[5000];
D. Certkingdomnotify.ShowBallonTip[5, New Update Available", "Click here to download",
ToolTipIcon.Info];
Certkingdom.BalloonTipClick += delegate
{
// Download the updates
}

Answer: A

Explanation:
You should use an event handler, attach the BalloonTipClicked to the
event and call the ShowBalloon Tip method of the NotifyIcon class. When a user
clicks a balloon tip, a BalloonTipClicked event is raised.
Incorrect Answers:
B, C, D: You should not attach the BalloonTipClicked even to an event handler after you
have called the ShowBalloonTip method. Also note that the event is raised when the icon
is clicked and not the balloon tip.


QUESTION 9
You are working as an application developer at Certkingdom.com. The Certkingdom.com
network consists of a single Active Directory domain named Certkingdom.com.
Certkingdom.com uses Visual Studio 2005 as an application platform. Certkingdom.com
consists of a Development department. You as the developer of Certkingdom.com use a
client computer named Certkingdom-WS020 as developing collateral. You are busy
adding a MenuStrip control, which has an instance of a ToolStripMenu item named
testjobItem, to a form in a Microsoft Windows Forms application. This item's
display text is Job. You have received instructions to add two menu items to the Job
menu item. The first item's display text should be Create New Job, and the second
one is Run Job.
Which code segment should you use to programmatically add the two menu items?

A. ToolStripMenuItem createNewJobItem = new ToolStripMenuItem["Create New
Job"];
ToolStripMenuItem runJobItem = new ToolStripMenuItem["Run Job"];
jobItem.Container.Add[createNewJobItem];
jobItem.Container.Add[runJobItem];
B. ToolStripMenuItem createNewJobItem = new ToolStripMenuItem["Create New
Job"];
ToolStripMenuItem runJobItem = new ToolStripMenuItem["Run Job"];
jobItem.Owner.Items.Add[createNewJobItem];
jobItem.Owner.Items.Add[runJobItem];
C. ToolStripMenuItem createNewJobItem = new ToolStripMenuItem["Create New
Job"];
ToolStripMenuItem runJobItem = new ToolStripMenuItem["Run Job"];
ToolStripMenuItem[] items = new ToolStripMenuItem[]{create NewJobItem,
runJobItem}
jobItem.DropDownItems.AddRange[items];
D. ToolStripMenuItem createNewJobItem = new ToolStripMenuItem["Create New
Job"];
ToolStripMenuItem runJobItem = new ToolStripMenuItem["Run Job"];
ToolStripMenuItem[] items = new ToolStripMenuItem[]{create NewJobItem,
runJobItem}
jobItem.Owner.Items.AddRange[items];

Answer: C

Explanation:
For the jobItem instance you should call the AddRange. The property
of the DropDownItems represents a collection of child items of the jobItem instance,
which allows you to add the two items to the job menu item.
Incorrect Answers:
A: This property returns an instance of IContainer, which represents a logical container
for other components.
B: The Owner property returns the Menu script instance that owns the
ToolStripMenuItem instance.
D: This action will add the two new menu at the same level as the Job menu item.


QUESTION 10
You are working as an application developer at Certkingdom.com. The Certkingdom.com
network consists of a single Active Directory domain named Certkingdom.com.
Certkingdom.com uses Visual Studio 2005 as an application platform. Certkingdom.com
consists of a Development department. You as the developer of Certkingdom.com use a
client computer named Certkingdom-WS050 as developing collateral. You were busy
with a task to add a ContextMenuStrip control to a form.
What should you do to display a custom control as a menu item of the
ContextMenuStrip control?

A. Add a ToolstripContainer control to the form and add the custom control to the
Controls collection residing on the toolStripContainer control. You should then add the
ContextMeniStrip control to the controls of the ToolStripContainer control.
B. Of ToolStripControlHost, create an instance and specify your custom control instance
as a parameter to the conductor. You should then the ToolStripControlHost instance to
the Items collection of the ContextMeniStrip control.
C. Add a ToolstripContainer control to the form and add the custom control to the
Controls collection residing on the toolStripContainer control. You should then add the
ToolstripContainer control to the controls of the ContextMeniStrip controls.
D. Of ToolStripControlHost, create an instance and specify your custom control instance
as a parameter to the conductor. You should then the ContextMeniStrip controls to the
collection of the ToolStripControlHost instance.

Answer: B

Explanation:
The ToolStripControlHost class to host a custom control as a menu
item in the ContextMeniStrip. You should also the custom control instance as the
parameter to the constructor.
Incorrect Answers:
A, B, C: The ToolstripContainer should not be used to reach your goal. Furthermore, you
cannot host a ToolstripContainer control as the menu item in a ContextMeniStrip controls.

MCTS Training, MCITP Trainnig

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

Wednesday, December 7, 2011

Microsoft 70-447 - Q & A / Study Guide

MCTS Certification, MCITP Certification

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

QUESTION 1
You work as DBA at Certkingdom.com. You administer two Windows Server 2003
computers named Certkingdom A and Certkingdom B. You install SQL Server 2005 on both
Certkingdom A and Certkingdom B to host a new company database. Certkingdom A hosts a
read-write copy of the company database in which all changes are made. Certkingdom B
subscribes to a publication on Certkingdom A and is only used for reporting. A Windows
domain administrator provides you with a domain user account named SQLSRV to use as
the security context for the SQL Server services. A password policy of 42 days exists in
the Default Domain Group Policy object (GPO). You install the database on Certkingdom A
and Certkingdom B and configure replication. Everything works fine for six weeks, but then
all SQL Server services fail. You need to correct the problem. What should you do?

A. Ask the Windows domain administrator to grant the Log on as service right to the
SQLSRV domain user account.
B. Configure the SQLSRV domain user account with a new strong password. Configure
the new password in the properties of each SQL Server service that failed.
C. Create a local user account on Certkingdom A named Certkingdom A and a local user account
on Certkingdom B named Certkingdom B. Configure Certkingdom A and Certkingdom B to run under the
context of the appropriate local user account.
D. Ask the Windows domain administrator to grant the SQLSRV domain user account
membership in the Domain Admins group.

Answer: B

Explanation:
The Default Domain Group Policy object requires that passwords are
changed every 42 days. In order to correct this problem you have to change the
password in the Active Directory AND configure the new password on both you
SQL Servers to the newly changed password.


QUESTION 2
You are a database administrator of two SQL Server 2005 computers named Certkingdom A
and Certkingdom B. You have a Microsoft .NET application that has been modified so that it
now accesses a database on Certkingdom B in addition to Certkingdom A. You do not want the
user application to connect directly to Certkingdom B. You need to enable the data retrieval
from Certkingdom B while maintaining the ability to assign different permissions to different
users who use the .NET application. What should you do?

A. Change the .NET application to define a new server connection to Certkingdom B.
B. Configure a linked server on Certkingdom A to point to Certkingdom B.
C. Change the stored procedures called by the .NET application to include the
OPENXML command.
D. Configure a linked server on Certkingdom B to point to Certkingdom A.

Answer: B

Explanation:
SQL Server lets you access external data sources from your local
Transact-SQL code. You need to define a linked server for each external data
source you want to access and then configure the security context under which your
distributed queries will run. After you create a linked server, you can use the
Transact-SQL OPENQUERY function to execute your distributed queries.


QUESTION 3
You are a database administrator for Certkingdom.com. Your company uses a different
company's application that is based on SQL Server 2005 Standard Edition. The
application executes a query that uses an index query hint. The index query hint is not
suitable for your environment, but you cannot modify the query. You need to force the
application to use a different query execution plan. What should you do?

A. Create a plan guide for the query.
B. Clear the procedure cache.
C. Create a new covering index on the columns that the query uses.
D. Update the statistics for all of the indexes that the query uses.

Answer: A
Over the past few years, Microsoft SQL Server has increased its
presence in the industry and has reduced its TCO. This reduced TCO is a direct
result, primarily, of the numerous self-tuning mechanisms built into Microsoft(r)
SQL Server. These mechanisms automatically perform tasks that would otherwise
have to be performed by experienced database administrators. One such
mechanism is the cost-based optimizer (CBO) that is used to dynamically generate
query execution plans. The CBO probes several system-wide resource states and
employs many complex, heuristical algorithms to generate the best possible plan for
a given query and the underlying table and index structures. This mechanism works
well for the vast majority of user queries, but there are times when experienced
users need to force a particular query plan, based on some prior knowledge or
insights into future uses.


QUESTION 4
You are a database administrator for Certkingdom.com. Your SQL Server 2005 computer
contains one user database that holds sales transaction information. Users report that the
queries and stored procedures that they use every day are taking progressively longer to
execute. You also notice that the amount of free disk space on the SQL Server computer
is decreasing. You need to create a maintenance plan to correct the performance and
storage problems. What are two possible ways to achieve this goal? (Each correct answer
presents a complete solution. Choose two.)

A. In the SQL Server Maintenance Plan Wizard, use the Check Database Integrity option.
B. In the SQL Server Maintenance Plan Wizard, use the Reorganize Index option.
C. In the SQL Server Maintenance Plan Wizard, use the Shrink Database option.
D. In the SQL Server Maintenance Plan Wizard, use the Clean Up History option.
E. In the SQL Server Maintenance Plan Wizard, use the Execute SQL Server Agent Job
option.

Answer: B,C

Explanation:
When you indexes are not heavily fragmented you can reorganize
indexes, which uses few system resources and runs automatically online. In SQL
Server 2005, certain operations such as large delete operations or -one-time data
loads might leave database files larger than they need to be. SQL Server 2005
enables a DBA to shrink each file within a database to remove unused pages and
regain disk space.


QUESTION 5
You are a database administrator for Certkingdom.com. You are responsible for a SQL
Server 2005 database that has several indexes. You need to write a stored procedure that
checks the indexes for fragmentation. Which Transact-SQL statement should you use?

A. DBCC INDEXDEFRAG
B. SELECT * FROM sys.dm_db_index_physical_stats
C. SELECT * FROM sys.indexes
D. DBCC DBREINDEX

Answer: B

Explanation:
The index_physical_stats function takes five parameters: database_id,
object_id, index_id, partition_id, and mode. This function returns row size and
fragmentation information.


QUESTION 6
You work as DBA at Certkingdom.com. You administer two SQL Server 2005 computers
named Certkingdom A and Certkingdom B. Certkingdom A and Certkingdom B contain a copy of a
database named Sales. The database is replicated between Certkingdom A and Certkingdom B by
using transactional replication. A full backup of each database is performed every night.
Transaction log backups are performed every hour. Replication latency is typically less
than two minutes. One afternoon, the Sales database on Certkingdom A becomes corrupted.
You are unable to repair the database. The Sales database on Certkingdom B is unaffected.
You need to return the Sales database on Certkingdom A to normal operation as quickly as
possible. You must ensure a minimum loss of data and minimal impact to users of either
server. What should you do?

A. Perform a full database backup on Certkingdom B. Restore the backup to Certkingdom A.
B. Restore the most recent full database backup and all transaction logs made since the
full backup was made.
C. Restore only the most recent transaction log backup.
D. Detach the Sales database on Certkingdom B. Copy the database file to Certkingdom A, and
attach the database on both servers.

Answer: A

Explanation:
Detaching the database will not apply to the minimal impact on users
as it will be offline during copy. Restoring only the latest transaction log will not
give you a working database and restoring last full backup and all transaction logs
after that will not apply to the restore normal operations as quickly as possible part
of the requirements.


QUESTION 7
You are a database administrator for Certkingdom.com. The company runs a popular
database-driven Web site against a SQL Server 2005 computer named Certkingdom B. You
need to ensure a quick response time and appropriate audit trail in the event that
Certkingdom B experiences excessive traffic due to denial-of-service (DoS) attacks. Which
two actions should you perform? (Each correct answer presents part of the solution.
Choose two.)

A. Configure the new performance alert to start a SQL Server Profiler trace.
B. Create a new performance alert to monitor the Current Bandwidth counter.
C. Configure the new performance alert to start a Network Monitor capture.
D. Create a new performance alert to monitor the Bytes Total/sec counter.

Answer: C,D

Explanation:
Using alerts, System Monitor tracks specific events and notifies you of
these events as requested. An alert log can monitor the current performance of
selected counters and instances for objects in SQL Server. When a counter exceeds
a given value, the log records the date and time of the event. An event can also
generate a network alert. Characteristic for a typical DoS attack is a large number
of Bytes/sec. Characteristic for a DDoS attack is also a large number of Bytes/sec
but also a large number of connections made from a large number of hosts.


QUESTION 8
You are a database administrator for Certkingdom.com. One of the databases on a SQL
Server 2005 computer contains a stored procedure. Users run this stored procedure to
import data into a table. The stored procedure needs to use the TRUNCATE TABLE
command before importing new data into the table. However, the users who run the
stored procedure do not have permission to truncate the table. You need to provide a way
for the stored procedure to truncate the table before it imports new data. What should you
do?

A. Configure the stored procedure to use the EXECUTE AS command.
B. Configure the stored procedure to be owned by the same database user as the table.
C. Assign the users DELETE permission in the table.
D. Add the users to the db_datawriter fixed database role.

Answer: A

Explanation:
In SQL Server 2005 you can implicitly define the execution context of
the following user-defined modules: functions (except inline table-valued functions),
procedures, queues, and triggers. By specifying the context in which the module is
executed, you can control which user account the SQL Server 2005 Database Engine
uses to validate permissions on objects that are referenced by the module. This
provides additional flexibility and control in managing permissions across the object
chain that exists between user-defined modules and the objects referenced by those
modules. Permissions must be granted to users only on the module itself, without
having to grant them explicit permissions on the referenced objects. Only the user
that the module is running as must have permissions on the objects accessed by the
module.
Syntax:
Functions (except inline table-valued functions), Stored Procedures, and DML Triggers
{ EXEC | EXECUTE } AS { CALLER | SELF | OWNER | 'user_name' }


QUESTION 9
You are a database administrator for Certkingdom.com. You have separate SQL Server 2005
development and production environments. You use the Business Intelligence
Development Studio to create a SQL Server Integration Services (SSIS) package in your
development environment. Then, you use the SSIS package to import data into your
development environment from one of your company's trading partners. You need to
deploy the SSIS package to your production environment. Your production environment
uses different table names than your development environment. What should you do?

A. Save the SQL Server Integration Services (SSIS) package to a file. Copy the file to the
production server. Configure the SSIS package on the production server to use the new
file.
B. Back up the master database and restore it to the production server. Rename the
appropriate tables inside the master database.
C. Create a SQL Server Integration Services (SSIS) package configuration. Build a
deployment utility. Copy the deployment folder for your SSIS project to your production
server. Execute the manifest file.
D. Back up the msdb database and restore it to the production server. Rename the
appropriate tables inside the msdb database.

Answer: C

Explanation:
You have to use a SSIS package to accomplish this but you can not use
the package built for your development environment as the table names differ.


QUESTION 10
You are a database administrator for Certkingdom.com. You notice that one of the data files
on a SQL Server 2005 computer is corrupted. You need to restore the database from the
most recent set of backups. You want to perform this task as quickly as possible, with a
minimum loss of data. What should you do first?

A. Restore the most recent transaction log backup.
B. Restore the most recent full database backup.
C. Perform a full database backup.
D. Perform a transaction log backup.

Answer: D

Explanation:
In order to restore from the most recent set of backups, you have to
first ensure that you can restore all transactions that have occurred between the
time of the backup and the time when the database went corrupt. In order to
accomplish this you should backup the transaction log.

MCTS Certification, MCITP Certification

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

Tuesday, December 6, 2011

Microsoft 70-445 Q & A / Study Tools


MCTS Training, MCITP Trainnig

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




QUESTION
1
You are designing a Microsoft SQL Server 2005 Integration Services (SSIS) package.
The package has the following features:
Two Data Flow tasks and two Control Flow tasks
A success constraint between each Data Flow task and the subsequent Control Flow task
The package uses one transaction for all the tasks.
You need to configure the package so that the two Data Flow tasks use their own transactions.
You also need to ensure that each Control Flow task is enlisted in the same transaction as its
preceding Data Flow task.
Which three actions should you perform? (Each correct answer presents part of the solution.
Choose three.)

A. Change the TransactionOption property to Supported for the package.
B. Change the TransactionOption property to Required for the package.
C. Change the TransactionOption property to Supported for each Data Flow task.
D. Change the TransactionOption property to Required for each Data Flow task.
E. Change the TransactionOption property to Supported for each Control Flow task.
F. Change the TransactionOption property to Required for each Control Flow task.

Answer: A, D, E



QUESTION
2
You are designing a Microsoft SQL Server 2005 Integration Services (SSIS) package. The
package contains 30 Data Flow tasks and 30 Control Flow tasks. The package runs slower than
expected. You need to capture the start time the finish time and the elapsed time for the
validation and execution of the package. What should you do?

A. Enable the OnProgress event handler and use the Control Flow tasks to write the information
to a log.
B. Monitor the Progress tab during the execution of the package, and then monitor the
Execution Results tab.
C. Use the Performance Monitor tool to capture the counters from the SQL Server SSIS Service
object. Analyze the output for the required information.
D. Use the Performance Monitor tool to capture the counters from the SQL Server: SSIS
Pipeline object. Analyze the output for the required information.

Answer: B



QUESTION
3
Microsoft SQL Server Management Studio (SSMS) is installed on your workstation. Microsoft
Business Intelligence Development Studio (BIDS) is not installed on your workstation.
You need to create a package that must meet the following requirements:
It must be transactional.
It must be optimized for 20 tables.
It must be stored securely in the msdb database of a remote server.
What should you do?

A. Create the package by using DTS Designer.
B. Create the package by using the Package Migration Wizard.
C. Create the package by using the Microsoft SQL Server Import and Export Wizard.
D. On the Microsoft SQL Server 2005 Integration Services (SSIS) menu, click the Create
Package submenu.

Answer: C



QUESTION
4
You are designing a Microsoft SQL Server 2005 Integration Services (SSIS) package.
While testing, a Transact-SQL user-defined function causes duplicate key values that stop the
transformation.
To permit the transformation to continue, the package must perform the following tasks:
1. Ascertain which rows are affected.
2. Insert the rows that fail into a table.
3. Continue with the process.
You need to change certain properties in the package to meet the requirements.
Which three tasks should you perform? (Each correct answer presents part of the solution.
Choose three.)

A. Choose the Redirect Row option for the Error property on the key column.
B. Choose the Ignore Failure option for the Error property on the key column.
C. Choose the Fail Component option for the Error property on the key column.
D. Add a DataReader source to use a new Data Flow destination when the Failure constraint is fired.
E. Add a DataReader source to use a new Data Flow destination when the Completion
constraint is fired.
F. Edit the Error Output properties for each DataReader source and configure each data source for error handling.

Answer: A, D, F



QUESTION
5
You are designing a Microsoft SQL Server 2005 Integration Services (SSIS) package.
The package uses at least one sequence container in one transaction. Each transaction controls
a Data Flow task and a Control Flow task. Each Data Flow task has a Success constraint.
The Control Flow task follows the Success constraint. The package must include the following
requirements:
Each Data Flow task must use its own transaction.
The Control Flow task and the Data Flow task that precedes it must succeed or fail as an atomic unit.
A restart point must restart each Data Flow task and the Control Flow task that follows it as an
atomic unit.
You need to make changes in the control flow designer to meet the outlined requirements.
Which two actions should you perform? (Each correct answer presents part of the solution.
Choose two.)

A. Add all the Data Flow tasks and the Control Flow tasks to one sequence container.
B. Add a sequence container for each Control Flow task and the Data Flow task that precedes it.
C. Change the FailPackageonFailure property to true for each new sequence container that is
added to the package.
D. Change the FailPackageonFailure property to false for each new sequence container that is
added to the package.

Answer: B, C



QUESTION
6
You are designing a Microsoft SQL Server 2005 Integration Services (SSIS) package. An
Analysis Services Processing task in the package requires data from a file. The file is exported to
a file share.
If the file is not available on the file share, the Analysis Services Processing task must import data
from a remote Microsoft SQL Server 2005.
You need to add steps to the package to import the data.
What should you do?



Answer:



QUESTION
7
You are designing a Microsoft SQL Server 2005 Integration Services (SSIS) package.
The OLE DB data source for the package is a database that is updated frequently.
You need to create a package that accomplishes the following tasks:
Implement the IRowsetFastLoad interface.
Support various data flow destinations.
Which two actions should you perform? (Each correct answer presents part of the solution.
Choose two.)

A. Use an OLE DR data flow destination.
B. Use a Recordset data flow destination.
C. Use a DataReader data flow destination.
D. Create separate data flow destinations within the same Data Flow task.

Answer: A, D



QUESTION
8
Your company's business intelligence (BI) model uses Microsoft SQL Server 2005 Integration
Services (SSIS). There are 20 packages that use the same configuration. The package
configuration is stored in an XML file as a variable.
You need to track the changes that affect a package that uses one variable. You also need to
modify the package to provide automatic notification by e-mail whenever there are changes to the
variable.
What should you do?

Answer:



QUESTION
9
You are designing a Microsoft SQL Server Integration Services (SSIS) package.
The package contains a single OLE DB data source. The package must be deployed on 10
servers. The package uses the XML configuration file to connect to a pre-assigned server.
You need to ensure that the package uses the correct server at runtime
What should you do?



Answer:



QUESTION
10
You are designing a Microsoft SQL Server 2005 Integration Services (SSIS) package. The
package is named UpdateTable.dtsx and contains a variable named runlD. The package must
run by using the dtexec utility. The runlD variable must be set at runtime to a value of 5. You need
to meet the outlined requirements. What should you do?

A. Execute dtexec /F "c:\ssisPackages\UpdateTable.dtsx" /SET
\packages.variables[runlD].Value;5.
B. Execute dtexec /F "c:\ssisPackages\UpdateTable.dtsx" /SET \packages.variables.runlD=5.
C. Create a text file that specifies the variable name and value in the format
package.variables[runlD].Value = 5. Execute dtexec /F "c:\ssisPackages\UpdateTable.dtsx"
/COM where is the name of the file you just created.
D. Create a text file that specifies the variable name and value in the format runlD=5. Execute
dtexec /F "c:\ssisPackages\UpdateTable.dtsx" /COM where is the
name of the text file you just created.

Answer: A

MCTS Training, MCITP Trainnig

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

Sunday, December 4, 2011

IBM 000-050 Q & A / Study Guide

Cisco CCNA Training, Cisco CCNA Certification

Best IBM Certification Training and IBM Exams Training and more Cisco exams log in to Certkingdom.com




QUESTION 1
The list of test environments can be used for what purpose?

A. to automatically locate resources containing the specified environments
B. to automatically generate the actual test environments needed to run specific tests
C. to automatically select available machines during test execution
D. to automatically create unique test logs for each environment

Answer: B


QUESTION 2
In the Requirements section of the test plan, what happens when you click on the green plus sign icon?

A. A new requirement is added to the test plan.
B. An existing requirement is added to the test plan.
C. A requirement is imported into the test plan.
D. test case is created from the requirement.

Answer: B


QUESTION 3
When generating a new test execution record from the Test Execution Record section of an open
test case, which tabs does the Advanced Properties link show?

A. One-way, Pair-wise, and Four-way Interaction
B. Test Plan, Test Suite, and Test Environment
C. Lab resources, Reservations, and Milestones
D. Inclusions, Exclusions, and Weightings

Answer: D


QUESTION 4
Quality Objectives defined in the System Properties can be used in which sections of the test
plan?

A. Business Objectives, Test Objectives, and Quality Objectives
B. Business Objectives, Test Environments, and Quality Objectives
C. Entry Criteria, Exit Criteria, and Quality Objectives
D. Entry Criteria, Exit Criteria, and Business Objectives

Answer: C


QUESTION 5
You can copy content from an external document and paste it into which sections of the test plan?

A. Summary, Entry Criteria, Exit Criteria
B. Summary, Pre-Condition, and Post-Condition
C. Summary, Quality Objectives, and Resources
D. Summary, Business Objectives, and Test Objectives

Answer: D


QUESTION 6
Which Custom Reporting component stores the reports, data source connections, and server and
user preferences?

A. Data Warehouse
B. WebSphere Application Server
C. Framework Manager
D. Content Store

Answer: D


QUESTION 7
Which statement is true about review processes?

A. Authorization is off by default; new Task-Review work items are listed as Pending.
B. Authorization is on by default; new Task-Review work items are listed as Pending.
C. Authorization is off by default; new Task-Review work items are listed as New.
D. Authorization is on by default; new Task-Review work items are listed as New.

Answer: A


QUESTION 8
Who typically creates the test plan initially with Rational Quality Manager?

A. Test Lab Manager
B. Test Engineer
C. Test Manager
D. Project Manager

Answer: C


QUESTION 9
What does the Platform Coverage tab of the Test Environments section show?

A. a list of platforms that will be supported for all test cases
B. a list of test execution records that will be generated for the test plan
C. a non-binding list of platforms the user plans to cover
D. a binding list of platforms that must be covered in the test plan

Answer: C


QUESTION 10
Which three platforms are supported by the data warehouse server of IBM Rational Insight?
(Choose three.)

A. Microsoft Windows Server 2003
B. Microsoft Windows Server 2008
C. SUSE Linux
D. Red Hat Linux

Answer: A,B,D



Cisco CCNA Training, Cisco CCNA Certification

Best IBM Certification Training and IBM Exams Training and more Cisco exams log in to Certkingdom.com

Saturday, December 3, 2011

HP HP0-728 Q & A / Study Guide

Cisco CCNA Training, Cisco CCNA Certification

Best HP Certification Training and HP Exams Training and more Cisco exams log in to Certkingdom.com


QUESTION 1
What is a Continuous Access EVA copy set?

A. a set of DR groups selected for the purpose of managing the groups
B. a group ofVdisks that transition to the same state simultaneously
C. a bound set of twoVdisks used for long distance replication
D. a set of two or more cluster nodes created as part of a stretch cluster

Answer: C


QUESTION 2
How should Vdisks for Continuous Access be preferred?

A. split theVdisk in the DR group between the controllers for load balancing
B. allVdisks in the DR group to the same controller
C. split theVdisk in the EVA between the controllers for load balancing
D. allVdisks in the same disk group to the same controller

Answer: B


QUESTION 3
The log disk collects host writes for _____.

A. managed sets
B. sourceVdisks
C. entire copy set
D. destinationVdisks

Answer: D


QUESTION 4
Which two can be failed over during a Continuous Access EVA planned or unplanned event?
(Choose two.)

A. a single HSV controller
B. copy set
C. managed set
D. DR group

Answer: C,D


QUESTION 5
Which two inputs does the Continuous Access EVA Replication Performance Estimator require?
(Choose two.)

A. one-wayintersite latency
B. throughput per second
C. two-wayintersite latency
D. size of a read data packet
E. size of the write data packet
F. number of IO’s per second

Answer: A,E


QUESTION 6
A customer has a high availability Continuous Access EVA environment. All DR groups are set to
failsafe mode enabled. The source site array has a hardware failure and all DR groups are failed
over to the destination site. The hardware failure is then fixed.
Which two commands need to be set to restore normal operations at the source site? (Choose
two.)

A. failback
B. suspend
C. failsafe mode enable
D. resume
E. failover

Answer: C,E


QUESTION 7
Where is the Business Copy (BC) server component installed in the diagram?

A. Storage Management Appliance (Node 1)
B. storage array
C. host (Node 2)
D. desktop with web browser

Answer: A


QUESTION 8
In Continuous Access EVA, which statement is true?

A. Synchronous mode allows for more data loss than asynchronous mode.
B. A copy set’s mode is set to synchronous/asynchronous mode.
C. All copy sets within a DR group are either synchronous or asynchronous.
D. Asynchronous mode means an I/O acknowledgement is sent to the host after data is written to
the sourceVdisk and destination Vdisk.

Answer: C


QUESTION 9
You are creating a DR group for a database.
Which disk group is used for the write history log for the database DR group?

A. 3 TB database disk group with 1 TB of free space
B. an empty disk group with 2 TB of space
C. a new disk group will get created for the log disk
D. 5 TB windows disk group with 2 TB of occupied space

Answer: D


QUESTION 10
CORRECT TEXT
Which icon denotes a failed-over DR group?

Answer: B

Cisco CCNA Training, Cisco CCNA Certification

Best HP Certification Training and HP Exams Training and more Cisco exams log in to Certkingdom.com

Friday, December 2, 2011

Free Microsoft 70-291 Q & A / Study Guide – part III

MCTS Training, MCITP Trainnig

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

QUESTION 704:

You work as the network administrator at Certkingdom.com The Certkingdom.com
network consists of a single Active Directory domain named Certkingdom.com All
servers on the Certkingdom.com network run Windows Server 2003 and all client
computers run Windows XP Professional.
Certkingdom.com consists of a file server named Certkingdom -SR40 that runs Windows
Server 2003. Certkingdom.com also contains crucial third-party applications, which
must be accessed by all the finance users of the main office and the branch offices.
You have received instruction to create a procedures document for Certkingdom.com
administrators. You need to define the recommended settings for each system
service that can be enables on a Windows Server2003 system. In a case of
emergency the service should be automatically restarted, if it fails more than three
times. You also setup the service to send a message to your computer if the service
failed. In the Property dialog box of a service has a number of Services consoles.
What could the services be?

A. The number of hours after which the fail account should be reset to zero.
B. Whether or not the Recovery attempt should be recorded in the System event log.
C. The number of minutes to wait before the service is restarted.
D. Whether or not the complete memory dump should be saved when the computer is
restarted.

Answer: C

Explaination: The Recovery tab of the Properties dialog box has the option to the
number of minutes to wait before the service is restarted.
Incorrect Answers:
A, B, D: You cannot configure the number of hours after which the fail account should
be reset to zero; or the whether or not the complete memory dump should be saved when
the computer is restarted, or whether or not the Recovery attempt should be recorded in
the System event log.


QUESTION 705:

You work as the network administrator at Certkingdom.com The Certkingdom.com
network consists of a single Active Directory domain named Certkingdom.com All
servers on the Certkingdom.com network run Windows Server 2003 and all client
computers run Windows XP Professional.
Certkingdom.com consists of a Marketing department. This department handles all the
financing and sales deeds. A Certkingdom.com user named Mia Hammis a member of
the Marketing department. Mia Hamm works on a client computer named
Certkingdom -SR30. One morning Mia Hamm complains that her hard disk has
failed. During the maintenance you then replace the hard disk and perform an
Automatic System Recovery (ASR) from a backup of her client computer.
Mia Hamm informs you that she still cannot connect to the domain. However, she is
able to connect to the domain from a coworker’s client computer. You receive an
instruction from the CIO to make sure that Mia Hammis able to connect to the
domain with Certkingdom -SR30 in order for her to do her duties.
What should you do?

A. Your first step should be to remove Certkingdom -SR30 from the domain.
Thereafter Certkingdom -SR30 can be rejoined to the domain.
B. To ensure that the user can log on to the domain the user account needs to be added to
the Administrators group on Certkingdom -SR30.
C. You should reset the computer account of Mia Hamm in Active Directory and
Computers to ensure that she will be able to log on to the domain.
D. Your best option would be to add the user account of Mia Hamm to the Power Users
group on Certkingdom -SR30.

Answer: A

Explaination: It is most probably the case that her password has expired. You need
to join the domain with Certkingdom -SR30. Doing this will allow the domain to
authenticate the computer. The password on the domain is regenerated
automatically when the computer rejoins the domain.
Incorrect Answers:
B, D: Mia Hamm does not belong either to the Administrators group or the Power Users
group. You cannot even access the computer with your user account as the administrator.
C: This method will not work properly. You should not reset computer accounts in the
Active Directory and Computers.


QUESTION 706:

You work as the network administrator at Certkingdom.com The Certkingdom.com
network consists of a single Active Directory domain named Certkingdom.com All
servers on the Certkingdom.com network run Windows Server 2003 and all client
computers run Windows XP Professional.
Certkingdom.com consists of two departments, named Research and Development. Half
of the client computers are in the Research department and the other half are in the
Development department. The Research department is a priority for Certkingdom.com
The client computers in the Research department run critical third-party
applications.
Certkingdom.com contains a server named Certkingdom -SR12 which hosts shared
folders named TestResDev for the Research department and Development
department. The users in the Research department and Development department
save their projects in Certkingdom -SR12 in TestResDev. The users are also allowed
to change the files or to undo the changes. To safeguard the files you implement
Shadow Copies support. Some of the users in both department complains that they
cannot access pervious version of there files. You need to ensure that the previous
versions are available to the users.
What should you do?

A. On all the client computers, enable Shadow Copies.
B. On all the client computers, install the Previous Versions client software.
C. On Certkingdom -SR12 configure disk quotas for all users.
D. On all the client computers, enable disk quotas.

Answer: B

Explaination: Shadow Copies provides periodic snapshots of shared folders on
specific volumes on hard disks.
Incorrect Answers:
A: You cannot do this, because the server side of this feature is not supported by the
client computers.
C, D: Disk quotas are used to limit the amount of disk space. This this not needed in this
scenario.


QUESTION 707:

You work as the network administrator at Certkingdom.com The Certkingdom.com
network consists of a single Active Directory domain named Certkingdom.com All
servers on the Certkingdom.com network run Windows Server 2003 and all client
computers run Windows XP Professional.
Certkingdom.com contains a Finance department. This department handles all the
marketing and sales deeds. It was requested of you to periodically perform
Automatic System Recovery (ASR) backups of all the servers in Certkingdom.com A
Certkingdom.com user named Andy Reid is a member of the Finance department.
Andy Reid works on a client computer named Certkingdom -SR10 which is
configured as a Certification Authority (CA). Certkingdom -SR10 contains two hard
drives, one hard drive named drive C consists of the operating system, and the other
hard drive named D consist of the CA database. The drive D of Certkingdom -SR10
failed and the CA database was lost.
During the maintenance you replaced the hard drive. You now need to replace the
lost data with the minimum of administrative effort. You receive an instruction
from the CIO to make sure that Certkingdom -SR10 continues to operate as a CA.
What should you do on Certkingdom -SR10?

A. To ensure that Certkingdom -SR10 continues to operate you need to boot from the
Windows Server 2003 installation CD.
Thereafter you can restore the ASR restore.
B. Your best option is to restart Certkingdom -SR10 in Directory Services Restore Mode.
Thereafter you can execute a non-authoritative restore of the CA database.
C. Your first step should be to restart Certkingdom -SR10 in Directory Services Restore
Mode.
Then you can execute an authoritative restore of the CA database.
D. Your best option would be to restore System State from the most recent ASR backup.

Answer: D

Explaination: This is a collection of files (System State) that contains the information
that is needed to rebuild an identical copy of the computer.
Incorrect Answers:
A: It is no need to ASR because the drive C which contains the operating system is not
damage.
B, C: You cannot start Certkingdom -SR10 in Directory Services Restore Mode, because it is
not a domain controller.


QUESTION 708:

You work as the network administrator at Certkingdom.com The Certkingdom.com
network consists of a single Active Directory domain named Certkingdom.com All
servers on the Certkingdom.com network run Windows Server 2003 and all user
workstations run Windows XP Professional.
Certkingdom.com contains a Research department. The Research department is a
priority for Certkingdom.com The user workstations in the Research department run
critical third-party applications. The Research department is planning to open a
new technical line. The manager will use this line to alter any changes of the
complete product of the Research department. This will lead to frequent changes of
the related documents. The manager also needs the previous versions of the
products if it was changed.
Certkingdom.com contains a server named Certkingdom -SR21. Certkingdom -SR21
consists of three disks which host lots of shared folders. You are planning to host the
documentation of the technical lines share folder on this server. You receive an
instruction from the CIO to ensure that your answer does not entail the
maintenance the earlier versions of any other data only the documentation of the
new technical line.
What should you do?

A. To comply with the requirements of the CIO you need to allow shadow copies on the
user workstations.
B. Periodical backups need to be executed in order to comply with the requirements.
C. Your best option would be to create a share folder on a new volume on
Certkingdom -SR21 as well as enabling shadow copies.
D. The Previous Versions software needs to be deployed on Certkingdom -SR21 in order
to comply with the instruction of the CIO.

Answer: C

Explaination: Shadow Copies provides periodic snapshots of shared folders on
specific volumes on hard disks.
Incorrect Answers:
A: The user workstations run Windows XP Professional, shadow copies is new and
resides in Windows Server 2003.
B: You should perform periodic backups of all documentation. However these backup
would not be available immediately.
D: The Previous Versions software should be deployed on the user workstations not the
server.


QUESTION 709:

You work as the network administrator at Certkingdom.com The Certkingdom.com
network consists of a single Active Directory domain named Certkingdom.com All
servers on the Certkingdom.com network run Windows Server 2003 and all client
computers run Windows XP Professional.
Certkingdom.com contains a server named Certkingdom -SR44 which runs Exchange
2003. Certkingdom -SR44 also consists of proprietary financing applications. All the
Certkingdom.com users access their mail from this server. Certkingdom -SR44 is
configured with a 2.6 MHz CPU, 512 MB of RAM and two 74.5 GB hard disks.
Certkingdom -SR44 is connected to a LAN at 100 Mbps with a network adapter.
Certkingdom -SR44 supports 4,000 user mailboxes. Certkingdom -SR44 is continuously
used as users access their mail. A Certkingdom.com manager named Andy Booth
complains that his users struggle to open large e-mail messages, due to the slow
response of the server. You make use of System Monitor to view the results.


You receive an instruction from the CIO to identify the reason for the new response.
Which component should you identify?

A. A possible reason for the slow response time is the Network Adapter
B. The Processor is the possible cause for the slow response time.
C. The component causing the slow response is the Hard disk
D. The slow response time of the server is caused by the Memory.

Answer: D

Explaination: The memory reports an average of only 20 MB available. The value
should remain 5 % of the total system memory.
Incorrect Answers:
A, B: These counters do not indicate a cause of a bottleneck.
C: The hard disks are very busy. It should remain below 50 %. You should first check the
memory before you identify the hard disk as the source of the bottleneck.


QUESTION 710:

You work as the network administrator at Certkingdom.com The Certkingdom.com
network consists of a single Active Directory domain named Certkingdom.com All
servers on the Certkingdom.com network run Windows Server 2003 and all client
computers run Windows XP Professional.
Certkingdom.com has its headquarters in Chicago and a branch office in Miami.
Certkingdom.com contains a server named Certkingdom -SR33 which is configured as a
router. A new Certkingdom.com security policy restricts the use of streaming audio to
some of the users. Certkingdom.com consists of a Sales department in the branch office.
The managers in the branch office complain about the slow network response.
During an investigation you find that some users are controlling the available
bandwidth. You need to find out if the users are violating the Certkingdom.com security
policy. You also need to find out which users did receive those packets.
Which utility should you use?

A. You should make use of the Network Monitor utility to identify the users who violates
the security policy.
B. The IP Security Monitor should be used to identify the users who violaste the security
policy.
C. In order for you to determine which users violates the policy you need to make use of
the Replication Monitor utility.
D. You should consider making use of the System Monitor utility to determine which
users are at default.

Answer: A

Explaination: To capture network traffic, the System Monitor is used. You can filter
it so that it can meet the criteria that you are looking for.
Incorrect Answers:
B: The IP Security Monitor is used to monitor IPSec information. You cannot use it to
monitor network traffic.
C: This is used to monitor Active Directory replication.
D: The System Monitor is used to gather information about the CPU, Memory etc.


QUESTION 711:

You work as the network administrator at Certkingdom.com The Certkingdom.com
network consists of a single Active Directory domain named Certkingdom.com The
Certkingdom.com network contains ten Windows Server 2003 computers and 1,100
Windows 2000 Professional computers. Three of the Windows Server 2003
computers in configured as domain controllers.
Certkingdom.com has a Finance department in Chicago and a Marketing department in
Dallas. These departments are connected to the Internet. The users in these
departments use the network often to send and download important files and
Internet e-mail. The Certkingdom.com users also access the Internet to get the latest
information on the product. A new Certkingdom.com security policy requires that
network administrators should use their domain user account to log on. Whenever
the administrators need an administrative privilege, they should use the runas
command. The runas command will launch an application that will allow
permission to execute the required task.
One morning an administrator named Rory Allen complains that the name
resolution has failed on the network. During an investigation you try to run Rory
Allen administrative user account, RMAdmin1 and issue the following command:
runas/user:rmadmin1 replmon. When you use this command the following error
message was displayed:
RUNAS ERROR: Unable to run – replmon
1058: The service cannot be started, either because it is disabled or there are no
enabled devices associated with it. You receive an instruction from the CIO to
identify the service that stops the Replication Monitor from starting.
Which of the following services could it be?

A. Due to DNS Client failure you are unable to start Replication Monitor.
B. The Secondary Logon is the likely cause of you being unable to start Replication
Monitor.
C. The DNS Server is the cause of Replication Monitor not starting.
D. Net Logon is a possible cause of the Replication Monitor not starting.

Answer: B

Explaination: The Secondary Logon permits a user to make use of the runas
command.
Incorrect Answers:
A: The DNS Client allows you to locate Active Directory domain controllers. It also
resolves DNS names locally.
C: The DNS Server service is responsible name resolution queries from DNS clients.
D: This service is responsible for authentication remote users and services.


QUESTION 712:

You work as the network administrator at Certkingdom.com The Certkingdom.com
network consists of a single Active Directory domain named Certkingdom.com
Certkingdom.com consists of a few servers that run Windows Server 2003 and Windows
2000 Server. Some the client computers run Windows 2000 Professional, and the
others run Windows XP Professional.
Certkingdom.com contains 15 Domain controllers, 25 Windows Server 2003 servers, 15
Windows 2000 Server computers, 150 Windows XP Professional client computers
and 300 Windows 2000 Professional client computers. The Certkingdom.com domain
also contains 600 user accounts and 15 administrative accounts. The user and
computer accounts reside in an OU which is linked to a GPO as shown in the
following table:


Certkingdom.com’s user accounts resides in an OU named Certkingdom OU. This OU needs
an application named TKD_Tools which is in a Windows package named
TKD_Tools.msi. The hard disk space for TKD_Tools is 50MB. A Certkingdom.com policy
states that the TKD_Tools.msi should not be installed on a client computer that runs
Windows XP Professional or a server that runs Windows Server 2003 which has less
than 500 MB of hard disk space. Only users that are non administrative are allow to
install this TKD_Tools application. You have received an instruction from the CIO to
configure the domain to effectively install the application. You need to accomplish
this without the unnecessary installation of this application.
What should you do?

A. Your first step should be to add TKD_Tools.msi to the Computer
Configuration\Software Settings node of the MemberServers GPO.
Thereafter you will be able to create a WMI filter that will restrict the application of the
MemberServers GPO to computers with 500 MB and more hard disk space.
B. You can accomplish this by adding TKD_Tools.msi to the Computer
Configuration\Software Settings node of the WinClients GPO.
The subsequent step would be to create a WMI filter that will restrict the application of
the WinClients GPO to computers with 500 MB and more hard disk space.
C. This can bew accomplished by adding TKD_Tools.msi to the Computer
Configuration\Software Settings node of the AdminPolicy GPO.
Thereafter you can create a WMI filter that restricts the application of the
DomainControllers GPO to computers with 500 MB and more hard disk space.
D. Your best option would be to add TKD_Tools.msi to the Computer
Configuration\Software Settings node of the UserPolicy GPO.
Thereafter you can create a WMI filter that restricts the application of the UserPolicy
GPO to computers with 500 MB and more hard disk space.

Answer: D

Explaination: This is the more likely answer, because only the non-administrative
users can have this application installed. That’s way you should add the
TKD_Tools.msi to the UserPolicy GPO.
Incorrect Answers:
A: The MemberServers GPO will only apply to the Windows Server 2003 and Windows
2000 Server computers.
B: The WinClients GPO will only apply to the Windows 2000 Professional and the
Windows XP Professional client computers.
C: The AdminPolicy is users who are administrators. The scenario does not want the
administrator to have this application.


QUESTION 713:

You work as the network administrator at Certkingdom.com The Certkingdom.com
network consists of a single Active Directory domain named Certkingdom.com All
servers on the Certkingdom.com network run Windows Server 2003 and all client
computers run Windows XP Professional.
A Certkingdom.com client named Rory Allen installs a high-speed color printer named
Certkingdom -PR01 on a print server named Certkingdom -SR24 by using a built-in
Windows XP Professional driver. Rory Allen works in the Graphics department. He
shares the printer so that the other users can print to the new printer.
During the day the users of the Graphics department complain that they cannot
print from Certkingdom -PR01. You then make sure that Certkingdom -SR24 is
working properly and the printer is switched on. During the investigation you access
the shared folders on Certkingdom -SR24. However, it seems that Certkingdom -PR01
is unable to connect. You have to make sure that the users in the graphics
department can access Certkingdom -PR01 for there printing jobs.
What should you do?

A. Your best choice would be to configure Certkingdom -PR01 to be available.
B. You should consider restarting the Print Spooler on Certkingdom -SR24 to ensure that
the users can print.
C. To ensure that the users can print to Certkingdom -PR01 you have to update the driver.
D. This can be accomplished by uincreasing the priority of Certkingdom -PR01.

Answer: B

Explaination: The function of the Print Spooler is to manage the print queues on a
server. In this case it seems that the Print Spooler has stalled. That’s way you have
to restart the Print Spooler service.
Incorrect Answers:
A: Even if this were available, you cannot access it because you cannot connect to the
Print Spooler.
C: There is no need to update the driver, because the printer was working before.
D: To increase the priority of Certkingdom -PR01, you need to access the Property sheet.
At the moment it seems impossible, because the Print Spooler is not working.


QUESTION 714:

You work as the network administrator at Certkingdom.com The Certkingdom.com
network consists of a single Active Directory domain named Certkingdom.com All
servers on the Certkingdom.com network run Windows 2000 Server and all client
computers run Windows XP Professional.
Certkingdom.com contains two departments, named Research and Marketing. Half of
the client computers are in the Research department and the other half are in the
Marketing department. The client computers in the Research department run
critical third-party applications.
Andy Reid is the manager of the Research department. He complains about the
poor performance of certain critical third-party applications on his client computer
named Certkingdom -WS211. You have been instructed to collect the performance
information that can be used to determine and analyze the technical problems on
the network.
Which tool can you use?

A. You should make use of Network Monitor in order to determine and analyze the
technical errors.
B. The technical errors can be determined and analysed by making use of System
Monitor.
C. You will be able to make use of Task Manager to collect the performance information.
D. You should consider making use of a counter log to determine and analyse the
technical errors.

Answer: D

Explaination: You should create a performance baseline and monitor the values of
the counters. The performance data should be recorded in a counter log.
Incorrect Answers:
A: This tool is used to parse network traffic.
B: The System Monitor can work, however it only presents current performance ion real time.
C: This is used to view information about the processors that are running on the system.


QUESTION 715:

You work as the network administrator at Certkingdom.com The Certkingdom.com
network consists of a single Active Directory domain named Certkingdom.com All
servers on the Certkingdom.com network run Windows 2000 Server and all client
computers run Windows XP Professional.
Certkingdom.com contains two departments, named Research and Marketing. Half of
the client computers are in the Research department and the other half are in the
Marketing department. Due to the success of the two departments, Certkingdom.com
has decided to implement an e-commerce Web site, which will be used as a public
Web site for customers and a private Web site for the users.
Certkingdom.com then opens a new office for this new Web site. This office contains a
Windows Server 2003 server named Certkingdom -SR42. You intend to run a
third-party Web management application. You receive an instruction to make sure
that the suitable services are allowed on this server.
What should you do? (Select two)

A. You should consider enabling the World Wide Web Publishing Service.
B. Your best option would be to allow the DNS Server service.
C. To support the Web site you need enable the IIS Admin Service.
D. To make sure that the suitable services are allowed you need to permit the HTTP SSL
service.

Answer: A, D

Explaination: The HTTP SSL will provide the private part of the Web site and the
World Wide Web Publishing Service will provide for the public portion.
Incorrect Answers:
B: This option will offer name resolution. This will not ensure that the Web site is
available.
C: This is only needed if you use an IIS to manage the Web site. However you have a
third-party Web management application.


QUESTION 716:

You work as the network administrator at Certkingdom.com The Certkingdom.com
network consists of a single Active Directory domain named Certkingdom.com
Certkingdom.com contains 15 Windows Server 2003, 5 domain controllers and 2000
client computers which runs Windows XP Professional.
Certkingdom.com contains a Marketing department and a Finance department. A
Certkingdom.com server runs mission critical in-house applications which is used by the
users. The client computers and the domain controllers’ clock are incorrect. You
need the time to be correct other wise the Kerberos fails and you will find Kerberos
errors in the event log. You reset the clock of the client computer, but after a while
you find that the clock is again wrong. You receive an instruction from management
to make sure that the clock of the client computers displays the correct time.
What should you do?

A. To ensure that the clock displays the correct time you need to adjust the clock on the
infrastructure master.
B. To ensure that the correct time is displayed you need to select Automatically
synchronize with Internet time server on the Internet Time tab.
C. You can ensure the correct time by installing an exact time resource tool on the
network.
D. Your best option should be to adjust the clock on the PDC emulator.

Answer: D

Explaination: You should adjust the PDC emulator, because all the computers will
synchronize there clock.
Incorrect Answers:
A, B, C: In this scenario you should adjust the clock with the PDC emulator, for
authentication in an Active Directory environment.


QUESTION 717:

You work as the network administrator at Certkingdom.com The Certkingdom.com
network consists of a single Active Directory domain named Certkingdom.com All
servers on the Certkingdom.com network run Windows Server 2003 and all client
computers run Windows XP Professional.
Certkingdom.com contains two departments named Research and Development. Half of
the client computers are in the Research department and the other half are in the
Development department. The client computers in the Research department run
critical third-party applications.
Certkingdom.com contains a file server named Certkingdom -SR14. Shadow copies area
enabled on the volume named BillVol. During routine monitoring you discover
that BillVol has almost reached its capacity. You take action and add another disk
to the server and create a volume named TestVol. You now need to configure
shadow copies for BillVol to use the space in TestVol.
What should you do?

A. Your best choice would be to specify TestVol as the additional location on the
BillVol properties.
B. This can be accomplished by moving the shadow copies from BillVol to TestVol on
the Certkingdom -SR14.
C. You should consider sharing TestVol.
Thereafter you will be allowed to enable shadow copies on TestVol.
D. You should consider deleting the shadow copies of BillVol and specifying TestVol
as the location of shadow copies.

Answer: D

Explaination: This is the correct answer. You are unable to change the location of
the shadow copies unless you delete Vol1 of the exiting shadow copies.
Incorrect Answers:
A: You cannot share the shadow copies between BillVol and TestVol. You also cannot
move or copy files on BillVol.
B: You have to delete the shadow copies on BillVol. You cannot move the shadow
copies from BillVol to TestVol.
C: This will result in previous copies on BillVol to be periodically created. The exiting
copies on BillVol would not be affected.

MCTS Training, MCITP Trainnig

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

Thursday, December 1, 2011

Free 70-669 Exam Q & A / Study Guide

MCTS Training, MCITP Trainnig

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


QUESTION 1
You work as a desktop technician at Certkingdom.com. The Certkingdom.com network consists of an Active
Directory Domain Services domain named Certkingdom.com. All servers on the network run Windows
Server 2008. The client computers run a mix of Windows XP Professional and Windows 7 Enterprise.
The company is planning to roll out Windows 7 Enterprise throughout the network. Users that
require legacy applications will be able to run them in Windows XP Mode virtual machines on their computers.
You are conducting some testing with Windows XP Mode virtual machines (VMs). You have two
Windows XP Mode VMs on your Windows 7 client computer.
You want to configure the networking options for the two VMs so that they have network
connectivity to each other but not to your host computer or the rest of the Certkingdom.com network.
How should you configure the VMs?

A. You should navigate to the Networking node in the VM Settings and configure the network
adapter to use the Internal Network option.
B. You should navigate to the Networking node in the VM Settings and configure the network
adapter to use the Shared Networking (NAT) option.
C. You should navigate to the Networking node in the VM Settings and configure the network
adapter to use the Bridge Mode option.
D. You should configure the Bridge Connections option in the Network Adapter properties in
Windows XP on each VM.

Answer: A

Explanation:


QUESTION 2
You work as a desktop technician at Certkingdom.com. The Certkingdom.com network consists of an Active
Directory Domain Services domain named Certkingdom.com. All servers on the network run Windows
Server 2008 R2 and all client computers run Windows 7 Enterprise.
The network includes a Windows Server 2008 R2 server named ABC-Deploy1. ABC-Deploy1 runs
the IIS Server role and is part of the company’s Microsoft Enterprise Desktop Virtualization (MEDV) environment.
Your Windows 7 client computer is named ABC-Tech1. The MED-V Management console is
installed on ABC-Tech1.
You are configuring the Microsoft Enterprise Desktop Virtualization (MED-V) environment to
deploy MED-V virtual machines to several client computers.
You have configured a MED-V image with the required applications. You run Sysprep on the
image and upload it to ABC-Deploy1.
Which two of the following steps will ensure that computer names following a specified naming
convention are generated when the VMs are first run after the deployment? Choose two.

A. In the Workspace settings, navigate to the VM Setup tab and configure the computer name pattern.
B. In the Workspace settings, navigate to the Deployment tab and configure the computer name pattern.
C. Add a Script Action to rename the computer.
D. Run the Setup Manager Wizard and configure the computer name pattern.
E. Add the computer names to Sysprep.inf.

Answer: A,C

Explanation:


QUESTION 3
You work as a desktop technician at Certkingdom.com. The Certkingdom.com network consists of an Active
Directory Domain Services domain named Certkingdom.com. All servers on the network run Windows
Server 2008 R2 and all client computers run Windows 7 Enterprise.
You are in the process of configuring a Microsoft Enterprise Desktop Virtualization (MED-V) environment.
You need to configure a central image repository for client computers to download images from.
You install a Windows Server 2008 R2 member server named ABC-Deploy1. You create a folder
named MEDVImages on ABC-Deploy1.
What should you do next on ABC-Deploy1?

A. You should share the MEDVImages folder.
B. You should install the IIS Server role and configure a virtual directory to point to the MEDVImages folder.
C. You should install the FTP Server component of IIS and configure an FTP site to point to the MEDVImages folder.
D. You should install an SSL Certificate.

Answer: B

Explanation:


QUESTION 4
You work as a network administrator at Certkingdom.com. The Certkingdom.com network consists of an Active
Directory Domain Services domain named Certkingdom.com. All servers on the network run Windows
Server 2008 R2 and all client computers run Windows 7 Enterprise.
Certkingdom.com runs a Microsoft Enterprise Desktop Virtualization (MED-V) environment. A Windows
Server 2008 R2 member server named ABC-Deploy1 is configured to run Microsoft Enterprise
Desktop Virtualization (MED-V) Server and hosts the central MED-V image repository.
You notice that the disk space on ABC-Deploy1 is running low due to the MEDVImages folder
taking up a large amount of disk space.
You open the MED-V Management Console and note that there are several versions of the MEDV
Workspace virtual machines (VMs).
How can you minimize the disk space used by the MEDVImages folder?

A. By deselecting the “Workspace is persistent” option.
B. By configuring the image update settings to keep a limited number of images.
C. By configuring the image update settings to select the “Clients should use the Download
manager when downloading the images” option.
D. By manually deleting old image files.

Answer: B

Explanation:


QUESTION 5
You work as a network administrator at Certkingdom.com. The Certkingdom.com network consists of an Active
Directory Domain Services domain named Certkingdom.com. All servers on the network run Windows
Server 2008. The client computers run a mix of Windows XP Professional and Windows 7 Enterprise.
You are in the process of migrating the Windows XP Professional client computers to Windows 7 Enterprise.
You need to design a solution to resolve application compatibility issues. You are planning a
desktop virtualization solution that will run legacy applications on virtual machines (VMs) running
Windows XP Professional.
You want to deploy Windows Virtual PC 2007 and a virtual machine image to the client computers
when they are migrated to Windows 7 Enterprise.
How can you create a single installation package that includes both Windows Virtual PC 2007 and
a virtual machine image?

A. By using the Packaging Wizard from Microsoft Enterprise Desktop Virtualization (MED-V).
B. By using Package Manager (pkrmgr.exe) from the Windows Automated Installation Kit (WAIK) tools.
C. By using a template created using Microsoft System Center Virtual Machine Manager (VMM) 2008 R2.
D. By using Windows System Image Manager from the Windows Automated Installation Kit (WAIK) tools.

Answer: A

Explanation:

MCTS Training, MCITP Trainnig

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