Free Microsoft 70-544 Practice Test & Real Exam Questions

  • Exam Code/Number: 70-544
  • Exam Name/Title: TS: Ms Virtual Earth 6.0, Application Development
  • Certification Provider: Microsoft
  • Corresponding Certification: MCTS
  • Exam Questions: 135
  • Updated On: Sep 07, 2026
You need to add a default pushpin as a shape to the base map layer at a specific latitude and longitude. Which code segment should you use?
Correct Answer: D Vote an answer
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?
Correct Answer: C Vote an answer
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?
Correct Answer: A Vote an answer
You need to display a navigation control that permits the rotation of a three-dimensional
Virtual Earth 6.0 map. Which code segment should you use?
Correct Answer: C Vote an answer
You are writing a code segment for a Virtual Earth 6.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?
Correct Answer: D Vote an answer
Your company wants to display customer locations as pushpins on a Virtual Earth 6.0 map.
You need to ensure that the pushpins are loaded after the Virtual Earth map is loaded.
Which code segment should you use?
Correct Answer: B Vote an answer
Your company displays a map of apartments for rent in a neighborhood by using Virtual
Earth 6.0. You need to add an overview map. Which method should you call?
Correct Answer: D Vote an answer
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?
Correct Answer: A Vote an answer