About Me

Name: p4ss1887
Loading...

Create Your Own Blog Find Other Townhall Blogs

Comments

Blog Roll

 

Simulation Pass4sure Microsoft 70-284 questions pool

1.Your customer is using a Virtual Earth 6.0 map. The

pushpins on the map represent apartments.

You need to ensure that the customer can display the

rooms in the apartments along with related information.

The information must appear in a tabular format on a

scratch pad.

Which sequence of four steps should you perform after

loading the map? (To answer, move the four appropriate

actions from the list of actions to the answer area and

arrange them in the correct order.)
 
Drag and drop question. Drag the items to the proper

locations.
Correct Answers:  1Y0-A05 220-602 642-515
 
2.A news channel wants to display live traffic incident

information for a city on a Web site.

You develop a three-tier architecture. The Microsoft

MapPoint Web Service delivers traffic information that

is managed by a user-defined class. The class acts as a

SOAP-AJAX connector. Users interact with a Virtual

Earth 6.0 map that is already loaded.

You need to ensure that the traffic incident

information is displayed on a new layer of the Virtual

Earth map as the map is navigated by the users.

Which sequence of actions should you perform? (To

answer, move all the actions from the list of actions

to the answer area and arrange them in the correct

order.)
 
Drag and drop question. Drag the items to the proper

locations.
Correct Answers:
 
3.You upload territory information to a data source on

the Microsoft MapPoint Web Service.   You receive the

coordinates of a moving vehicle every 30 seconds.   You

need to identify the territory where the vehicle is

currently located.   Which two actions should you

perform? (Each correct answer presents part of the

solution. Choose two.)

A:Call the FindById method.
B:Call the FindPolygon method.
C:Call the FindByProperty method.
D:Create a FindPolygonSpecification object by using the

LatLongSpatialFilter class.
E:Create a FindPolygonSpecification object by using the

LatLongRectangleSpatialFilter class.
Correct Answers:  B, D  70-272 70-293 70-297

4.You are creating a North American reverse geocoding

application by using the Microsoft MapPoint Web

Service.   The application must convert the latitude

and longitude coordinates of a point on the map into a

string that contains the city, province/state, and

country.   You need to obtain the string in the

following format: "city, province/state, country".  

Which code segment should you use?

A: Dim getInfoOptions As New GetInfoOptions()

getInfoOptions.IncludeAddresses = True

getInfoOptions.IncludeAllEntityTypes = True Dim

locations As List(Of Location) = _

findService.GetLocationInfo(origin, "MapPoint.NA",

getInfoOptions) Dim address As String = locations

(0).Entity.DisplayName
B: Dim getInfoOptions As New GetInfoOptions()

getInfoOptions.IncludeAddresses = False

getInfoOptions.IncludeAllEntityTypes = False

getInfoOptions.EntityTypesToReturn = New String()

{"PopulatedPlace"} Dim locations As List(Of Location) =

_ findService.GetLocationInfo(origin, "MapPoint.NA",

getInfoOptions) Dim address As String = locations

(0).Entity.DisplayName
C: Dim getInfoOptions As New GetInfoOptions()

getInfoOptions.IncludeAddresses = True

getInfoOptions.IncludeAllEntityTypes = False

getInfoOptions.EntityTypesToReturn = New String()

{"PopulatedPlace"} Dim locations As List(Of Location) =

_ findService.GetLocationInfo(origin, "MapPoint.NA",

getInfoOptions) Dim address As String = locations

(0).Entity.DisplayName
D: Dim getInfoOptions As New GetInfoOptions()

getInfoOptions.IncludeAddresses = True

getInfoOptions.IncludeAllEntityTypes = False

getInfoOptions.EntityTypesToReturn = New String()

{"AdminDivision1"} Dim locations As List(Of Location) =

_ findService.GetLocationInfo(origin, "MapPoint.NA",

getInfoOptions) Dim address As String = locations

(0).Entity.DisplayName
Correct Answers:  B  70-433 70-450 70-536

5.Your company displays customer locations on a Virtual

Earth 6.0 map.   You need to identify the current map

display area.   Which method should you use?

A: VEMap.GetCenter
B: VEMap.GetMapView
C: VEMap.GetMapMode
D: VEMap.GetZoomLevel
Correct Answers:  B

6.You need to configure the settings of your Virtual

Earth 6.0 map to display apartments at a specified

location using the bird's eye view.   What are two

possible code segments you can use to achieve this

goal? (Each correct answer presents a complete

solution. Choose two.)

A:map = new VEMap('mymap '); map.LoadMap(new VELatLong

(47.6, -122.33), 10, 'o', false);
B:map = new VEMap('mymap '); map.LoadMap(new VELatLong

(47.6, -122.33), 10, 'o', false); map.SetMapStyle

