Interactive and interesting — the online version runs on all electronics. The Microsoft TS: Ms Virtual Earth 6.0, Application Development dumps at Test4Cram: 135 practice questions for the 070-544 exam in three versions.
Microsoft 070-544 Exam Overview:
| Certification Vendor: | Microsoft |
|---|---|
| Exam Name: | TS: Ms Virtual Earth 6.0, Application Development |
| Exam Number: | 70-544 |
| Passing Score: | 700 / 1000 |
| Exam Duration: | 90-120 |
| Exam Format: | Multiple Response, Multiple Choice, Scenario-Based |
| Exam Price: | USD 125 |
| Available Languages: | French, German, Japanese, English |
| Real Exam Qty: | 50-75 |
| Certificate Validity Period: | Retired exam; certification no longer active |
| Related Certifications: | Microsoft Certified Technology Specialist (MCTS) |
| 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 - Geocoding and reverse geocoding - Set center, zoom level, and bounds |
| Topic 2: Integrating Data and Services | 15% | - Consume geospatial web services - Implement routing and directions - Display info boxes and custom data |
| Topic 3: Adding Shapes, Layers, and Overlays | 25% | - Work with custom tile layers and MapCruncher output - Create pushpins, polylines, and polygons - Manage layers, visibility, and z-order |
| Topic 4: Working with the Virtual Earth 6.0 Control | 25% | - Handle map events and user interactions - Configure map views, modes, and sizes - Initialize and load the map control |
| Topic 5: Security, Deployment, and Optimization | 10% | - Secure client-side map applications - Deploy Virtual Earth applications - Optimize performance and reduce load time |
070-544 Exam FAQ — Stand Out
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.
Yes — enter your email address and download the free Microsoft TS: Ms Virtual Earth 6.0, Application Development exam cram pdf for reference; your information stays secret and safe, and we never send advertisement without permission. Purchases include a one-year service warranty: 365 days of updates, renew afterward at 50% off.
90-120 for 50-75 questions. Practice in the Test4Cram soft or online version until testing feels casual — simulation removes the nerves.
Yes:
After any course, stay efficient with the 135 practice questions for the Microsoft TS: Ms Virtual Earth 6.0, Application Development — every answer expert-verified.
Soon after purchasing you can download the complete Microsoft TS: Ms Virtual Earth 6.0, Application Development material — even on official holidays: the automatic email arrives within about a minute, and our 7*24 service replies within two hours if anything goes wrong. If you fail the corresponding 070-544 exam within 60 days of purchase, we refund in full: send a scanned enrollment slip plus the official Score Report PDF within 2 days of the exam, processed 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.
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. When a good opportunity appears, the certified hold the vital advantages. Related credentials include Microsoft Certified Technology Specialist (MCTS).
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.
USD 125 per attempt, 700 / 1000 to pass. Fail and you pay twice or more — save time and money with the 135 practice questions for the 070-544 exam at Test4Cram.
The Microsoft TS: Ms Virtual Earth 6.0, Application Development blueprint spans 5 domains — including Adding Shapes, Layers, and Overlays (25%), Displaying and Managing Locations (25%), Integrating Data and Services (15%). A cram sheet with direction beats aimless reading; the complete outline above lists every subtopic.
Microsoft TS: Ms Virtual Earth 6.0, Application Development Sample Questions:
You have created and tested an application by using Microsoft MapPoint Web Service (MWS).
You need to deploy the live version of the application. Which Web reference should you add to your application?
- A. http: //staging.mappoint.net/standard-30/mappoint.wsdl
- B. http: //service.mappoint.net/standard-30/mappoint.wsdl
- C. http: //service.mappoint.net/standard-30/mappoint.asmx
- D. http: //staging.mappoint.net/standard-30/mappoint.asmx
Correct Answer: B 🗳️
A construction company wants to display plots on a Virtual Earth 6.0 map. The photographs of the plots are stored as JPEG files. You instantiate a pushpin shape of the type VEShapeType.Pushpin. You need to set a custom icon to the pushpin. What should you do?
- A. Set the shape icon by using the SetCustomIcon method.
- B. Create a new pushpin shape object.
- C. Set the pushpin icon by using the SetIconAnchor method.
- D. Create a new shape layer object.
Correct Answer: A 🗳️
Your customer uses a Virtual Earth 6.0 map to display a road map. You need to ensure that the map displays aerial images with overlaid labels when the map is initially loaded.
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 ,'h'
,true); - C. map = new VEMap('mymap'); map.LoadMap();
- D. map = new VEMap('mymap'); map.LoadMap(); map.SetMapStyle(VEMapStyle.Hybrid);
Correct Answer: B,D 🗳️
You define a callback function that updates the data on a Virtual Earth 6.0 map. You need to ensure that the callback function runs every time a user pans or zooms the Virtual Earth map. Which event should you attach to the Virtual Earth map?
- A. onmousemove
- B. onloadmap
- C. oninitmode
- D. onobliquechange
- E. onchangeview
Correct Answer: E 🗳️
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.
R esults[0]["name"] = "A. Datum Corporation";
Results[0]["address"] = " 123 Main St. , New York , NY ";
Results[0]["latitude"] = "40.123";
Results[0]["longitude"] = "-70.456";
Results[0]["thumbnail"] = "http://www.adatum.com/st3465.jpg";
...
Results[x]
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.)
0 1 GeoRSSFeed feed = new GeoRSSFeed();
0 2 GeoRSSItem curItem;
0 3 for (int i = 0; i < Results.length; i++){
0 4 curItem = new GeoRSSItem();
0 5 ...
0 6 feed.Add(curItem);
0 7 }
0 8 // Write feed to HTTP Response
0 9 context.Write(feed.ToString());
The Web handler uses the GeoRSSItem class that contains the following code segment.
(Line numbers are included for reference only.)
1 0 public class GeoRSSItem {
1 1 public Dictionary < string, string > elements;
1 2 publ ic GeoRSSItem(){
1 3 elements = Dictionary < string, string > ();
1 4 }
1 5 public void Add(string pName, string pValue){
1 6 elements.Add(pName, pValue);
1 7 }
1 8 }
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", string.Format("{0}|{1}",
_ Results[i]["address"], _ Results[i]["thumbnail"]); curItem.Add("latitude",
Results[i]["latitude"]); cur Item.Add("longitude", Results[i]["longitude"]); - 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", Results[i]["address"]); curItem.Add("latitude", Results[i]["latitude"]); curItem.Add("longitude",
Results[i]["longitude"]); curItem.Add("icon", Results[i]["thumbnail"]);
Correct Answer: B 🗳️


