70-553VB MCSD.NET Braindump
ExamSoon 70-553VB Exams
Microsoft UPGRADE:MCSD MS.NET Skills to MCPD Entpse App Dvlpr Pt1
O rder : 70-553VB Exam
Practice Exam: 70-553VB
Exam Number/Code: 70-553VB
Exam Name: UPGRADE:MCSD MS.NET Sk ills to MCPD Entpse App Dvlpr Pt1
Questions and Answers: 82 Q&As
Free 70-553VB Braindumps
Exam : Microsoft 70-553(VB)
Title : UPGRADE:MCSD MS.NET Skills to MCPD Entpse App Dvlpr Pt1
1. You are creating a Windows Forms application. Initialization code loads a DataSet object named
ds that includes a table named Users. The Users table includes a column named IsManager.
You need to bind the IsManager column to the Checked property of a check box named
chkIsManager.
Which code segment should you use?
A.chkIsManager.DataBindings.Add("Checked", ds, "Users.IsManager")
B.chkIsManager.DataBindings.Add("Checked", ds, "IsManager")
C.chkIsManager.Text = "{Users.IsManager}"
chkIsManager.AutoCheck = True
D.Me.DataBindings.Add("chkIsManager.Checked", ds, "Users.IsManager")
Answer: A
2. You are developing an application that stores data about your company's sales and technical
support teams.
You need to ensure that the name and contact information for each person is available as a
single collection when a user queries details about a specific team. You also need to ensure that
the data collection guarantees type safety.
Which code segment should you use?
A.Dim team As Hashtable = New Hashtable()
team.Add(1, "Hance")
team.Add(2, "Jim")
team.Add(3, "Hanif")
team.Add(4, "Kerim")
team.Add(5, "Alex")
team.Add(6, "Mark")
team.Add(7, "Roger")
team.Add(8, "Tommy")
B.Dim team As ArrayList = New ArrayList()
team.Add("1, Hance")
team.Add("2, Jim")
team.Add("3, Hanif")
team.Add("4, Kerim")
team.Add("5, Alex")
team.Add("6, Mark")
team.Add("7, Roger")
team.Add("8, Tommy")
C.Dim team As New Dictionary(Of Integer, String)
team.Add(1, "Hance")
team.Add(2, "Jim")
team.Add(3, "Hanif")
team.Add(4, "Kerim")
team.Add(5, "Alex")
team.Add(6, "Mark")
team.Add(7, "Roger")
team.Add(8, "Tommy")
D.Dim team As String()