(VEMapStyle.Aerial);
C:map = new VEMap('mymap'); map.LoadMap(VELatLong(47.6,

-122.33), 10); map.SetMapStyle(VEMapStyle.Birdseye);
D:map = new VEMap('mymap '); map.LoadMap(new VELatLong

(47.6, -122.33), 10, 'h', true);
E:map = new VEMap('mymap '); map.LoadMap(new VELatLong

(47.6, -122.33), 10);
Correct Answers:  A, C

7.You need to create a cluster of pushpins for a large

dataset that takes the least amount of time to load on

a Virtual Earth 6.0 map.   Which two actions should you

perform? (Each correct answer presents part of the

solution. Choose two.)

A:Start clustering by using the VEMap.onendzoom event.
B:Start clustering by using the VEMap.onchangeview

event.
C:Implement client-side clustering by using JavaScript.
D:Implement server-side clustering by using Microsoft

ASP.NET 2.0.
Correct Answers:  B, D

8.You are creating a Web application. You are given the

URL of a Web page. When the URL is encoded with map

control properties, it generates custom maps by using

the Virtual Earth 6.0 map control.  

The Web page uses the following JavaScript code segment

to decode the URL.  

var pos=location.search.indexOf("?") +1;
var loc1=location.search.substr(pos);
var point1=loc1.split(" & ");
var a= point1[0];
var b= point1[1];
var c= point1[2];
var d=point1[3];
var e= point1[4];
var f= point1[5];
var g= point1[6];
map=new VEMap('myMap');
map.LoadMap(new VELatLong(a,b),c,d,e,f,g);  

You need to encode the URL to generate a custom map by

using your own settings.  

Which encoded URL should you use?

A: http: //www.mymappingsite.com/mymappage.aspx?

40.689167&-74.04472&0&h&1&6&1
B: http: //www.mymappingsite.com/mymappage.aspx?

40.689167&-74.04472&12&r&0&2&1
C: http: //www.mymappingsite.com/mymappage.aspx?

40.689167&-74.04472&1&a%&0&14&0
D: http: //www.mymappingsite.com/mymappage.aspx?

a=40.689167&-b=74.04472&c=21&d=o&e=0&f=2&g=0
Correct Answers:  B

9.You are creating a Virtual Earth 6.0 application.  

A Web page of the application contains the following

code segment.  

control = document.createElement("div");
control.id = "CustomControl";  

A custom control must be added on top of the map on the

Web page.  

You need to ensure that the custom control responds

only to its own mouse-click events.  

Which code segment should you use?

A: control.innerHTML = "<input type='button'

value='Click'  onclick='ClickHandler()' />";

map.AddControl(control);
B: control.innerHTML = "<input type='button'

value='Click' />"; map.AddControl(control);

map.AttachEvent("onclick", ClickHandler);
C: control.innerHTML = "<input type='button'

value='Click'  onclick='ClickHandler()' />";

document.getElementById('Map').appendChild(control);
D: control.innerHTML = "<input type='button'

value='Click' />"; document.getElementById

('Map').appendChild(control); document.getElementById

('CustomControl').attachEvent("onclick", 

ClickHandler);
Correct Answers:  A

10.You deploy a Virtual Earth 6.0 application that uses

Microsoft ASP.NET Asynchronous JavaScript and XML

(AJAX) implementation to retrieve data.  

The myAjaxCallback function evaluates any AJAX

response. The function contains the following code

segment. (Line numbers are included for reference

only.)  

01 function myAjaxCallback (){
02   if (xmlHttp.readyState == 4){
03     ...
04   }
05 }  

At the time the request was made, the server was

overloaded. When the server processed the AJAX request,

the server returned an error message.  

You need to ensure that the application does not

produce a fatal exception due to the error generated

from the AJAX response.  

Which code segment should you insert at line 03?

