首页 > Microsoft > TS > 70-544CSharp

TS: Ms Virtual Earth 6.0, Application Development:70-544CSharp

科目编号:70-544CSharp

科目名称:TS: Ms Virtual Earth 6.0, Application Development

描述:
70-544CSharp 考试是 Microsoft 公司的 TS: Ms Virtual Earth 6.0, Application Development 认证考试官方代号,kaoccna 的 70-544CSharp 权威考试题库软件是 Microsoft 认证厂商的授权产品,kaoccna 绝对保证顺利通过,否则承诺全额退款!
TS: Ms Virtual Earth 6.0, Application Development 认证作为全球IT领域专家 Microsoft 热门认证之一,是许多大中 IT 企业选择人才标准的必备条件。 如果你正在准备 70-544CSharp 考试,为 Microsoft TS: Ms Virtual Earth 6.0, Application Development认证做最后冲刺,又苦于没有绝对权威的考试真题模拟

    mcsepass 实行"一次不过全额退款"承诺。如果您购买我们 70-544CSharp 的考题,只要不是首次通过,凭盖有 PROMETRIC 或 VUE 考试中心钢印的考试成绩单,我们将退还您购买 70-544CSharp 考题大师的全部费用,绝对保证您的利益不受到任何的损失。

70-544CSharp
  • 科目: 70-544CSharp
  • 原价: ¥ 507.00
  • 现价: ¥ 358.00

kaoccna 的优势

70-544CSharp 试题的质量和价值
mcsepass 模拟测试题具有最高的专业技术含量,只供具有相关专业知识的专家和学者学习和研究之用。
100% 保证您通过 70-544CSharp 的考试
如果你使用 mcsepass 模拟测试,我们将保证你的第一次参加考试即取得成功,否则,我们将全额退款!
试用后再购买
mcsepass 提供每种产品免费测试。在您决定购买之前,请检测联接,可能存在的问题及试题质量和适用性。
kaoccna认证考试题库网专业提供 Microsoft 70-544CSharp 最新题库下载,完全覆盖 mcsepass 考试原题。

部分考题展示

 
 
Exam : Microsoft 70-544(C#)
Title : TS: MS Virtual Earth 6.0, Application Development


1. 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.)
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);
}
}
Answer: A

2. 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. GetInfoOptions getInfoOptions = new GetInfoOptions();
getInfoOptions.IncludeAddresses = true;
getInfoOptions.IncludeAllEntityTypes = true;
Location[] locations = findService.GetLocationInfo(origin, "MapPoint.NA", getInfoOptions)
string address = locations[0].Entity.DisplayName;
B. GetInfoOptions getInfoOptions = new GetInfoOptions();
getInfoOptions.IncludeAddresses = false;
getInfoOptions.IncludeAllEntityTypes = false;
getInfoOptions.EntityTypesToReturn = new string[] { "PopulatedPlace" };
Location[] locations = findService.GetLocationInfo(origin, "MapPoint.NA", getInfoOptions);
string address = locations[0].Entity.DisplayName;
C. GetInfoOptions getInfoOptions = new GetInfoOptions();
getInfoOptions.IncludeAddresses = true;
getInfoOptions.IncludeAllEntityTypes = false;
getInfoOptions.EntityTypesToReturn = new string[] { "PopulatedPlace" };
Location[] locations = findService.GetLocationInfo(origin, "MapPoint.NA", getInfoOptions);
string address = locations[0].Entity.DisplayName;
D. GetInfoOptions getInfoOptions = new GetInfoOptions();
getInfoOptions.IncludeAddresses = true;
getInfoOptions.IncludeAllEntityTypes = false;
getInfoOptions.EntityTypesToReturn = new string[] { "AdminDivision1" };
Location[] locations = findService.GetLocationInfo(origin, "MapPoint.NA", getInfoOptions)
string address = locations[0].Entity.DisplayName;
Answer: B

