Pass your test with the help of Microsoft 70-544 practice pdf. Prep4King offer 100% guarantee!
Updated: Jul 22, 2026
No. of Questions: 135 Questions & Answers with Testing Engine
Download Limit: Unlimited
We provide the most prestigious and reliable Prep4King 70-544 exam pdf for you. The valid questions with verified answers of 70-544 exam torrent will help you pass successfully. Download the Microsoft 70-544 free update questions and start your preparation right now.
Prep4King has an unprecedented 99.6% first time pass rate among our customers.
We're so confident of our products that we provide no hassle product exchange.
| Certification Vendor: | Microsoft |
| Exam Name: | TS: Ms Virtual Earth 6.0, Application Development |
| Exam Number: | 70-544 |
| Exam Duration: | 90-120 |
| Related Certifications: | Microsoft Certified Technology Specialist (MCTS) |
| Available Languages: | English, French, German, Japanese |
| Passing Score: | 700 / 1000 |
| Exam Format: | Multiple Choice, Multiple Response, Scenario-Based |
| Real Exam Qty: | 50-75 |
| Certificate Validity Period: | Retired exam; certification no longer active |
| Exam Price: | USD 125 |
| Recommended Training: | Virtual Earth 6.0 SDK Documentation |
| Exam Registration: | Microsoft Retired Exams List |
| Sample Questions: | Microsoft 70-544 Sample Questions |
| Exam Way: | Delivered via Prometric testing centers; retired since June 30, 2011 |
| Pre Condition: | No mandatory prerequisites; recommended knowledge of JavaScript, HTML, and web development |
| Official Syllabus URL: | https://learn.microsoft.com/en-us/previous-versions/microsoft-6.0/ee407362(v=msdn.10) |
| Section | Weight | Objectives |
|---|---|---|
| Displaying and Managing Locations | 25% | - Find locations, addresses, and points of interest - Geocoding and reverse geocoding - Set center, zoom level, and bounds |
| Adding Shapes, Layers, and Overlays | 25% | - Create pushpins, polylines, and polygons - Work with custom tile layers and MapCruncher output - Manage layers, visibility, and z-order |
| Security, Deployment, and Optimization | 10% | - Optimize performance and reduce load time - Secure client-side map applications - Deploy Virtual Earth applications |
| Working with the Virtual Earth 6.0 Control | 25% | - Configure map views, modes, and sizes - Initialize and load the map control - Handle map events and user interactions |
| Integrating Data and Services | 15% | - Consume geospatial web services - Implement routing and directions - Display info boxes and custom data |
1. The intranet site of your company displays an interactive map with a table. You need to ensure that the data row associated with a specific pushpin on the map is highlighted when a user points the mouse to the pushpin. Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)
A) Use the VEMap.onmousemove event to capture user interaction. Create a JavaScript function for highlighting the row in the table.
B) Use the VEMap.onLoadMap event to specify a function call.
C) Use the VEMap.AttachEvent method to attach a mouse event to the VEMap object that calls a function.
D) Use the VEMap.onmouseover event to capture user interaction. Create a JavaScript function for highlighting the row in the table.
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) 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() {"AdminDivision1"} 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() {"PopulatedPlace"} Dim locations As List(Of Location) = _
findService.GetLocationInfo(origin, "MapPoint.NA", getInfoOptions) Dim address As String
= locations(0).Entity.DisplayName
3. The branch office locations of your company are saved and shared in a portal data store by using the Live Search Maps portal. The company wants to display the locations on a Virtual
Earth 6.0 map. You need to add the saved data as a new layer on the Virtual Earth map.
Which two actions should you perform? (Each correct answer presents part of the solution.
Choose two.)
A) Import the data as GeoRSS to a new layer.
B) Import the data as VECollection to a new layer.
C) Extract the GUID from a Live Search Maps Collection reference.
D) Access the data by using the URL for the Live Search Maps Collection object.
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.
Results(0).Add("name", "Mike Pizzaria") Results(0).Add("address", "123 Main St., New
York, NY") Results(0).Add("latitude", "40.123") Results(0).Add("longitude", "-70.456")
Results(0).Add("thumbnail", "http://www.site.com/st3465.jpg") ... Return Results 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.) 01 Dim feed As New GeoRSSFeed() 02 Dim curItem As GeoRSSItem
03 For i As Integer = 0 To Results.Count - 1 04 curItem = New GeoRSSItem() 05 ... 06 feed.Add(curItem) 07 Next 08 // Write feed to HTTP Response 09
context.Write(feed.ToString()); The Web handler uses the GeoRSSItem class that contains the following code segment. (Line numbers are included for reference only.) 10
Public Class GeoRSSItem 11 Public elements As Dictionary(Of String, String) 12 Public
Sub New() 13 elements = New Dictionary(Of String, String)() 14 End Sub 15 Public Sub
Add(ByVal pName As String, _ ByVal pValue As String) 16 elements.Add(pName, pValue)
17 End Sub 18 Public Overloads Overrides Function ToString() As String 19 Dim returnValue As New StringBuilder() 20 For Each key As String In elements.Keys 21 returnValue.AppendFormat("" & Chr(9) & "" & _ Chr(9) & "<{0}>{1}</{0}>" & Chr(10) & "", _ key, elements(key)) 22 Next 23 Return returnValue.ToString() 24 End Function 25 End
Class You need to encode the data inside the Results array into the GeoRSS format.
Which code segment should you insert at line 05?
A) 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"))
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")) curItem.Add("longitude",
Results(i)("longitude"))
D) Dim objEnumerator As IEnumerator Dim Keys As Collections.Generic.Dictionary(Of
String, _ String).KeyCollection = Results(i).Keys() Dim curKey As String objEnumerator =
Keys.GetEnumerator() Do While objEnumerator.MoveNext curKey =
objEnumerator.Current curItem.Add(curKey, Results(i)(curKey)) Loop
5. 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 For
Each findResult As FindResult In FindResults.Results findNearbySpec.LatLong = findResult.FoundLocation.LatLong FindResults = findService.FindNearby ( findNearbySpec
) foundLocations.Add ( FindResults ) Next
B) findNearRouteSpec.Distance = 1 findResults = findService.FindNearRoute ( findNearRouteSpec ) foundLocations.Add ( findResults ) findNearbySpec.Distance = 3 For
Each segment As Segment In route.Itinerary.Segments findNearbySpec.LatLong = segment.Waypoint.Location.LatLong findResults = findService.FindNearby ( findNearbySpec ) foundLocations.Add ( findResults ) Next
C) findNearRouteSpec.Distance = 1 findResults = findService.FindNearRoute ( findNearRouteSpec ) foundLocations.Add ( findResults ) findNearbySpec.Distance = 3 For
Each segment As Segment In route.Itinerary.Segments For Each direction As Direction In segment.Directions findNearbySpec.LatLong = direction.LatLong findResults = findService.FindNearby ( findNearbySpec ) foundLocations.Add ( findResults ) Next Next
D) findNearRouteSpec.Distance = 1 Dim findResults As 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 )
Solutions:
| Question # 1 Answer: C,D | Question # 2 Answer: B | Question # 3 Answer: B,C | Question # 4 Answer: C | Question # 5 Answer: B,D |
I suggest the pdf study guide by Prep4King for the 70-544 exam. Helps a lot in passing the exam with guaranteed good marks. I got 92% marks in the first attempt.
Prep4King pdf file with practise exam software is the best suggestion for all looking to score well. I passed my 70-544 certification exam with 92% marks. Thank you so much, Prep4King.
Prep4King exam dumps for the 70-544 certification exam are the latest. Highly recommended to all taking this exam. I scored 92% marks in the exam. Thank you Prep4King
Impressed by the similar practise exam software to the original exam. I highly suggest Prep4King to all. Scored 92% marks in the 70-544 certification exam.
I passed my certified 70-544 exam with 92% marks. I used the material by Prep4King and it was so easy to learn from it. Great work team Prep4King. Highly suggested to all.
Found the latest exam dumps for MCTS certification exam at Prep4King. I couldn't clear my exam last time because the questions were different from what i studied. Now I got 92% marks. Thank you Prep4King for this amazing work.
Disclaimer Policy: The site does not guarantee the content of the comments. Because of the different time and the changes in the scope of the exam, it can produce different effect. Before you purchase the dump, please carefully read the product introduction from the page. In addition, please be advised the site will not be responsible for the content of the comments and contradictions between users.
Prep4King provides you with the high quality and high pass rate 70-544 study material to all the candidates. You can practice with 70-544 test engine and enjoy the simulated test environment. Now, study with our 70-544 training torrent, you will be confident in the actual test and easily pass.
While, if you fail the test unfortunately, do not worry, we guarantee to give you refund.Kindly please show us your failure certification score report, then we will deal with it and refund you.
Online test engine can supports Windows / Mac / Android / iOS, etc., because it is the software based on WEB browser. You can use it on any electronic device and practice with self-paced.
Online Test Engine supports offline practice, while the precondition is that you should run it with the internet at the first time.
Self Test Engine is suitable for windows operating system, running on the Java environment, and can install on multiple computers.
PDF version: can be read under the Adobe reader, or many other free readers, including OpenOffice, Foxit Reader and Google Docs.
Yes, our demo questions are part of the complete 70-544 exam material, you can free download to have a try
Once download and installed on your PC, you can practice 70-544 test questions, review your questions & answers using two different options 'practice exam' and 'virtual exam'.
Virtual Exam - test yourself with exam questions with a time limit.
Practice exam - review exam questions one by one, see correct answers.
You will receive an email attached with the 70-544 study material within 5-10 minutes, and then you can instantly download it for study. If you do not get the study material after purchase, please contact us with email immediately.
All the products are updated frequently but not on a fixed date. Our professional team pays a great attention to the exam updates and they always upgrade the content accordingly.
Yes, you will enjoy one year free update after purchase. If there is any update, our system will automatically send the updated study material to your payment email.
Yes. We have the money back guarantee in case of failure by our products. The process of money back is very simple: you just need to show us your failure score report within 60 days from the date of purchase of the exam. We will then verify the authenticity of documents submitted and arrange the refund after receiving the email and confirmation process. The money will be back to your payment account within 7 days.
Over 67295+ Satisfied Customers
