시험 출제 기준은 수시로 바뀌기 때문에 학습 자료의 최신성이 중요합니다. DumpTOP은 2026년에도 70-544 연습문제를 지속적으로 업데이트하며, 구매 후 365일 동안 무료 업데이트를 제공합니다.
Microsoft 70-544 시험 개요:
| 인증 벤더: | Microsoft |
|---|---|
| 시험명: | TS: Microsoft Virtual Earth 6.0, 애플리케이션 개발 |
| 시험 번호: | 70-544 |
| 관련 자격증: | Microsoft Technology Specialist(TS) |
| 합격 점수: | 700/1000 |
| 지원 언어: | English |
| 시험 형식: | 시나리오 기반 문제, 객관식 선택형 문제 |
| 샘플 문제: | Microsoft 70-544 샘플 문제 |
| 응시 방법: | 공인 시험 센터에서 시행되는 감독관 입회 시험(기존 방식) |
| 전제 조건: | 본 시험은 폐지되었으며, Microsoft Technology Specialist(TS) 자격 과정의 일부였습니다. |
Microsoft 70-544 시험 요강 주제:
| 섹션 | 목표 |
|---|---|
| 주제 1: 지도 표시 및 사용자 상호작용 | - 지도 보기, 확대/축소 수준 및 탐색 컨트롤 - 사용자 입력 및 지도 이벤트 처리 |
| 주제 2: 지오코딩 및 위치 서비스 | - 공간 데이터 서비스 활용 - 주소 지오코딩 및 역지오코딩 |
| 주제 3: 애플리케이션 개발 및 통합 | - 솔루션에 Virtual Earth 서비스 통합 - 웹 기반 지도 애플리케이션 구축 |
| 주제 4: Microsoft Virtual Earth 플랫폼 활용 | - 애플리케이션에 지도 컨트롤 구성 및 삽입 - Virtual Earth의 아키텍처 및 구성 요소 이해 |
| 주제 5: 데이터 레이어 및 오버레이 활용 | - 위치 표시 핀 및 도형 추가와 관리 - 사용자 정의 오버레이 및 레이어 관리 |
70-544 시험 관련 궁금증을 해결해 드립니다
70-544 시험은 Microsoft의 공식 인증 시험으로, 통과 시 Microsoft Technology Specialist(TS) 자격을 취득하게 됩니다. 해당 인증은 준전문가 등급에 해당합니다. Microsoft Technology Specialist(TS) 등 관련 인증과 함께 커리어를 넓혀 나가실 수 있습니다. 출제 범위와 평가 항목이 다양한 만큼, DumpTOP의 연습문제와 모의고사로 출제 유형에 미리 익숙해지시는 것이 좋습니다.
70-544 시험의 응시 조건은 다음과 같습니다. 본 시험은 폐지되었으며, Microsoft Technology Specialist(TS) 자격 과정의 일부였습니다.
네, 가능합니다. DumpTOP은 70-544 무료 샘플을 제공하고 있어, 실제 제품과 동일한 형식의 예시 문항을 직접 확인하신 후 구매를 결정하실 수 있습니다.
구매 후에는 365일 동안 무료 업데이트가 제공되어 최신 출제 경향을 반영한 자료를 계속 받아보실 수 있으며, 업데이트 기간이 만료된 이후에는 50% 할인된 가격으로 갱신하실 수 있습니다.
DumpTOP은 환불 보장을 제공합니다. 구매 후 60일 이내에 해당 시험에 응시하여 불합격한 경우 전액 환불을 신청하실 수 있으며, 응시 등록 확인서 사본과 공식 Score Report PDF를 시험 후 2일 이내에 제출해 주시면 접수 후 7일 이내에 처리됩니다. 단, 구매 후 3일 이내의 응시, 자료 다운로드 후 미응시, 무료 자료 및 만료된 주문은 적용 대상이 아니며, 수험자 이름과 결제자 이름이 동일해야 합니다.
환불을 원하지 않으시면 동일 금액 상당의 다른 시험 자료 두 개를 무료로 받으면서 기존에 구매하신 제품의 업데이트 서비스를 그대로 유지하는 방법도 선택하실 수 있습니다.
제품은 결제 후 1분 이내에 이메일로 즉시 발송되어 바로 다운로드하실 수 있으며, 2시간이 지나도 받지 못하신 경우 고객센터로 연락해 주시기 바랍니다. 설치 가능한 컴퓨터 대수에는 제한이 없습니다.
70-544 시험은 총 5개의 출제 영역으로 구성되어 있습니다. 대표적인 영역으로는 지오코딩 및 위치 서비스, 지도 표시 및 사용자 상호작용, 애플리케이션 개발 및 통합 등이 출제됩니다. 각 영역의 세부 항목과 전체 출제 범위는 위의 Exam Topics 목록에서 확인해 보시기 바랍니다.
최신 MCTS 70-544 무료샘플문제
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?
- A. function GetMap() { map = new VEMap('myMap'); map.LoadMap(new
VELatLong(47.22, -122.44), 12, 'r', false); map.AttachEvent ('onchangeview', function(){...Load the pushpins...}); } - B. function GetMap() { map = new VEMap('myMap'); map.LoadMap(new
VELatLong(47.22, -122.44), 12, 'r', false); map.onLoadMap = function(){...Load the pushpins...}; } - C. function GetMap() { map = new VEMap('myMap'); map.onLoadMap =
function(){...Load the pushpins...}; map.LoadMap(new VELatLong(47.22, -122.44), 12, 'r', false); } - D. function GetMap() { map = new VEMap('myMap'); map.LoadMap(new
VELatLong(47.22, -122.44), 12, 'r', false); map.AttachEvent ('oninitmode', function(){...Load the pushpins...}); }
정답: C 🗳️
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: //service.mappoint.net/standard-30/mappoint.asmx
- B. http: //staging.mappoint.net/standard-30/mappoint.wsdl
- C. http: //service.mappoint.net/standard-30/mappoint.wsdl
- D. http: //staging.mappoint.net/standard-30/mappoint.asmx
정답: C 🗳️
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; foreach (Segment segment in route.Itinerary.Segments) { foreach (Direction direction in segment.Directions) { findNearbySpec.LatLong = direction.LatLong; 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; findNearbySpec.LatLong = startLatLong; findResults = findService.FindNearby(findNearbySpec); foundLocations.Add(findResults); findNearbySpec.LatLong = endLatLong; 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) { findNearbySpec.LatLong = segment.Waypoint.Location.LatLong; findResults = findService.FindNearby(findNearbySpec); foundLocations.Add(findResults); }
정답: C,D 🗳️
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?
- A. var results = {
ID: 123,
Latitude: 40.0,
Longitude: -74.0,
Address: " 123 Main St ."
}; - B. var results = new Array();
results[0] = 123;
results[1] = 40.0;
results[2] = -74.0;
results[3] = "123 Main St."; - C. var results = {
0:{
ID: 123,
Latitude: 40.0,
Longitude: -74.0,
Address: " 123 Main St "
}
}; - D. 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 🗳️
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. the center point of a circle whose radius is equal to the size of the map based on 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 latitude and longitude coordinates
- D. points represented by the bottom-right and top-left pixel coordinates
정답: B 🗳️
405 고객 리뷰



