首页 > Microsoft > MCPD > 70-548CSharp

PRO:Design & Develop Wdws-Based Appl by Using MS.NET Frmwk:70-548CSharp

科目编号:70-548CSharp

科目名称:PRO:Design & Develop Wdws-Based Appl by Using MS.NET Frmwk

描述:
70-548CSharp 考试是 Microsoft 公司的 PRO:Design & Develop Wdws-Based Appl by Using MS.NET Frmwk 认证考试官方代号,kaoccna 的 70-548CSharp 权威考试题库软件是 Microsoft 认证厂商的授权产品,kaoccna 绝对保证顺利通过,否则承诺全额退款!
PRO:Design & Develop Wdws-Based Appl by Using MS.NET Frmwk 认证作为全球IT领域专家 Microsoft 热门认证之一,是许多大中 IT 企业选择人才标准的必备条件。 如果你正在准备 70-548CSharp 考试,为 Microsoft PRO:Design & Develop Wdws-Based Appl by Using MS.NET Frmwk认证做最后冲刺,又苦于没有绝对权威的考试真题模拟

    mcsepass 实行"一次不过全额退款"承诺。如果您购买我们 70-548CSharp 的考题,只要不是首次通过,凭盖有 PROMETRIC 或 VUE 考试中心钢印的考试成绩单,我们将退还您购买 70-548CSharp 考题大师的全部费用,绝对保证您的利益不受到任何的损失。

70-548CSharp
  • 科目: 70-548CSharp
  • 原价: ¥ 507.00
  • 现价: ¥ 358.00

kaoccna 的优势

70-548CSharp 试题的质量和价值
mcsepass 模拟测试题具有最高的专业技术含量,只供具有相关专业知识的专家和学者学习和研究之用。
100% 保证您通过 70-548CSharp 的考试
如果你使用 mcsepass 模拟测试,我们将保证你的第一次参加考试即取得成功,否则,我们将全额退款!
试用后再购买
mcsepass 提供每种产品免费测试。在您决定购买之前,请检测联接,可能存在的问题及试题质量和适用性。
kaoccna认证考试题库网专业提供 Microsoft 70-548CSharp 最新题库下载,完全覆盖 mcsepass 考试原题。

部分考题展示

 
 
Exam : Microsoft 70-548CSharp
Title : PRO:Design & Develop Wdws-Based Appl by Using MS.NET Frmwk


1. 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.)
01 public class BankAccount?{
02 private decimal balance;
03 public decimal Balance?{
04 get{return this.balance;}
05 set{this.balance = value;}
06 }
07 public void Withdraw(decimal amount)?{
08 if(!(amount > 0))?{
09 throw new Exception("Invalid withdraw amount!");
10 }?else if (amount>this.balance)?{
11 throw new Exception("Insufficient balance");
12 }?else?{
13 this.balance -= amount;
14 }
15 }
16 public void Deposit(decimal amount)?{
17 if(!(amount > 0))?{
18 throw new Exception("Invalid deposit amount!");
19 } else?{
20 this.balance += amount;
21 }
22 }
23 }
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

2. 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.
public partial class ATMDeposit : Form {
private BankAccount account;
public ATMDeposit() {
InitializeComponent();
}
private void ATMDeposit_Load(object sender, EventArgs e) {
account = new BankAccount();
}
private void cmdDeposit_Click(object sender, EventArgs e) {
account.Deposit(decimal.Parse(txtAmount.Text));
}
}
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: BC

3. You create Microsoft Windows-based applications.
You receive the following code segment to review. (Line numbers are included for reference only.)
01 public partial class frmReceivables : Form
02 {
03 private DataSet ds;
04 public frmReceivables()
05 {
06 InitializeComponent();
07 }
08 private void frmReceivables(object sender, EventArgs e)
09 {
10 SqlConnection cn = new SqlConnection(strConnectionString);
11 SqlDataAdapter daInvoices = new SqlDataAdapter("SELECT * FROM Invoices", cn);
12 SqlDataAdapter daCustomers = new SqlDataAdapter("SELECT * FROM Customers", cn);
13 ds = new DataSet("Receivables");
14 daInvoices.Fill(ds);
15 daCustomers.Fill(ds);
16 }
17 }
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 14 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: CE

4. 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.)
01 public void Deposit(decimal amount)?{
03 if (!(amount > 0))?{
04 throw new Exception("Invalid deposit amount!");
05 } else?{
06 this.balance += amount;
07 }
08 }
You use the Microsoft Visual Studio 2005 test feature to automatically generate the following unit test. (Line numbers are included for reference only.)
01 [TestMethod()]
02 public void DepositTest()?{
03 BankAccount target =?new BankAccount(); //balance will be ZERO
04 decimal amount = 100;
05 target.Deposit(amount);
06 Assert.Inconclusive
("A method that does not return a value cannot be?verified.");
07 }
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(100M,target.Balance);
B. Assert.IsTrue(target.Balance!=100M);
C. Debug.Assert(target.Balance==100M,passed);
D. Debug.Assert(target.Balance==100M,failed);
Answer: A

5. 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:
Apply the quarterly interest rate to the balance amount of the account every three months.
Apply the quarterly interest rate before the monthly deposit is calculated for the third month.
You translate the outlined specification into pseudo code. You write the following lines of code. (Line numbers are included for reference only.)
Method
public static decimal SimulateSavings
Input parameters
int months
decimal monthlyPayment
decimal quarterlyRate
Pseudo code
01 Declare balance variable, initialize it to zero
02
03 Return balance
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

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.)
01 private void LoadData()
02 {
03
04 cn.Open();
05 daProducts.Fill(ds);
06 daCategories.Fill(ds);
07 cn.Close();
08
09 }
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 03 along with a matching Catch block beginning on line 08 to handle the possible exception.
B. Add a Try block on line 03 along with a matching Finally block beginning on line 08 to handle the possible exception.
C. Add the following code to line 03.
if (cn.ConnectionState!=ConnectionState.Open)
D. Add the following code to line 03.
if (cn.ConnectionState==ConnectionState.Closed)
Answer: C

7. 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

8. 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.)
01 private SqlConnection cn;
02 public frmMain() {
03 InitializeComponent();
04 cn = new SqlConnection("data source = localhost;initial
Catalog = Accounting;integrated security = true");
05 }
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

9. 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.
?public string BuildSQL(string strFields, string strTable, string strFilterId) {
string sqlInstruction = "SELECT ";
sqlInstruction += strFields;
sqlInstruction += " FROM ";
sqlInstruction += strTable;
sqlInstruction += " WHERE id =";
sqlInstruction += strFilterid;
return sqlInstruction;
}
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

10. You create Microsoft Windows-based applications. You are designing an inventory management solution for a warehouse. The solution must address the following requirements:
Access inventory data in a Microsoft SQL Server 2005 database.
Generate XML documents representing purchase orders based on an XML schema provided by a trading partner.
Use the minimum amount of C# code possible.
Use the minimum amount of I/O operations possible.
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: BDE

联系我们
联系手机:13861768475
MSN:saleintest@hotmail.com
QQ留言 QQ留言

首页 |代考流程 | 常见问题 | 证书查询 | 认证资讯 | 联系我们 | 站点导航 1 2 3 4 | 站点地图

Any charges made through this site will appear as CertBible Tech LTD. All trademarks are the property of their respective owners.

Copyright©2006-2011 mcsepass Limited. All Rights Reserved