3. You create a Microsoft MapPoint Web Service application that accepts routes from users.
You need to find points of interest that are within one mile of a route or within three miles of the endpoints of the route.
What are two possible ways to achieve the goal? (Each correct answer presents a complete solution. Choose two.)
A. findNearRouteSpec.Distance = 1;
findResults = findService.FindNearRoute(findNearRouteSpec);
foundLocations.Add(findResults);
findNearbySpec.Distance = 3;
findNearbySpec.LatLong = startLatLong;
findResults = findService.FindNearby(findNearbySpec);
foundLocations.Add(findResults);
findNearbySpec.LatLong = endLatLong;
findResults = findService.FindNearby(findNearbySpec);
foundLocations.Add(findResults);
B. findNearRouteSpec.Distance = 1;
findResults = findService.FindNearRoute(findNearRouteSpec);
foundLocations.Add(findResults);
findNearbySpec.Distance = 3;
foreach (FindResult findResult in findResults.Results)
{
findNearbySpec.LatLong = findResult.FoundLocation.LatLong;
findResults = findService.FindNearby(findNearbySpec);
foundLocations.Add(findResults);
}
C. findNearRouteSpec.Distance = 1;
findResults = findService.FindNearRoute(findNearRouteSpec);
foundLocations.Add(findResults);
findNearbySpec.Distance = 3;
foreach (Segment segment in route.Itinerary.Segments)
{
findNearbySpec.LatLong = segment.Waypoint.Location.LatLong;
findResults = findService.FindNearby(findNearbySpec);
foundLocations.Add(findResults);
}
D. findNearRouteSpec.Distance = 1;
findResults = findService.FindNearRoute(findNearRouteSpec);
foundLocations.Add(findResults);
findNearbySpec.Distance = 3;
foreach (Segment segment in route.Itinerary.Segments)
{
foreach (Direction direction in segment.Directions)
{
findNearbySpec.LatLong = direction.LatLong;
findResults = findService.FindNearby(findNearbySpec);
foundLocations.Add(findResults);
}
}
Answer: A AND C

