PRO: Designing and Developing Windows-Based Applications by Using the Microsoft .NET Framework:70-548VB
科目编号:70-548VB
科目名称:PRO: Designing and Developing Windows-Based Applications by Using the Microsoft .NET Framework
描述:
70-548VB 考试是 Microsoft 公司的 PRO: Designing and Developing Windows-Based Applications by Using the Microsoft .NET Framework 认证考试官方代号,kaoccna 的 70-548VB 权威考试题库软件是 Microsoft 认证厂商的授权产品,kaoccna 绝对保证顺利通过,否则承诺全额退款!
PRO: Designing and Developing Windows-Based Applications by Using the Microsoft .NET Framework 认证作为全球IT领域专家 Microsoft 热门认证之一,是许多大中 IT 企业选择人才标准的必备条件。 如果你正在准备 70-548VB 考试,为 Microsoft PRO: Designing and Developing Windows-Based Applications by Using the Microsoft .NET Framework认证做最后冲刺,又苦于没有绝对权威的考试真题模拟
mcsepass 实行"一次不过全额退款"承诺。如果您购买我们 70-548VB 的考题,只要不是首次通过,凭盖有 PROMETRIC 或 VUE 考试中心钢印的考试成绩单,我们将退还您购买 70-548VB 考题大师的全部费用,绝对保证您的利益不受到任何的损失。
- 科目: 70-548VB
- 原价:
¥ 462.00 - 现价: ¥ 358.00
kaoccna 的优势
70-548VB 试题的质量和价值
mcsepass 模拟测试题具有最高的专业技术含量,只供具有相关专业知识的专家和学者学习和研究之用。
100% 保证您通过 70-548VB 的考试
如果你使用 mcsepass 模拟测试,我们将保证你的第一次参加考试即取得成功,否则,我们将全额退款!
试用后再购买
mcsepass 提供每种产品免费测试。在您决定购买之前,请检测联接,可能存在的问题及试题质量和适用性。
kaoccna认证考试题库网专业提供 Microsoft 70-548VB 最新题库下载,完全覆盖 mcsepass 考试原题。
部分考题展示
Exam : Microsoft 70-548(VB)
Title : PRO:Design & Develop Wdws-Based Appl by Using MS.NET Frmwk
1. 1 balance = balance + 3 * monthlyPayment
2.2 balance = (1 + quarterlyRate) * balance
B. 01 Declare integer variable, x
02 For x=1 to months/3
2.1 balance = balance + 2 * monthlyPayment
2.2 balance = (1 + quarterlyRate) * balance
2.3 balance = balance + monthlyPayment
C. 01 Declare integer variable, x
02 For x=1 to months
2.1 balance = balance + monthlyPayment
2.2 if x Mod 3 is 0 then balance = (1 + quarterlyRate) * balance
D. 01 Declare integer variable, x
02 For x=1 to months
2.1 if x Mod 3 is 0 then balance = (1 + quarterlyRate) * balance
2.2 balance = balance + monthlyPayment
Answer: D
2. You create Microsoft Windows-based applications. You are creating a method. Your applications will call the method multiple times. You write the following lines of code for the method.
The method generates performance issues.
You need to minimize the performance issues that the multiple string concatenations generate.
What should you do?
A. Use a single complex string concatenation.
B. Use an array of strings.
C. Use an ArrayList object.
D. Use a StringBuilder object.
Answer: D
3. You create Microsoft Windows-based applications. You are designing a unit test class to test the functionality of a component named Calculator. The Calculator must function as a standard nonscientific calculator.
A developer on your team writes the following lines of code for the test class. (Line numbers are included for reference only.)
You need to ensure that appropriate assertions are tested.
Which additional assertion should you test?
A. AreSame
B. IsInstanceOfType
C. IsNotNull
D. Inconclusive
Answer: C
4. You create Microsoft Windows-based applications. You are creating an application that will connect to a Microsoft SQL Server 2005 database. You write the following code segment for a method contained in the application. (Line numbers are included for reference only.)
In the production environment, the database will be stored by a server on the network.
You need to eliminate the requirement to recompile the application when you deploy it to the production environment. You want to achieve this by using minimum amount of programming effort.
What should you do?
A. Create an application configuration file to store the connection string. Change the code to read the connection string from the configuration file.
B. Create an XML file in the application folder to store the connection string. Change the code to use an XMLReader object to connect to a file stream and read the connection string.
C. Create a component that returns the connection string. Change the code to use the component to get the connection string.
D. Create a text file to store the connection string. Change the code to use a TextReader object to connect to a file stream and read the connection string.
Answer: A
5. You create Microsoft Windows-based applications. You are testing a component named BankAccount. You write the following code segment for the BankAccount component. (Line numbers are included for reference only.)
The test project executes a valid withdraw operation and a valid deposit operation. It also verifies the account balance.
Your companys check-in policy requires that the primary code path is tested before check in. Full testing will be completed later.
You need to establish the lowest acceptable code coverage metric.
What should you test?
A. Test all methods.
B. Do not test exceptions. Test all other methods.
C. Test all code, including variable declarations.
D. Do not test accessor methods. Test all other methods and exceptions.
Answer: B
6. You create Microsoft Windows-based applications. You create an application that accesses data on a Microsoft SQL Server 2005 database. You write the following code segment. (Line numbers are included for reference only.)
The cn variable points to a SqlConnection object. The SqlConnection object will be opened almost every time this code segment executes.
You need to complete this code segment to ensure that the application continues to run even if the SqlConnection object is open. You also need to ensure that the performance remains unaffected.
What should you do?
A. Add a Try block on line 02 along with a matching Catch block beginning on line 07 to handle the possible exception.
B. Add a Try block on line 02 along with a matching Finally block beginning on line 07 to handle the possible exception.
C. Replace line 03 with the following code.
If Not (cn.State = ConnectionState.Open) Then
cn.Open()
End If
D. Replace line 03 with the following code.
If Not (cn.State = ConnectionState.Closed) Then
cn.Open()
End If
Answer: C
7. You create Microsoft Windows-based applications. You are designing a unit test for a form in an application. You write the following code segment. (Line numbers are included for reference only.)
You need to identify the methods that must be included for unit testing.
Which methods should you choose?
A. frmCalculation, cmdFib_Click, cmdFac_Click, Fibonacci, and Factorial
B. frmCalculation, cmd_Fib_Click, and cmdFac_Click
C. cmdFib_Click, cmdFac_Click, Fibonacci, and Factorial
D. Fibonacci and Factorial
Answer: D
8. You create Microsoft Windows-based applications. You create a banking application that will be used by the account managers of the bank.
You identify a method to simulate the deposit functionality of a savings account. The method will calculate the final balance when monthly deposit, number of months, and quarterly rate are given. The application requirements state that the following criteria must be used to calculate the balance amount:
You translate the outlined specification into pseudo code. You write the following lines of code. (Line numbers are included for reference only.)
You need to insert the appropriate code in line 02.
Which code segment should you insert?
A. 01 Declare integer variable, x
02 For x=1 to months/3
2.1 balance = balance + 3 * monthlyPayment
2.2 balance = (1 + quarterlyRate) * balance
B. 01 Declare integer variable, x
02 For x=1 to months/3
2.1 balance = balance + 2 * monthlyPayment
2.2 balance = (1 + quarterlyRate) * balance
2.3 balance = balance + monthlyPayment
C. 01 Declare integer variable, x
02 For x=1 to months
2.1 balance = balance + monthlyPayment
2.2 if x Mod 3 is 0 then balance = (1 + quarterlyRate) * balance
D. 01 Declare integer variable, x
02 For x=1 to months
2.1 if x Mod 3 is 0 then balance = (1 + quarterlyRate) * balance
2.2 balance = balance + monthlyPayment
Answer: D
9. You create Microsoft Windows-based applications. You are designing an inventory management solution for a warehouse. The solution must address the following requirements:
You need to develop the data handling capabilities of the solution to meet the requirements.
Which three data handling mechanisms should you select? (Each correct answer presents part of the solution. Choose three.)
A. Use an XmlReader object to retrieve inventory data from the database and populate a DataSet object.
B. Use a DataAdapter object to retrieve inventory data from the database and populate a DataSet object.
C. Use methods from the DataSet class to generate a new XML file that contains data to be used to generate a purchase order.
D. Use methods from the DataSet class to generate a new XmlDataDocument object that contains data to be used to generate a purchase order.
E. Use an XslCompiledTransform object to generate the purchase order XML file.
F. Use an XmlWriter object to generate the purchase order XML file.
Answer: B AND D AND E
10. You create Microsoft Windows-based applications.
You receive the following code segment to review. (Line numbers are included for reference only.)
The strConnectionString variable is pre-populated from the application configuration file. Query statements will remain unchanged throughout the life cycle of the application. Connection pooling is not being used.
This code segment accesses a Microsoft SQL Server 2000 database. The ds dataset is bound to a data grid view so that users can view and update data in the database. The code currently compiles correctly and works as intended.
You need to enhance performance and reliability for this code.
Which two actions should you recommend? (Each correct answer presents part of the solution. Choose two.)
A. Use an ODBC DSN instead of a connection string.
B. Use OleDbDataAdapter objects instead of SqlDataAdapter objects to populate the dataset.
C. Add a line of code before line 12 to open the database connection.
D. Add a Try...Catch block and close the connection in the catch block.
E. Add a Try...Catch...Finally block and close the connection in the Finally block.
Answer: C AND E
11. You create Microsoft Windows-based applications. You are reviewing code for an application that is created for a bank.You find that a Microsoft Windows Form includes the following code segment.
You analyze the code segment and find that the form handles no other events.
You need to suggest changes to improve reliability.
Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)
A. Add an event handler for the TextChanged event for the txtAmount textbox to validate the data typed by the user.
B. Add an event handler for the Validating event for the txtAmount textbox to validate the data typed by the user.
C. Add a Try...Catch block to the cmdDeposit_Click method.
D. Add a Try...Catch block to the ATMDeposit_Load method.
E. Add a Try...Catch block to the ATMDeposit constructor.
Answer: B AND C
12. You create Microsoft Windows-based applications. You review code for an application that is developed for a bank. You need to test a method named Deposit in one of the application components. The following code segment represents the Deposit method. (Line numbers are included for reference only.)
You use the Microsoft Visual Studio 2005 test feature to automatically generate the following unit test. (Line numbers are included for reference only.)
You need to change the test method to return a conclusive result.
Which line of code should you use to replace the code on line 06?
A. Assert.AreEqual(100,target.Balance)
B. Assert.IsTrue(target.Balance <> 100)
C. Debug.Assert(target.Balance = 100,passed)
D. Debug.Assert(target.Balance = 100,failed)
Answer: A
13. You create Microsoft Windows-based applications. You are designing the integration test for an application. You write the following lines of code. (Line numbers are included for reference only.)
You need to create a report that lists the parts of the code to be considered during integration testing.
Which lines of code should you add to your report?
A. 06, 07, 08, 09, and 10
B. 06, 09, and 10
C. 06 and 10
D. 10
Answer: B
14. You create Microsoft Windows-based applications.
You create an application that requires the user to be authenticated by a domain controller.
The application consumes Web services.
During acceptance testing, you detect that for some users a security exception is thrown while calling a method. The users should have access to the method. The method contains the following lines of code.
You need to resolve this bug.
What should you do?
A. Ask an administrator to enable Windows Integrated authentication in IIS.
B. Modify the code access security machine policies for the computer running the code such that the code is permitted to execute.
C. Change the SecurityAction from Demand to Deny.
D. Ask an administrator to add the users to the YourDomainManager group.
Answer: D