70-510 TS Braindump
ExamSoon 70-510 Exams
Microsoft TS:Visual Studio 2005 Team Foundation Server
O rder : 70-510 Exam
Practice Exam: 70-510
Exam Number/Code: 70-510
Exam Name: TS:Visual Studio 2005 Team Foundation Server
Questions and Answers: 69 Q&As
Free 70-510 Braindumps
Exam : Microsoft 70-510
Title : TS:Visual Studio 2005 Team Foundation Server
1. Your company has a main office in New York and a branch office in Mumbai. Your company wants to connect the
Team Foundation Server (TFS) that is installed in the main office with the servers installed at the branch office.
Builds must be run from the main office servers.
You need to identify the TFS components that must be installed on the servers or workstations in the branch office.
Which two components should you install? (Each correct answer presents part of the solution. Choose two.)
A. Team Foundation Server Proxy
B. Team Foundation Server Build
C. Team Explorer on all the workstations
D. TFS Power Tools on the TFS application-tier server
Answer: AC
2. You write the following code segment. (Line numbers are included for reference only.)
01 namespace BuildNumberCreator
02 {
03 public class BuildNumberCreator:Task
04 {
05 public override bool Execute()
06 {
07 m_buildNumber =
08 DateTime.Now.ToString();
09 return true;
10 }
11 private string m_buildNumber;
12 [Output]
13 public string BuildNumber
14 {
15 get
16 {
17 return m_buildNumber;
18 }
19 }
20 }
21 }
Here is the same code segment in Visual Basic:
01 Public Class BuildNumberCreator
02 Inherits Task
03 Public Overrides Function Execute() As Boolean
04 m_buildNumber = DateTime.UtcNow.Ticks.ToString()
05 Return True
06 End Function
07
08 Private m_buildNumber As String
09
10 <Output()> Public ReadOnly Property BuildNumber() As String
11 Get
12 Return m_buildNumber
13 End Get
14 End Property
15 End Class
You need to design a custom build number generator that overrides the default build number generation algorithm.
Which XML fragment should you insert as the target override in the pr