A: If(xmlHttp.status == 200){   eval

(xmlHttp.responseText); } else{   // Update user with

status here. }
B: try{   eval(xmlHttp.responseText); } catch(error){  

// Update user with status here. }
C: try{   eval(xmlHttp.responseText); } catch(error){  

eval(xmlHttp.responseXML); }
D: try{   eval(xmlHttp.responseText); } catch(error){  

if(xmlHttp.status == 200){     eval

(xmlHttp.responseText);   } }
Correct Answers:  A


Email ItEmail It | Print ItPrint It | CommentsComments (0) | TrackbacksTrackbacks (0) | Flag as offensiveFlag as Offensive

Cisco 642-453 free demo

Es ist für die IT-Fachleute, die Ihre technische Fähigkeit und beruflich Aufstieg erhöhen möchten, noch eine beste Wahl, diese Cisco Zertifizierung zu erhalten. Sie beweisen Ihre Fähigkeit durch das in der IT Branche bestätigte Zertifikat zu Ihrem Arbeitgeber, Ihren Kunden und Kollegen.
Pass4sure CCVP software 642-453 enthält alle Erkenntnisse in der 642-453 Zertifizierungsprüfung. Es wird aktualisiert, in der Zeit nach der Änderung der tatsächlichen Prüfung, um unserer Kunden die neueste Materialien anzubieten. Es besteht keine Notwendigkeit für unsere Kunden andere Unterlagen zu kaufen.
Um die Kunden immer die neueste 642-453 Prüfungsarbeiten anzubieten, arbeiten alle Angestellter in Pass4sure fleißig und versprechen am schnellesten die Update-Version zu bearbeiten. Es ist unbedingt, in Pass4sure können Sie die neusten Materialien erhalten.
Alle pass4sure Prüfungsfrage wird von exzellente Fachleute mit mehrjähriger Erfahrung in der IT-Branche erforscht. Sie versuchen dieses schwerige Exam mit einer leichten Methoden vorzubereiten und lassen allen Prüflingen sicher das Exam bestehen.
Diese 642-453 hilft Ihnen, das Zertifikat in kurzer Zeit zu bekommen. Unsere Experten arbeiten fleißig und aktualisiert das Exam rechtzeitig, damit der Kunde immer die neuesten Pass4sure Cisco product 642-453 Prüfung anwenden.
Wenn Sie mit unserer Pass4sure 642-453 arbeiten und die Probleme haben, treten Sie uns bitte auf der KONTAKT UNS-Seite oder mit unseren Live-Chat-Service in Verbindung. Eine professionelle Verkaufsmannschaft wartet jederzeit auf Sie, dass wir Ihnen den Komfort und die Hilfe für die Vorbereitung der Prüfung geben.
Zur Zeit gibt es viele online Cisco exam 642-453 Exam im Markt und man bewusst den Unterschied nicht und misstraut die Qualität. Aber mit der Demo in Pass4sure prüft man die Qualität und löscht Ihre Misstrauen aus.
Falls Sie auf Ihrem ersten Versuch die Cisco test Prüfung 642-453 nicht bestanden haben, geben wir Ihnen 100% Erstattung. Wenn Sie keine Anforderung auf das 100% Erstattung-Recht haben, können Sie zwei andere koordinierten Prüfungen völlig frei von Pass4sure erhalten. Auf jeden Fall verlieren Sie nichts hier.
Email ItEmail It | Print ItPrint It | CommentsComments (0) | TrackbacksTrackbacks (0) | Flag as offensiveFlag as Offensive

Improved Pass4sure Microsoft 70-450 software

1.You are an application developer for your company. You develop an ASP.NET Web application that is

installed on a server named Server1. Server1 has IIS 5.0 installed. The Web application is configured to

use Anonymous authentication in IIS.

 The Web.config file contains the following code segment.
 <authentication mode="Windows" />
<identity impersonate="true" />
The Machine.config file contains the following code segment.
<authentication mode="Windows" />

The application implements security based on the following code segment.

 Dim myIdentity As String
Dim validAccess As Integer
validAccess = 0

myIdentity = WindowsIdentity.GetCurrent().Name.ToString()
If (myIdentity = "Server1\ASPNET") Then
    validAccess = 1
End If

For testing purposes, you display the value of the validAccess variable in a label. When you run the

application, you discover that the value of validAccess is 0.
You need to ensure that validAccess has a value of 1.
 What should you do?

A: Replace the code segment in the Web.config file with the following code segment. <authentication

mode="Windows" /><identity impersonate="false" />
B: Replace the code segment in the Web.config file with the following code segment. <authentication

mode="Forms" /><identity impersonate="true" />
C: Ask a network administrator to change the authentication mode of the Web application to Integrated

Windows authentication.
D: Ask a network administrator to change the authentication mode of the Web application to basic

authentication.
Correct Answers:  A  70-297 70-431 70-433

2.You are an application developer for your company. Users who are temporary employees are members of a

group named TemporaryEmployees. You develop a serviced component named MyComponent. MyComponent is part

of a COM+ application named MyApplication. MyComponent is secured by using the SecurityRole attribute for

the Employees role. You need to ensure that members of the TemporaryEmployees group are assigned to the

Employees role. You decide to add the TemporaryEmployees group to the existing Employees role. Which tool

should you use?

A: the Code Access Security Policy tool
B: the Permissions View tool
C: the Component Services tool
D: the Secutil tool
E: the Microsoft .NET Framework Configuration tool
Correct Answers:  C

3.You are an application developer for your company. You develop a Windows Forms application. You set a

breakpoint in the code and run the application. You receive an error message stating that you are unable

to start debugging. You need to be able to debug the application without having more authority than

necessary. What should you do?

A: Add your user account to the local Debugger Users group.
B: Grant your user account complete control of the executable file for the application.
C: Modify the code access security policy to run the Microsoft Visual Studio .NET debugger with the

FullTrust permission.
D: Run Microsoft Visual Studio .NET 2003 by using the runas command and specify a user account in the

Power Users group.
Correct Answers:  B

4.You are an application developer for your company. You develop an ASP.NET Web application that writes

to an event log named EventLog1. All managers in your company will run this application. During a test on

a manager's client computer, the application fails in the following code segment. (Line numbers are

included for reference only.)

