The best helper for your 070-544 exam: Test4Cram's Microsoft TS: Ms Virtual Earth 6.0, Application Development test questions and dumps — 135 practice questions for the 070-544 exam with 365 days of updates in 2026.
Microsoft 070-544 Exam Overview:
| Certification Vendor: | Microsoft |
|---|---|
| Exam Name: | TS: Ms Virtual Earth 6.0, Application Development |
| Exam Number: | 70-544 |
| Exam Price: | USD 125 |
| Certificate Validity Period: | Retired exam; certification no longer active |
| Related Certifications: | Microsoft Certified Technology Specialist (MCTS) |
| Real Exam Qty: | 50-75 |
| Exam Duration: | 90-120 |
| Passing Score: | 700 / 1000 |
| Available Languages: | Japanese, German, French, English |
| Exam Format: | Scenario-Based, Multiple Response, Multiple Choice |
| Recommended Training: | Virtual Earth 6.0 SDK Documentation |
| Exam Registration: | Microsoft Retired Exams List |
| 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) |
Microsoft 070-544 Exam Syllabus Topics:
| Section | Weight | Objectives |
|---|---|---|
| Topic 1: Displaying and Managing Locations | 25% | - Find locations, addresses, and points of interest - Set center, zoom level, and bounds - Geocoding and reverse geocoding |
| Topic 2: Integrating Data and Services | 15% | - Implement routing and directions - Display info boxes and custom data - Consume geospatial web services |
| Topic 3: Security, Deployment, and Optimization | 10% | - Deploy Virtual Earth applications - Secure client-side map applications - Optimize performance and reduce load time |
| Topic 4: Adding Shapes, Layers, and Overlays | 25% | - Manage layers, visibility, and z-order - Work with custom tile layers and MapCruncher output - Create pushpins, polylines, and polygons |
| Topic 5: Working with the Virtual Earth 6.0 Control | 25% | - Configure map views, modes, and sizes - Handle map events and user interactions - Initialize and load the map control |
Microsoft 070-544 Exam: Helpful Answers
Yes — download the free Microsoft TS: Ms Virtual Earth 6.0, Application Development demo and judge the cram before paying. Purchases include one-year service: 365 days of update versions sent asap by email; renew afterward at 50% off.
The Microsoft TS: Ms Virtual Earth 6.0, Application Development is Microsoft's certification exam for MCTS: Microsoft Virtual Earth 6.0 Application Development, at the Technology Specialist level. Short on time? Focused, simple-to-use material is the fix. Related credentials include Microsoft Certified Technology Specialist (MCTS).
No mandatory prerequisites; recommended knowledge of JavaScript, HTML, and web development Eligibility rules change over time, so verify the current requirements on the official page (official 070-544 exam page) before registering.
The Microsoft TS: Ms Virtual Earth 6.0, Application Development blueprint spans 5 domains — including Adding Shapes, Layers, and Overlays (25%), Integrating Data and Services (15%), Working with the Virtual Earth 6.0 Control (25%). The complete outline above lists every subtopic; budget your time by weight.
Yes:
After any course, lock it in with the 135 practice questions for the Microsoft TS: Ms Virtual Earth 6.0, Application Development — every answer expert-verified.
USD 125 per attempt, 700 / 1000 to pass. Fail, and you pay the fee twice or more — dozens of dollars of preparation with the 135 practice questions for the 070-544 exam at Test4Cram is really worth it.
Through the vendor's official registration channels:
The Microsoft TS: Ms Virtual Earth 6.0, Application Development is delivered Delivered via Prometric testing centers; retired since June 30, 2011 — pick the arrangement that suits you when booking.
90-120 for 50-75 questions. Build pacing in the Test4Cram SOFT & APP engine — install, operate, practice daily.
After purchasing, we send the Microsoft TS: Ms Virtual Earth 6.0, Application Development material by email within about a minute — make sure you fill the email address rightly, and contact our 7*24 staff (reply within three hours, even on holidays) if nothing arrives within 2 hours. Bought the wrong exam code? We replace it free of charge. If you fail the corresponding 070-544 exam within 60 days of purchase, write us an email with a scanned enrollment slip plus the official Score Report PDF within 2 days of the exam, and we refund the full amount within 7 days. Excluded: exams within 3 days of purchase, candidate names that don't match the payer, and free or expired products. Or exchange for two equal-value products free.
Microsoft TS: Ms Virtual Earth 6.0, Application Development Sample Questions:
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. 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 - 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("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")) - D. 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"))
Correct Answer: D 🗳️
You are creating a Web application by using the Virtual Earth 6.0 map control in Microsoft
Visual Studio 2005. You program a Web page in the application by using client-side
JavaScript code. When you load the Web page, it returns an error message. You are unable to identify the point of failure in the code. You need to identify the line at which the code fails by executing the client-side JavaScript code step by step. Which code segment should you use?
- A. function GetMap(){ try{ map = new VEMap('myMap'); map.LoadMap(new
VELatLong(-33.85,19),8,'h' ,false); } catch(e){ debugger; alert(e.message); } } - B. function GetMap(){ try{ map = new VEMap('myMap'); map.LoadMap(new
VELatLong(-33.85,19),8,'h' ,false); } catch(e){ alert(e.message); } } - C. function GetMap(){ try{ debugger; map = new VEMap('myMap');
map.LoadMap(new VELatLong(-33.85,19),8,'h' ,false); } catch(e){ alert(e.message); }
} - D. function GetMap(){ try{ map = new VEMap('myMap'); map.LoadMap(new
VELatLong(-33.85,19),8,'h' ,false); debugger; } catch(e){ alert(e.message); } }
Correct Answer: C 🗳️
DRAG DROP - (Topic 1)
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.)
Correct Answer:

You need to create a tile source specification that meets the following requirements:
It uses three tile servers named s0, s1, and s2.
It follows the standard Virtual Earth 6.0 numbering scheme.
It ensures that the tiles are visible in all the view types.
Which tile source parameter should you use within the tile source specification?
- A. http: //%4.yourserver.net/tiles/%2%1.jpg
- B. http: //%2.yourserver.net/tiles/%1%4.jpg
- C. http: //%1.yourserver.net/tiles/%4.jpg
- D. http: //%1.yourserver.net/tiles/%2%4.jpg
Correct Answer: B 🗳️
DRAG DROP - (Topic 1)
The location data of your company branch offices is stored as description and title in pushpins on a Virtual Earth 6.0 map.
You need to ensure that the data is displayed in a data panel named BranchInfo on top of the map every time a user moves the mouse over the pushpin.
What should you do? (To answer, move all the actions from the list of actions to the answer area and arrange them in the correct order.)
Correct Answer:



