Pro: Designing and Developing Enterprise Applications Using the Microsoft .NET Framework 3.5:70-565
科目编号:70-565
科目名称:Pro: Designing and Developing Enterprise Applications Using the Microsoft .NET Framework 3.5
描述:
70-565 考试是 Microsoft 公司的 Pro: Designing and Developing Enterprise Applications Using the Microsoft .NET Framework 3.5 认证考试官方代号,kaoccna 的 70-565 权威考试题库软件是 Microsoft 认证厂商的授权产品,kaoccna 绝对保证顺利通过,否则承诺全额退款!
Pro: Designing and Developing Enterprise Applications Using the Microsoft .NET Framework 3.5 认证作为全球IT领域专家 Microsoft 热门认证之一,是许多大中 IT 企业选择人才标准的必备条件。 如果你正在准备 70-565 考试,为 Microsoft Pro: Designing and Developing Enterprise Applications Using the Microsoft .NET Framework 3.5认证做最后冲刺,又苦于没有绝对权威的考试真题模拟
mcsepass 实行"一次不过全额退款"承诺。如果您购买我们 70-565 的考题,只要不是首次通过,凭盖有 PROMETRIC 或 VUE 考试中心钢印的考试成绩单,我们将退还您购买 70-565 考题大师的全部费用,绝对保证您的利益不受到任何的损失。
- 科目: 70-565
- 原价:
¥ 423.00 - 现价: ¥ 358.00
kaoccna 的优势
70-565 试题的质量和价值
mcsepass 模拟测试题具有最高的专业技术含量,只供具有相关专业知识的专家和学者学习和研究之用。
100% 保证您通过 70-565 的考试
如果你使用 mcsepass 模拟测试,我们将保证你的第一次参加考试即取得成功,否则,我们将全额退款!
试用后再购买
mcsepass 提供每种产品免费测试。在您决定购买之前,请检测联接,可能存在的问题及试题质量和适用性。
kaoccna认证考试题库网专业提供 Microsoft 70-565 最新题库下载,完全覆盖 mcsepass 考试原题。
部分考题展示
Exam : Microsoft 70-565
Title : Pro: Designing and Developing Enterprise Applications Using the Microsoft .NET Framework 3.5
1. You create a Windows Forms application by using Microsoft Visual Studio .NET 2008 and the .NET Framework 3.5.
The application contains the following code segment.
Public Function GetProductByID(ByVal ProductID As String) As DataSet
Dim ds As DataSet = New DataSet("ProductList")
Dim SqlSelectCommand As String = "Select * FROM PRODUCTS WHERE
PRODUCTID=" + ProductID
Try
Dim da As SqlDataAdapter = New SqlDataAdapter()
Dim cn As SqlConnection = New
SqlConnection(GetConnectionString())
Dim cmd As SqlCommand = New SqlCommand(SqlSelectCommand)
cmd.CommandType = CommandType.Text
cn.Open()
da.Fill(ds)
cn.Close()
Catch ex As Exception
Dim msg As String = ex.Message.ToString()
'Perform Exception Handling Here
End Try
Return ds
End Function
You need to ensure that the code segment is as secure as possible.
What should you do?
A. Ensure that the connection string is encrypted.
B. Use a StringBuilder class to construct the SqlSelectCommand string.
C. Add a parameter to the cmd object and populate the object by using the ProductID string.
D. Replace the SELECT * statement in the SqlSelectCommand string with the SELECT <column list> statement.
Answer: C
2. You create an application by using Microsoft Visual Studio .NET 2008 and the .NET Framework 3.5.
The application includes a component. The component will be referenced by the .NET and COM applications.
The component contains the following code segment.
Public Class Employee
Public Sub New(ByVal name As String)
End Sub
End Class
The .NET and COM applications must perform the following tasks:
Create objects of the Employee type.
use these objects to access the employee details.
You need to ensure that the .NET and COM applications can consume the managed component.
What should you do?
A. Change the Employee class to a generic class.
B. Change the constructor to a no-argument constructor.
C. Set the access modifier of the class to Friend.
D. Set the access modifier of the constructor to Protected.
Answer: B
3. Rate your level of proficiency in migrating, deploying, and maintaining an application, including creating a deployment plan, and analyzing the configuration of the production environment, performance monitoring data, and logs.
A. I am considered an expert on this. I have successfully done this multiple times without assistance or error. I train or supervise others on this activity. Others come to me when they have questions or need assistance with this.
B. I have successfully done this without assistance and with few errors, but I do not train or supervise others on this activity.
C. I am proficient at this. I have successfully done this on my own, but I occasionally require assistance for some types of problems encountered when doing this and/or occasionally make minor errors.
D. I have successfully done this with the assistance of others or specific instructions.
E. I am a novice. I have not yet done this or am learning.
Answer: A
4. Rate your level of proficiency in designing and developing an application framework, including choosing an appropriate implementation approach for the application design logic, defining the interaction between framework components, and defining validation and event logging strategies.
A. I am considered an expert on this. I have successfully done this multiple times without assistance or error. I train or supervise others on this activity. Others come to me when they have questions or need assistance with this.
B. I have successfully done this without assistance and with few errors, but I do not train or supervise others on this activity.
C. I am proficient at this. I have successfully done this on my own, but I occasionally require assistance for some types of problems encountered when doing this and/or occasionally make minor errors.
D. I have successfully done this with the assistance of others or specific instructions.
E. I am a novice. I have not yet done this or am learning.
Answer: A
5. How many years of experience do you have in developing enterprise applications by using the Microsoft .NET Framework 3.5?
A. I have not done this yet.
B. Less than 6 months
C. 6 months- 1 year
D. 1- 2 years
E. 2- 3 years
F. More than 3 years
Answer: A
6. Rate your level of proficiency in designing application components, including creating the high-level design of a component, defining the internal architecture of a component, and defining the data handling for a component.
A. I am considered an expert on this. I have successfully done this multiple times without assistance or error. I train or supervise others on this activity. Others come to me when they have questions or need assistance with this.
B. I have successfully done this without assistance and with few errors, but I do not train or supervise others on this activity.
C. I am proficient at this. I have successfully done this on my own, but I occasionally require assistance for some types of problems encountered when doing this and/or occasionally make minor errors.
D. I have successfully done this with the assistance of others or specific instructions.
E. I am a novice. I have not yet done this or am learning.
Answer: A
7. You create applications by using Microsoft Visual Studio .NET 2008 and the .NET Framework 3.5.
You deploy a new Windows Forms application in a test environment. During the test process, an error message that includes an incomplete stack trace is reported.
You review the following code segment that has caused the error.
public int AddNewMission(DateTime date, string mission, string missionLink)
{
try
{
DALCode pgr = new DALCode("cnWeb");
int retcode = pgr.AddNewMission(date, mission, missionLink);
return retcode;
}
catch (Exception ex)
{
throw new Exception(ex.Message);
}
finally
{
pgr.Dispose();
}
}
You need to modify the code segment to display the entire stack trace.
What should you do?
A. Remove the CATCH block.
B. Remove the FINALLY block.
C. Add a Using block to the TRY block.
D. Replace the THROW statement in the CATCH block with throw(ex).
Answer: A
8. How many years of experience do you have in developing enterprise applications by using any version of the Microsoft .NET Framework?
A. I have not done this yet.
B. Less than 6 months
C. 6 months- 1 year
D. 1- 2 years
E. 2- 3 years
F. More than 3 years
Answer: A
9. Rate your level of proficiency in envisioning and designing an application, including analyzing and refining the logical, physical, and database designs of the application.
A. I am considered an expert on this. I have successfully done this multiple times without assistance or error. I train or supervise others on this activity. Others come to me when they have questions or need assistance with this.
B. I have successfully done this without assistance and with few errors, but I do not train or supervise others on this activity.
C. I am proficient at this. I have successfully done this on my own, but I occasionally require assistance for some types of problems encountered when doing this and/or occasionally make minor errors.
D. I have successfully done this with the assistance of others or specific instructions.
E. I am a novice. I have not yet done this or am learning.
Answer: A
10. Which of the following technologies do you use regularly? Choose all that apply.
A. Microsoft ASP.NET
B. Windows Forms
C. Windows Presentation Foundation (WPF)
D. Microsoft ADO.NET
E. Windows Communication Foundation (WCF)
F. Distributed technologies in .NET 3.5
Answer: A
11. You create applications by using Microsoft Visual Studio .NET 2008 and the .NET Framework 3.5.
You deploy a new Windows Forms application in a test environment. During the test process, an error message that includes an incomplete stack trace is reported.
You review the following code segment that has caused the error.
Public Function AddNewMission(ByVal missiondate As DateTime, _
ByVal mission As String, ByVal missionLink As String) As Integer
Dim pgr As DALCode = New DALCode("cnWeb")
Try
Dim retcode As Int16 = _
pgr.AddNewMission(missiondate, mission, missionLink)
Return retcode
Catch ex As Exception
Throw New Exception(ex.Message.ToString())
Finally
pgr.Dispose()
End Try
End Function
You need to modify the code segment to display the entire stack trace.
What should you do?
A. Remove the CATCH block.
B. Remove the FINALLY block.
C. Add a Using block to the TRY block.
D. Replace the THROW statement in the CATCH block with Throw (ex).
Answer: A
12. You create a Windows Forms application by using Microsoft Visual Studio .NET 2008 and the .NET Framework 3.5.
The application contains the following code segment.
public DataSet GetProductByID(string ProductID)
{
DataSet ds = new DataSet("ProductList");
string SqlSelectCommand = "Select * FROM PRODUCTS WHERE
PRODUCTID=" + ProductID;
try
{
SqlDataAdapter da = new SqlDataAdapter();
SqlConnection cn = new SqlConnection(GetConnectionString());
SqlCommand cmd = new SqlCommand(SqlSelectCommand);
cmd.CommandType = CommandType.Text;
cn.Open();
da.Fill(ds);
cn.Close();
}
catch (Exception ex)
{
string msg = ex.Message.ToString();
//Perform Exception Handling Here
}
return ds;
}
You need to ensure that the code segment is as secure as possible.
What should you do?
A. Ensure that the connection string is encrypted.
B. Use a StringBuilder class to construct the SqlSelectCommand string.
C. Add a parameter to the cmd object and populate the object by using the ProductID string.
D. Replace the SELECT * statement in the SqlSelectCommand string with the SELECT <column list> statement.
Answer: C
13. You create an application by using Microsoft Visual Studio .NET 2008 and the .NET Framework 3.5.
The application includes a component. The component will be referenced by the .NET and COM applications.
The component contains the following code segment.
public class Employee
{
public Employee(string name)
{
}
}
The .NET and COM applications must perform the following tasks:
Create objects of the Employee type.
use these objects to access the employee details.
You need to ensure that the .NET and COM applications can consume the managed component.
What should you do?
A. Change the Employee class to a generic class.
B. Change the constructor to a no-argument constructor.
C. Set the access modifier of the class to internal.
D. Set the access modifier of the constructor to protected.
Answer: B
14. Rate your level of proficiency in stabilizing and testing an application, including defining a functional test strategy, performing integration testing, and performing a code review.
A. I am considered an expert on this. I have successfully done this multiple times without assistance or error. I train or supervise others on this activity. Others come to me when they have questions or need assistance with this.
B. I have successfully done this without assistance and with few errors, but I do not train or supervise others on this activity.
C. I am proficient at this. I have successfully done this on my own, but I occasionally require assistance for some types of problems encountered when doing this and/or occasionally make minor errors.
D. I have successfully done this with the assistance of others or specific instructions.
E. I am a novice. I have not yet done this or am learning.
Answer: A