1 Dim EventLog1 As New EventLog
2 If Not EventLog.SourceExists("MyWebApp") Then
3   EventLog.CreateEventSource("MyWebApp", "Application")
4 End If
5 EventLog1.Source = "MyWebApp"
6 EventLog1.WriteEntry("The event occurred.")

You need to ensure that event data is written to EventLog1. You want to achieve this goal without

granting unnecessary permissions.

 What should you do?

A: Insert the following code into the application. Dim eventLogDir As StringeventLogDir = "C:\%windir%

\system32\config\AppEvent.Evt"Dim FilePermission As _  New FileIOPermission

(FileIOPermissionAccess.AllAccess, eventLogDir)FilePermission.Assert()
B: Replace line 6 of the code segment with the following line of code. EventLog1.WriteEntry("The event

occurred","EventLogWriter")
C: Grant the managers the Full Control permission for the event log file.
D: Add the aspnet_wp account to the Administrators group.
E: Create the event log source in the installer class of the application.
Correct Answers:  E  70-450 70-536 70-646

5.You are an application developer for your company. You are developing a Windows Forms application. You

deploy a supporting assembly named MyAssembly.dll to the global assembly cache. During testing, you

discover that the application is prevented from accessing MyAssembly.dll.

You need to ensure that the application can access MyAssembly.dll.

What should you do?

A: Digitally sign the application by using a digital certificate.
B: Run the caspol.exe -s on command from the command line.
C: Run the Assembly Linker to link MyAssembly.dll to the application.
D: Modify the security policy to grant the application the FullTrust permission.
Correct Answers:  D

6.You are an application developer for your company. You create an ASP.NET Web application. The

application allows customers to select items for purchase. During the active session of a customer, data

about the quantity and price of items selected by the customer is stored in a cookie on the client

computer. You need to test the application for security vulnerabilities. What should you do?

A: Test the application by using a browser that has cookies disabled.
B: Test the application by selecting 150 items for purchase.
C: Test the application by using a cookie that you create in a text editor.
D: Test the application by using the five most common Internet browsers.
Correct Answers:  C  70-649 MB6-820 VCP-310

7.You are an application developer for your company. The company runs an e-commerce Web site. Users log

on to the Web site by using a password. Passwords are stored in a text file. The following code segment

prepares the passwords for storage.

Function HashPassword(ByVal Pwd As String) As String
  Return FormsAuthentication.HashPasswordForStoringInConfigFile(Pwd, "SHA1")
End Function

Users of the Web site are creating passwords that are easily cracked by dictionary attacks.

You need to decrease the likelihood that a dictionary attack will succeed if the password file is stolen,

without restricting the passwords that users can create.

What should you do?

A: Create a dictionary file that contains common words. Write additional code to reject passwords that

match the entries in the dictionary.
B: Apply a more restrictive discretionary access control list (DACL) to the password storage file.
C: Replace the HashPassword function with the following code segment. Function HashPassword(ByVal Pwd As

String) As String  Return FormsAuthentication.HashPasswordForStoringInConfigFile(Pwd, "MD5")End Function
D: Replace the HashPassword function with the following code segment. Function HashPassword(ByVal Pwd As

String) As String  Dim Rng As New RNGCryptoServiceProvider  Dim Salt(16) As Byte  Rng.GetBytes(Salt)  Dim

saltstr As String = Convert.ToBase64String(Salt)  Return saltstr &

FormsAuthentication.HashPasswordForStoringInConfigFile( _    saltstr & Pwd, "SHA1")End Function
E: Replace the HashPassword function with the following code segment. Function HashPassword(ByVal Pwd As

String) As String  Dim Hash As Integer = 0  Dim Enc As New UnicodeEncoding  Dim HashData As Byte() =

Enc.GetBytes(Pwd)  Dim i As Integer  For i = 0 To HashData.Length Step 2    Hash = Hash Xor (HashData(i)

Or (HashData(i + 1) << 8))  Next  Return Hash.ToString()End Function
Correct Answers:  D

8.You are an application developer for your company. You are developing an application. Part of the

application accepts a URL from the user and stores the URL in a variable named strInput. Only URLs that

specify HTTP or FTP as the protocol are usable by the application. URLs specifying the messenger, news,

file, or other protocols are not permitted because they might allow the user to bypass certain security

features. You need to ensure that the URL provided by the user specifies only HTTP or FTP as the

protocol. What should you do?

A: Test the user's input by using the following regular expression. ^(http:|ftp:)Reject input that does

not match the regular expression.
B: Test the user's input by using the following regular expression. ^(messenger:|file:|news:)Reject input

that matches the regular expression.
C: Modify the contents of strInput so that all instances of messenger or news are replaced with http, and

all instances of file are replaced with ftp.
D: Add the following code segment to the application. If strInput.Chars(0) <> "h" And strInput.Chars(0)

<> "f" Then  MsgBox "Protocol is not allowed."  strInput = ""End If
E: Add the following code segment to the application. Select Case strInput  Case "messenger", "news",

"file"    MsgBox "Protocol is not allowed."    strInput = ""End Select
Correct Answers:  A

9.You are an application developer for your company. You develop a Windows Forms application. You want

your application to use a class library that was developed by another developer. You run the Permissions

View tool on the class library and receive the following output.

Microsoft (R) .NET Framework Permission Request Viewer.  Version 1.1.4322.573
Copyright (C) Microsoft Corporation 1998-2002. All rights reserved.

minimal permission set:
<PermissionSet class="System.Security.PermissionSet"
  version="1">
    <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib,
       Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
      version="1"
      Write="C:\SecureFile.txt"/>
    <IPermission class="System.Security.Permissions.ReflectionPermission, mscorlib,
      Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
      version="1"
      Flags="ReflectionEmit"/>
    <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib,
       Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
      version="1"
      Flags="SerializationFormatter"/>
</PermissionSet>

optional permission set:
<PermissionSet class="System.Security.PermissionSet"
  version="1"
  Unrestricted="true"/>

refused permission set:
  Not specified

You need to add the correct attributes to the Windows Forms application code before the call to the class

library. Which code segment should you use?

A: <Assembly: ReflectionPermission(SecurityAction.RequestMinimum, _  ReflectionEmit:=False), _  Assembly:

SecurityPermission(SecurityAction.RequestOptional, _  SerializationFormatter:=False), _  Assembly:

FileIOPermissionAttribute(SecurityAction.RequestRefuse, _  Write:="C:\SecureFile.txt"), _Assembly:

PermissionSetAttribute(SecurityAction.RequestOptional, Unrestricted:=True)>
B: <Assembly: ReflectionPermission(SecurityAction.RequestOptional, _  ReflectionEmit:=True), _  Assembly:

SecurityPermission(SecurityAction.RequestMinimum, _  SerializationFormatter:=True), _  Assembly:

FileIOPermissionAttribute(SecurityAction.RequestOptional, _  Write:="C:\SecureFile.txt"), _Assembly:

PermissionSetAttribute(SecurityAction.RequestMinimum, Unrestricted:=True)>
C: <Assembly: ReflectionPermission(SecurityAction.RequestMinimum, _  ReflectionEmit:=False), _  Assembly:

SecurityPermission(SecurityAction.RequestMinimum, _  SerializationFormatter:=False), _  Assembly:

FileIOPermissionAttribute(SecurityAction.RequestOptional, _  Write:="C:\SecureFile.txt"), _Assembly:

PermissionSetAttribute(SecurityAction.RequestMinimum, Unrestricted:=True)>
D: <Assembly: ReflectionPermission(SecurityAction.RequestMinimum, _  ReflectionEmit:=True), _  Assembly:

SecurityPermission(SecurityAction.RequestMinimum, _  SerializationFormatter:=True), _  Assembly:

FileIOPermissionAttribute(SecurityAction.RequestMinimum, _  Write:="C:\SecureFile.txt"), _Assembly:

PermissionSetAttribute(SecurityAction.RequestOptional, Unrestricted:=True)>
Correct Answers:  D

10.You are an application developer for your company. Each client computer in the company runs either

Microsoft Windows XP Professional or Windows 98. You are developing an application that will be used by

all users in your company. Users log on to their client computers by using a domain user account that is

a member of the local Power Users group on the user's client computer. You log on to your Windows XP

Professional computer by using a domain user account that is a member of the local Administrators group

and Power Users group on your computer. When testing your application, you need to ensure that your tests

accurately reflect the production environment in which the application will run. How should you test the

application?

A: Ask a domain administrator to temporarily remove your domain user account from the local

Administrators group on your computer while you are testing the application.
B: Test the application on your computer. When testing, log on to the computer by using a domain user

account that is a member of only the local Power Users group on your computer.
C: Deploy the application to a Windows XP Professional computer and a Windows 98 computer. Log on to each

computer by using a domain user account that is a member of only the local Power Users group.
D: Compile the assemblies of the application from the command line by running the runas command and

specifying a domain user account that is a member of only the local Power Users group on your computer.
Correct Answers:  C


Email ItEmail It | Print ItPrint It | CommentsComments (0) | TrackbacksTrackbacks (0) | Flag as offensiveFlag as Offensive

Pass4sure 70-646 certification training materials

1.Maria creates a package for a custom application. She then creates an

advertisement to target a collection of client computers to install the program.

Users report that the advertisement has not appeared on their client computers.

You verify that the client computers are members of the specified collection.

What is the most likely cause of the problem?

A: The advertisement start time has not occurred yet.
B: The package has not been copied to any distribution points.
C: The advertised program already exists locally on each client computer.
D: The computers were not members of the collection when the advertisement was

created.
Correct Answers:  A  1Y0-A05 220-602 642-515

2.You want to increase the throughput of site-to-site communications for your

SMS site by adding a second Asynchronous RAS Sender. You attempt to install a

second instance of the Asynchronous RAS Sender on the site server. You receive

an error message. What should you do?

A: Modify the registry on the site server.
B: Install an Asynchronous RAS Sender on another server in your site.
C: Change the schedule of the Asynchronous RAS Sender on the site server.
D: Create a second address for the Asynchronous RAS Sender on the site server.
Correct Answers:  B

3.You select software metering when you install an SMS primary site server. Now

you want to use software metering for your site. What should you do first?

A: Use Custom Setup on the software metering server to create a software

metering site system.
B: Use the SMS Administrator console to create a software metering site system

or to select an existing site system.
C: Create a collection for all client computers that will be configured for

software metering.
D: Enable software inventory for all client computers that will be configured

for software metering.
Correct Answers:  B

4.Your company's network has five Microsoft Windows NT Server computers. The

server computers are configured as shown in the following table.


All the server computers are on the same LAN. You run SMS Setup and select the

Express option to install a primary site on Server2. Which server computer or

computers will become logon points by default?
 
A: only Server1
B: only Server2
C: only Server1 and Server2
D: Server1, Server2, and Server3
E: Server1, Server2, Server4, and Server5
F: No server computers become logon points by default.
Correct Answers:  C  70-270 70-272 70-293

5.Your network consists of two sites, one in London and one in Paris. The London

site is a central SMS 1.2 site. The Paris site is a secondary SMS 1.2 site that

reports to London. The central site is configured to use Microsoft SQL Server

6.5, which runs on a separate computer. You want to upgrade the central site to

SMS 2.0. Which actions must you perform before you can start the upgrade?

(Choose all that apply.)

A:Install Microsoft Internet Explorer 4.01 Service Pack 1 or later on the

central site server.
B:Install Microsoft Internet Explorer 4.01 Service Pack 1 or later on the

secondary site server.
C:Install Microsoft Windows NT Server 4.0 Service Pack 4 or later on the central

site server.
D:Install Microsoft Windows NT Server 4.0 Service Pack 4 or later on the

secondary site server.
E:Upgrade the SQL Server computer to SQL Server 7.0.
F:Convert the SMS databases to SMS 2.0 database format.
Correct Answers:  A, C

6.Your site hierarchy is configured as shown in the exhibit. (Click the Exhibit

button.) You want to be able to create software packages in the New York site

and distribute the packages to all other sites. Which site addresses must exist

in the New York site?
 
A: only Madrid and Paris
B: only London and Boston
C: only London, Boston, and Paris
D: London, Boston, Madrid, and Paris
Correct Answers:  B

7.You plan to configure a site hierarchy as follows:
London and Paris report to Rome.
Tokyo and Seoul report to Taipei.
Rome and Taipei report to Vancouver.
What is the relationship of Rome to Paris?

A: Rome is a child site of Paris.
B: Rome is a parent site of Paris.
C: Rome is a central site to Paris.
D: Rome is a secondary site to Paris.
E: No relationship exists.
Correct Answers:  B  70-297 70-431 70-433

8.Your company's network consists of a single IP subnet. All computers on the

network are running Microsoft Windows NT Workstation or Microsoft Windows NT

Server and are DHCP clients. There are three domains on your network named CORP,

MIS, and SALES.

The MIS domain and the SALES domain both trust the CORP domain. The Domain

Admins group in the CORP domain is a member of the Administrators group on all

computers on the network.

You use Custom Setup to install an SMS primary site server on a domain

controller in the MIS domain. The site settings are set to the default values.

The SMS service account is a member of the Domain Admins group in the CORP

domain.


You want to accomplish the following goals:
The domain controllers of each domain will be configured as logon points.
The domain controllers of each domain will be configured as client access

points.
All computers on the network will have SMS client software installed.
All computers on the network will report their hardware inventory data without

user intervention.

You take the following actions:
Enable Windows NT Remote Client Installation for all supported platforms.
Enable and schedule Network Discovery for all client operating systems.
Enable hardware inventory on client computers.
Which result or results do these actions produce? (Choose all that apply.)

A:The domain controllers of each domain are configured as logon points.
B:The domain controllers of each domain are configured as client access points.
C:All computers on the network have SMS client software installed.
D:All computers on the network report their hardware inventory data without user

intervention.
Correct Answers:  C, D

9.You have installed an SMS primary site by using Custom Setup. During

installation, you enabled NetWare Bindery support. You want information about

NetWare bindery client computers on your network to appear in your SMS site

database. What must you do?

A: Enable NetWare NDS Logon Discovery.
B: Enable NetWare NDS Client Installation.
C: Install Gateway Services for NetWare.
D: Install File and Print Services for NetWare.
E: Add Smsls.scr to the logon script of the site server.
Correct Answers:  C

10.Your company's network consists of two domains named CORP and RESEARCH. No

trust relationships exist between the CORP domain and the RESEARCH domain. The

site server for your SMS primary site is a domain controller in the RESEARCH

domain. The SMS service account is a member of the SMS Accounts global group in

the RESEARCH domain. You want to configure your site so that the domain

controllers in both domains will become SMS logon points. Which three actions

should you take to accomplish this goal? (Choose three.)

A:Configure the RESEARCH domain to trust the CORP domain.
B:Configure the CORP domain to trust the RESEARCH domain.
C:Add the Domain Admins group from the CORP domain to the Administrators group

in the RESEARCH domain.
D:Add the SMS Accounts group from the RESEARCH domain to the Administrators

group in the CORP domain.
E:Run the Smsman.exe file on each domain controller.
F:Enable Windows Networking Logon Discovery for the RESEARCH domain and the CORP

domain.
G:Assign the client access point role to each domain controller in the RESEARCH

domain and the CORP domain.
Correct Answers:  B, D, F


Email ItEmail It | Print ItPrint It | CommentsComments (0) | TrackbacksTrackbacks (0) | Flag as offensiveFlag as Offensive

Pass4sure 642-453 Solutions for Engineers

1.Drag Drop question
 
Drag and drop question. Drag the items to the proper locations.
Correct Answers:   70-236 70-291 70-284
 
2.Drag Drop question
 
Drag and drop question. Drag the items to the proper locations.
Correct Answers:
 
3.When should solution templates be created and deployed?

A: for low risk solutions that will be deployed more than once
B: for low risk solutions that will be deployed once
C: for high risk solutions that will be deployed more than once
D: for high risk solutions that will be deployed once
Correct Answers:  C

4.R1 and R2 cannot establish an EIGRP neighbor relationship.

Both R1 and R2 serial interfaces are showing status up,

protocol up and can successfully ping each other. Given the

above show outputs, what is the problem?
 
A: auto-summary mismatch
B: no eigrp log-neighbor-changes
C: metric weights mismatch
D: needs a more specific mask in the network statement
E: both routers missing the neighbor ip-address command
Correct Answers:  C  70-454 1Y0-A08 70-290

5.What type of interface will be created when the command ppp

multilink is added to an ISDN BRI interface?

A: serial 0/0
B: BRI 0/0
C: BRI 0/0:1 and BRI 0/0:2
D: BRI 0/0:23
E: virtual-access 1
F: virtual-template 1
Correct Answers:  E

6.Over the past year the amount of traffic between certain

access-layer network segments and the company's intranet

website has increased dramatically. The CPU utilization levels

of network devices and intranet server are well within

acceptable limits. Congestion has been observed at the

connection between the access-layer switches and the

distribution layer, multilayer switches. What should be done to

help eliminate congestion?

A: Upgrade access-layer switches to better performing models.
B: Implement QoS features on the access-layer switches.
C: Upgrade the end user Gigabit Ethernet links.
D: Increase the bandwidth on the upstream links from the

access-layer switches.
E: Upgrade the distribution layer, multilayer switches to

better performing models.
F: Implement QoS features on the distribution layer, multilayer

switches.
Correct Answers:  D  BI0-132 1y0-a06 1y0-a09

7.The network administrator needs to verify that the web server

is accessible to all employees within the company intranet and

also verify connectivity at all OSI layers. How can the

administrator test to ensure all layers of the OSI model are

working correctly?

A: Ping the web server.
B: Telnet to port 80 of the web server.
C: Issue the debug ip http server command.
D: Issue the show ip http server command.
E: Issue the netstat -r command.
F: Ping the web server by name.
Correct Answers:  B

8.Refer to the exhibit. R1 is unable to ping R2. What is the

most likely cause of the problem?
 
A: the shut down of the R2 Frame Relay interface
B: incorrect IP address
C: incorrect Frame Relay encapsulation configured
D: incorrect DLCI configured
E: incorrect keepalive setting configured
F: incorrect LMI set
Correct Answers:  B

9.R1 has an EIGRP neighbor relationship with R2, but is unable

to establish a neighbor relationship with R3. R1 and R3 can

successfully ping each other. Observe the three show run

outputs. What two problems exist? (Choose two.)
 
A:the no auto-summary command needed on R3
B:incorrect mask on the EIGRP network statement of R1
C:mismatch autonomous system number between R1 and R3
D:mismatch variance multiplier between R1 and R3
E:mismatch hold-time between R1 and R3
Correct Answers:  B, C

10.The above message appears on your console screen. Given this

information, which statement is true?
 
A: The wrong peer is set on the crypto map.
B: The crypto algorithms do not match.
C: The DSS key is missing or invalid.
D: The IP address for the remote peer is incorrect.
Correct Answers:  B


Email ItEmail It | Print ItPrint It | CommentsComments (0) | TrackbacksTrackbacks (0) | Flag as offensiveFlag as Offensive

Cisco 70-290 dump

1.IFEE S. IHEDORO Foundation Express for Field

Engineers 01:03:21Question of Question 59 of 59
 
1.This question is not scored, answer it or not will

not effect your score. So we dont provide answers for

it.

Drag and drop question. Drag the items to the proper

locations.
Correct Answers:
 
2.An 802.11b telephone is receiving an audio signal

from an access point, but cannot send audio. What is a

possible cause?

A: The RSSI value on the telephone is greater than 35.
B: The access point is set to receive only at 802.11g

data rates.
C: The security settings in the telephone do not match

the settings in the access point.
D: The transmit power in the telephone is significantly

lower than the transmit power in the access point.
Correct Answers:  D  mb2-631 MB6-821 N10-004

3.Refer to the exhibit. Switches A and C are running

PVST+ STP, and Switch B is running 802.1Q STP. If the

BPDU of the root in VLAN 1 is better than the BPDU of

the root in VLAN 2, then there is no blocking port in

the VLAN 2 topology. The BPDU of VLAN 2 never makes a

"full circle" around the topology; it is replaced by

the VLAN 1 BPDU on the B-C link, because B runs only

one STP merged with VLAN 1 STP of PVST+. Thus, there is

a forwarding loop. What does PVST+ do to correct this?
 
A: Switch A sends PVST+ BPDUs of VLAN 2 (to the SSTP

address that is flooded by Switch B) towards Switch C.

Switch C will put port C-B into a type-inconsistent

state, which prevents the loop.
B: Switch B sends PVST+ BPDUs of VLAN 1 (to the SSTP

address that is flooded by Switch A) towards Switch C.

Switch C will put port C-B into a type-inconsistent

state, which prevents the loop.
C: Switch C sends PVST+ BPDUs of VLAN 2 (to the SSTP

address that is flooded by Switch B) towards Switch C.

Switch A will put port C-B into a type-inconsistent

state, which prevents the loop.
D: Switch A sends PVST+ BPDUs of VLAN 1 (to the SSTP

address that is flooded by Switch B) towards Switch B.

Switch A will put port C-B into a type-inconsistent

state, which prevents the loop.
Correct Answers:  A

4.When will you need to enable the transparent

tunneling feature on the Cisco VPN Client software?

A: to enable DMVPN
B: to enable dynamic routing over the IPSec tunnel

using GRE
C: to enable V3PN
D: if the IPSec-protected traffic is going through a

router that is performing NAT or PAT
E: if IPSec is using tunnel mode instead of transport

mode
Correct Answers:  D

5.Which two statements best describe the wireless core

feature set using autonomous access points when

implementing Wireless Domain Services? (Choose two.)

A:The primary Layer 2 WDS server address is configured

via the infrastructure access point GUI.
B:The primary Layer 2 WDS server address is

automatically discovered by the infrastructure access

points through multicast.
C:The primary Layer 2 WDS is selected by the highest

MAC address, followed by priority number.
D:The primary Layer 2 WDS is selected by the highest

priority number, followed by MAC address.
E:The primary Layer 2 WDS is selected by the highest IP

address, followed by MAC address.
Correct Answers:  B, D    70-236 70-291 70-284

6.You have just configured and enabled the Cisco IOS

Firewall feature set from a remote location using the

Cisco Router and Security Device Manager (SDM) Firewall

wizard. You later want to double-check your

configuration using Cisco SDM. However, you find that

you can no longer connect to the Cisco IOS Firewall

using Cisco SDM. What is the probable cause of this

failure?

A: You must additionally specify the Cisco SDM

management port number to gain access when the

configuration has been applied.
B: You have not generated an RSA key pair between the

host and device to allow secure access via Cisco SDM.
C: You have been locked out via access lists that have

been applied to the router as a result of your Cisco

SDM configuration.
D: You must specify the host IP address of Cisco SDM in

the Configuration panel for allowed management

connections.
Correct Answers:  C

7.Refer to the exhibit. A host on the Sales subnet

(10.0.2.0/24) is not able to initiate a web connection

to an outside website. According to the network diagram

and the partial Cisco Adaptive Security Device Manager

configuration shown in the exhibit, what is the cause

of the problem?
 
A: The dynamic NAT global pool is not configured

correctly.
B: The source networks for static NAT are not

configured correctly.
C: The administrator needs to add an access list and

static command for the return web traffic.
D: The source network for dynamic NAT is not configured

correctly.
Correct Answers:  D     70-454 1Y0-A08 70-290

8.When implementing an integrated network-security

management design, which critical issue should you

account for?

A: that management stations intercommunicate and can

correlate events
B: that full syslogging of all events is enabled
C: that all network devices are time synchronized
D: that SNMP community read-write strings are

configured to allow for total management access
Correct Answers:  C

9.What is the default authentication method when using

HTTP to access the Cisco Router and Security Device

Manager (SDM), assuming that you are not using the

default configuration file (sdmconfig-xxxx.cfg) that

comes with Cisco SDM?

A: none
B: local database
C: aaa
D: enable password
E: line console password
F: line vty password
Correct Answers:  D

10.Which two items have the most influence on an

outdoor wireless antenna bridge-path installation?

(Choose two.)

A:snow
B:Earth's curvature
C:lightning
D:Fresnel zone
E:rain
Correct Answers:  B, D


Email ItEmail It | Print ItPrint It | CommentsComments (0) | TrackbacksTrackbacks (0) | Flag as offensiveFlag as Offensive
« Previous1Next »