4. You are integrating third-party data into a Virtual Earth 6.0 application. The data that is retrieved from the third party is stored in an array named Results. The Results array is stored inside a Web handler. The data is stored in the following format.
The Web handler uses the GeoRSSFeed class to accept items of type GeoRSSItem. The class contains the ToString() method that writes the GeoRSS feed to a string.
The Web handler GeoRSS integration is defined by the following code segment. (Line numbers are included for reference only.)
You need to encode the data inside the Results array into the GeoRSS format.
Which code segment should you insert at line 05?
A. String [] keys = Results[i].Keys;
String curKey;
For (int i = 0; i < keys.length; i++){
curKey = keys[i];
curItem.Add(curKey, Results[i][curKey]);
}
B. curItem.Add("title", Results[i]["name"]);
curItem.Add("description", Results[i]["address"]);
curItem.Add("latitude", Results[i]["latitude"]);
curItem.Add("longitude", Results[i]["longitude"]);
curItem.Add("icon", Results[i]["thumbnail"]);
C. curItem.Add("title", Results[i]["name"]);
curItem.Add("description", string.Format("{0}|{1}", _
Results[i]["address"], _
Results[i]["thumbnail"]);
curItem.Add("latitude", Results[i]["latitude"]);
cur Item.Add("longitude", Results[i]["longitude"]);
D. curItem.Add("name", Results[i]["name"]);
curItem.Add("address", string.Format("{0}|{1}", _
Results[i]["address"], _
Results[i]["thumbnail"]);
curItem.Add("latitude", Results[i]["latitude"]);
curItem.Add("longitude", Results[i]["longitude"]);
Answer: C

5. You are creating a Virtual Earth 6.0 application that retrieves locations from a Microsoft SQL Server 2005 database.
A stored procedure will be used to retrieve only locations that lie within the currently displayed map area.
You need to define the boundary within which the locations displayed on the map must lie.
How should you define the boundary?
A. points represented by the bottom-right and top-left pixel coordinates
B. points represented by the bottom-right and top-left latitude and longitude coordinates
C. the center point of a circle whose radius is equal to the size of the map based on pixel coordinates
D. the center point of a circle whose radius is equal to the size of the map based on latitude and longitude coordinates
Answer: B

6. You are creating a custom tile set by using Microsoft MapCruncher.
The tile set must overlay a weather map image in a Virtual Earth 6.0 application by using MapCruncher.
You need to perform two tasks before using MapCruncher to create the custom tile set.
Which two tasks should you perform? (Each correct answer presents part of the solution. Choose two.)
A. Split the weather map image into tiles.
B. Obtain the latitude and longitude coordinates for the corners of the weather map image.
C. Apply the proper alpha filter to the weather map image to display any transparent portions on the Virtual Earth map.
D. Obtain low resolution weather map images for low zoom levels and high resolution weather map images for high zoom levels.
Answer: B AND C

7. You are updating a Virtual Earth 6.0 store locator. A database table named Stores contains the City and State fields. A Microsoft SQL Server 2005 function named CalculateDistance measures the distance between two points.
The store locator contains a stored procedure named LookupStores that retrieves the names of stores located in a given city and state. The city and state are passed in as parameters to the stored procedure.
You need to extend the store locator to support a proximity search within a given radius.
Which two tasks should you perform? (Each correct answer presents part of the solution. Choose two.)
A. Add a Radius field to the Stores table.
B. Add a Distance field to the Stores table.
C. Add Latitude and Longitude fields to the Stores table.
D. Extend the LookupStores stored procedure to use CalculateDistance.
E. Create a new stored procedure that uses CalculateDistance along with the result set from the LookupStores stored procedure.
F. Create a new stored procedure that uses CalculateDistance along with the entire data set from the Stores table.
Answer: C AND F

8. Your Microsoft MapPoint Web Service (MWS) User Id is 124566, and your MWS password is P@ssw0rd.
You need to use MWS to create an application.
Which code segment should you use?
A. System.Net.NetworkCredential appCredential = new System.Net.NetworkCredential("124566", "P@ssw0rd");
B. System.Security.Principal.NTAccount appCredential = new System.Security.Principal.NTAccount("124566", "P@ssw0rd");
C. System.Security.Principal.GenericIdentity appCredential = new System.Security.Principal.GenericIdentity ("124566", "P@ssw0rd");
D. System.EnterpriseServices.SecurityIdentity appCredential = new System.EnterpriseServices.SecurityIdentity ("124566", "P@ssw0rd");
Answer: A

9. You are writing a code segment for a Virtual Earth 0 application. The code segment returns data for multiple locations to a client-side JavaScript function that makes the initial request.
The returned data contains the following properties for each location:
ID
Latitude
Longitude
Address
You need to format all locations and their properties in JavaScript Object Notation (JSON) format.
Which code segment should you use?
A. var results = new Array();
results[0] = 123;
results[1] = 40.0;
results[2] = -74.0;
results[3] = "123 Main St.";
B. var results = new Array();
results[0] = new Array();
results[0][0] = 123;
results[0][1] = 40.0;
results[0][2] = -74.0;
results[0][3]= " 123 Main St .";
C. var results = {
ID: 123,
Latitude: 40.0,
Longitude: -74.0,
Address: " 123 Main St ."
};
D. var results = {
0:{
ID: 123,
Latitude: 40.0,
Longitude: -74.0,
Address: " 123 Main St "
}
};
Answer: D

10. A Virtual Earth 6.0 application loads locations from a local Microsoft SQL Server 2005 database. You update locations in the database manually.
You plan to automate the manual process.
You need to ensure that the automation process updates the maximum number of locations in the least amount of time.
What should you do?
A. Call the Find method for each location by using Microsoft MapPoint Web Service.
B. Call the FindAddress method for each location by using Microsoft MapPoint Web Service.
C. Push all locations to Customer Data Services by using the UploadSpecification class, and retrieve the results.
D. Push all locations to Customer Data Services by using the BatchGeocodeSpecification class, and retrieve the results.
Answer: D

11. Your company salesman plans to visit five customers located in five different cities.
You need to display the shortest route that covers all five customer locations on a Web-based map.
What should you do?
A. Call the VEMap.GetRoute method. Set the route type to shortest.
B. Call the Route.Calculate method and the Waypoints.Optimize method.
C. Call the RouteServiceSoap.CalculateSimpleRoute method by using the MapPoint.World datasource, an array with latitude and longitude values, and the value shortest for the SegmentPreference parameter. Call the RenderServiceSoap.GetMap method.
D. Call the RouteServiceSoap.CalculateSimpleRoute method by using the MapPoint.WorldRoutable data source, an array with latitude and longitude values, and the value shortest for the SegmentPreference parameter. Call the RenderServiceSoap.GetMap method.
Answer: D

12. You are managing Microsoft MapPoint Web Service (MWS) data in an application by using the Customer Services site. The application uses the DS_ONE data source stored on the Customer Services site.
The application displays several records in the wrong locations on the map.
You need to display these records correctly on the map.
What should you do?
A. View the data source geocoding results. Filter on match code. Manually edit all the resulting locations through the Customer Services site.
B. Download the data source. Remove the latitude and longitude data. Re-upload the corrected data to the Customer Services site.
C. Download the data source. Update all the locations by using a Find or FindAddress call. Re-upload the corrected data to the Customer Services site.
D. Download the data source. Update each bad geocode by using a Find or FindAddress call. Re-upload the corrected data to the Customer Services site.
Answer: A

13. You want to define a route specification for the fastest route in the United Kingdom between a start point, 30 intermediate stops, and an end point.
You call the Microsoft MapPoint Web Service method named CalculateSimpleRoute. You also set an array of latitude and longitude values for all the points and stops as the first parameter.
You need to set the required parameters for the route specification.
What should you do?
A. Set the data source parameter to MapPoint.EU and use Quickest as the value for the SegmentPreference parameter.
B. Set the data source parameter to MapPoint.BR and use Quickest as the value for the SegmentPreference parameter.
C. Set the data source parameter to MapPoint.EU and use Shortest as the value for the SegmentPreference parameter.
D. Set the data source parameter to MapPoint.EU and use PreferredRoads as the value for the SegmentPreference parameter.
E. Set the data source parameter to MapPoint.World and use PreferredRoads as the value for the SegmentPreference parameter.
Answer: A

14. You are creating a Virtual Earth 6.0 application. The application will use data that is stored in the Microsoft MapCruncher output format.
The MapCruncher output is defined in the following manner:
var tileSrc = http://dev.live.com/virtualearth/sdk/layers/layer1
You need to ensure that the application displays the data as a new layer on the Virtual Earth map.
Which code segment should you use?
A. var tileSourceSpec = new VETileSourceSpecification("layer1/%4.png", tileSrc);
 map.AddTileLayer(tileSourceSpec, true);
B. var tileSourceSpec = new VETileSourceSpecification("layer1", tileSrc + /%4);
 map.AddTileLayer(tileSourceSpec, true);
C. var tileSourceSpec = new VETileSourceSpecification("layer1", tileSrc + "/%4.png");
 map.AddTileLayer(tileSourceSpec, true);
D. var tileSourceSpec = new VETileSourceSpecification("layer1", tileSrc + /%1.png);
 map.AddTileLayer(tileSourceSpec, true);
Answer: C

联系我们
联系手机:13861768475
MSN:saleintest@hotmail.com
QQ留言 QQ留言

首页 |代考流程 | 常见问题 | 证书查询 | 认证资讯 | 联系我们 | 站点导航 1 2 3 4 | 站点地图

Any charges made through this site will appear as CertBible Tech LTD. All trademarks are the property of their respective owners.

Copyright©2006-2011 mcsepass Limited. All Rights Reserved