Tai Lieu Ly Thuyet Windows Forms_chua Dap Dap An

download Tai Lieu Ly Thuyet Windows Forms_chua Dap Dap An

of 14

Transcript of Tai Lieu Ly Thuyet Windows Forms_chua Dap Dap An

  • 8/3/2019 Tai Lieu Ly Thuyet Windows Forms_chua Dap Dap An

    1/14

    Windows Form

    1Which of the following is not a possible value for the RowState property of a DataRow object?

    a) Added b) Altered c) Deleted d) Modified

    2

    The Windows Form classes are located in the ________ namespace

    a) System.Windows.Forms c) System.WinForms

    b) System.WindowsForms d) Windows.Forms

    3

    The _____ argument and the _____ argument are always passed as parameters to events for a control (choose 2)

    a) System.Object

    b) System.EventArgs

    c) System.EventHandler

    d) System.Controls

    4

    You have Visual Studio .NET to develop a Windows-based application that interacts with a Microsoft SQL Serverdatabase. Your application contains a form name EmployeeForm. You add the following design-time component tothe form+ SqlConnection object name EmpConn+ SqlDataAdapter object name EmpDA+ DataSet object name EmpDS+ Five TextBox controls to hold the values exposed by EmpDSAt design-time, you set DataBindings property of each TextBox control to appropriate column in the DataTableobject of EmpDS. When you test this application you can successfully connect to the database. However, no datais displayed in any TextBox.You need to modify your application code ensure that data is displayed appropriately. Which behavior should occurwhile the EmployeeForm.Load event handler is running?

    a) Execute the BeginInit method of EmpDS

    b) Execute the Open method of EmpConn

    c) Execute the FillSchema method of EmpDA and pass in EmpDS

    d) Execute the Fill method of EmpDA and pass in EmpDS

    5

    Which of the following events is best suitable to validate the data?

    a) KeyUpb) Validated

    c) Validating

    d) LostFocus

    6 You use Visual Studio .NET to create a Windows-based application. The application includes a form name CertK,which displays statistical date in graph format. You use a custom graphing control that does not support resizing.You must ensure that users cannot resize, minimize or maximize CertK. Which three actions should you take?(choose 3)

    a) Set CertK.MinimizeBox to False

    b) Set Cert.MaximizeBox to false

    c) Set Cert.ControlBox to false

    d) Set Cert.ImeMode to Disabled

    FPT-Aptech confidential Page 1

  • 8/3/2019 Tai Lieu Ly Thuyet Windows Forms_chua Dap Dap An

    2/14

    e) Set Cert.WindowState to Maximized

    f) Set Cert.FormBorderStyle to one of the Fixed Styles

    7

    You develop a Visual Studio .NET application that dynamically adds controls to its form at runtime. You include thefollowing statement at the top of your file:using System.Windows.Forms;In addition, you create the following code to add Button controls:Button tempButton = new Button();tempButton.Text = NewButtonCaption;tempButton.Name = NewButtonName;tempButton.Left = NewButtonLeft;tempButtonTop = NewButtonTop;this.Controls.Add(tempButton);tempButton.Click += new EventHandler(ButtonHandler);Variables are passed into the routine to supply values for the Text, Name, Left, Top properties.When you compile this code, you receive an error message indicating that ButtonHandler is not declared.You need to add a ButtonHandler routine to handle the Click event for all dynamically added Button controls.Which declaration should you use for ButtonHandler?

    a) public void ButtonHandler()

    b) public void ButtonHandler(System.Windows.Forms.Button sender)

    c) public void ButtonHandler(System.Object sender)

    d) public void ButtonHandler(System.Windows.Forms.Button sender, System.EventArgs e)

    e) public void ButtonHandler(System.Object sender, System.EventArgs e)

    8

    Your application uses a DataSet object to maintain a working set of data for your users. Uses frequently changeinformation in the DataSet object.Before you update your database, you must run data validation code on all user changes.You need to identify the data rows that contain changes. First you create a DataView object. What should you donext?

    a) Set the RowStateFilter.CompareTo method

    b) Set the RowStateFilter.Equals methodc) Set the RowStateFilter property to CurrentRow

    d) Set the RowStateFilter property to ModifiedCurrent

    9

    You need to develop a Windows form that provides online help for users. You want the help functionality to beavailable when users press F1 key.Help text will be displayed in a popup window for the textbox has focus.To implement this functionality, you need to call a method of HelpProvider control and pass the text box and thehelp text. What should you do ?

    a) SetShowHelp

    b) SetHelpStringc) SetHelpKeyword

    d) ToString

    10You use Visual Studio .Net to develop a Windows-based application. Your application will display customer orderinformation from a Microsoft SQL Server database. The orders will be display on Windows Form that includes aDataGrid control which is bound to a DataView object. Users will be able to edit order information directly in theDataGird control.You must give users the option of displaying only edited customer orders and updated values in the DataGrid.What should you do?

    a) Set the RowStateFilter property of the DataView object to DataViewRowState.ModifiedOriginal.

    b) Set the RowStateFilter property of the DataView object to DataViewRowState.ModifiedCurrent

    FPT-Aptech confidential Page 2

  • 8/3/2019 Tai Lieu Ly Thuyet Windows Forms_chua Dap Dap An

    3/14

    c) Set the RowFilter property of the DataView object to DataViewRowState.ModifiedOriginal.

    d) Set the RowFilter property of the DataView object to DataViewRowState.ModifiedCurrent

    11

    You use Visual Studio.Net to develop a Microsoft Windows-based application. Your application contains a formnamed CustomerForm, which is includes the following design-time controls:

    SQL Connection object named CustConnection

    SQL DataAdapter object named CustDataAdapter DataSet object named CustomerDataSet

    Five TextBox controls to hold the values exposed by CustomerDatSet

    Button control named saveButtonAt design time you set the DataBindings properties of each TextBox control to the appropriate column in theDataTable object of CustomerDataSet.When the application runs, users must be able to edit the information displayed in the text boxes. All user changesmust be saved to the appropriate database when saveButton is executed. The event handler for saveButtonincludes the following code segment:CustDataAdapter.Update(CustomerDataSet);

    You test the application. However, saveButton fails to save any values edited in the text boxes. You need to correctthis problem.

    What should your application do?a) Call the InsertCommand method of CustDataAdapter

    b) Call the Update method of CustDataAdapter and pass in CustConnection

    c) Before calling the Update method, ensure that a row position change occurs in CustomerDataSet.

    d) Reestablish the database connection by calling the Open method of CustConnection.

    12

    You are deploping a Window-based application that logs hours worked by employees. Your design goals requireyou to maximize application performance and minimize impact on server resources.Your need to implement a SqlCommand object that will send a SQL INSERT action query to a database each time

    a user makes a new entry.To create a function named LineItemInsert, you write the following code (Line numbers are included for referenceonly).01 : public int LineItemInsert(int empID, int projectID,02 : decimal hrs, SqlConnection con)03 : {04 : string SQL;05 : int Ret;06 :07 : SQL = String.Format (08 : INSERT INTO TimeEntries (EmpID, ProjectID, Hours)09 + 10 : VALUES ({0},{1},{2}),11 : empID, projectID, hrs);

    12 : SqlCommand cmd = new SqlCommand(SQL, con);13 :14 : //Insert new code15 : }You code must execute the SQL INSERT action query and verify the number of database records that are affectedby the query.Which code segment should you add on line 14 ?

    a) con.Open();Ret = cmd.ExecuteNonQuery(); con.Close(); return Ret;

    b) con.Open(); Ret = cmd.ExecuteScalar(); con.Close(); return Ret;

    c) SqlDataReader reader; con.Open(); reader = cmd.ExecuteReader();

    con.Close(); return reader.RecordsAffected;d) SqlDataReader reader; con.Open(); reader = cmd.ExecuteReader();

    con.Close(); return reader.GetValue();

    FPT-Aptech confidential Page 3

  • 8/3/2019 Tai Lieu Ly Thuyet Windows Forms_chua Dap Dap An

    4/14

    13

    The_________ event of the Form control is used to perform tasks such as allocating resources used by the form.

    a) Activate

    b) Load

    c) Allocate

    d) Activated

    14

    When a Data Form is created using the Data Form Wizard, which of the following classes are used by default?(choose 4 )

    a) OleDbDataReader

    b) OleDbConnection

    c) OleDbCommand

    d) OleDbDataWriter

    e) OleDbDataAdapter

    15

    To create an instance of the Font class using existing Font and FontStyle, the constructor is:

    a) public Font(Font f, FontStyle fs);

    b) public Font(string fontname, float size);

    c) public void Font(Font f, FontStyle fs);

    d) public void Font(string fontname, float size);

    16

    Which control is used to display a short, customized help message for individual controls on a form?

    a) ToolClass

    b) HelpTool

    c) HelpText

    d) ToolTip

    17

    Statement 1: Tree View displays folders, drives etc.Statement 2: List View displays current folder contents.

    a) Both the statements are true

    b) Only Statement 1 is true

    c) Only Statement 2 is true

    d) both the statements are false

    18

    Which class represents shortcut menus that can be displayed when the user clicks the right mouse button over acontrol or area of the form?

    a) Menu

    b) FileMenu

    c) ContextMenu

    d) ToolsMenu

    19 Name the object which notifies other objects about an event?

    FPT-Aptech confidential Page 4

  • 8/3/2019 Tai Lieu Ly Thuyet Windows Forms_chua Dap Dap An

    5/14

    a) Publisher

    b) Subscriber

    c) Consumer

    d) Tester

    20

    Leo would like to populate a select dropdown combo box with data in a data store. He wants a fast, forward only,read-only database connection using ADO.NET.Given the above scenario, which one of the following objects should Leo use?

    a) A DataAdatpter object c) A DataReader object

    b) A Command object d) A Connection object

    21

    Which class is the base class for all the controls that can be used in Windows Forms?

    a) Objects

    b) Forms

    c) Controls

    d) Control

    22

    Which of the following statements about event handlers is not true?

    a) Event handlers cannot be removed dynamically

    b) Event handlers are methods that handle events

    c) Event handlers can handle multiple events

    d) Multiple event handlers can be associated with an event

    23

    Which of the following namespaces defines the Trace and Debug classes?

    a) System.Diagnostics

    b) System.Collection

    c) System.Security

    d) System.ComponentModel

    24

    By setting the _________ in a control, I can make sure that my code is not change if someone inherits my form.

    a) the Private value of the Modifiers property

    b) the Unchanged value of the Modifiers property

    c) the Restricted value of the Modifiers property

    d) the Limited value of the Modifiers property

    25 You are using Visual Studio.Net to develop a Windows- based application that contains a single form. This formcontains a label control named labelUser and a textbox control named textUser, labelUser displays a caption thatidentifies the purpose of textUser. You want to write code that enables users to place focus in textUser when theypress Alt + U. This key combination should be identified to users in the display of labelUser.Which 3 actions should you take? (choose 3)

    FPT-Aptech confidential Page 5

  • 8/3/2019 Tai Lieu Ly Thuyet Windows Forms_chua Dap Dap An

    6/14

    a) Set labelUser.UserMnemonic to True

    b) Set labelUser.CauseValidation to True

    c) Set textUser.CauseValidation to True

    d) Set textUser.TabIndex to exactly one number more than labelUser.TabIndex

    e) Set labelUser.Text to &User

    26

    You have created a Class Library of Custom User controls and Forms. You want to use this class library as thefoundation for your Windows application project.How can you reference it?

    a) In the class View, right click on the project and select Add Inherited Control for user controls or select AddInherited Form for Forms. Name the component and click Open.Select component in the inheritance pickerdialog box.

    b) In the Solution Explorer, right-click on the project and select Add Inherited Control for user controls or selectAdd Inherited Form for Forms. Name the component and click Open.Select component in the inheritancepicker dialog box.

    c) From the Menu select Project\ Add Inherited Control for user controls or select Project\ Add Inherited Formfor forms. Name the component and click Open. Select component in the inheritance picker dialog box.

    d) From the Menu select Build\ Add Inherited Control for user controls or select Build\ Add Inherited Form forforms. Name the component and click Open. Select component in the inheritance picker dialog box.

    27

    You use Visual Studio.Net to develop a Windows-based application for a womens college. Your application willdisplay students information from a Microsoft SQL Server database. The information will be displayed on aWindows Form in a data grid named dg1. DataGrid1 is bound to a DataView object. The Windows form includes abutton control named displayStudent. When users click this button, dgl must display only student information whosePaidFees value is set to True.How would you achieve this?

    a) Set the RowFilter property of the dg1 object to PaidFees = True

    b) Set the RowStateFilter property of the dg1 object to PaidFees = True

    c) Set the RowFilter property of the DataView object to PaiFees = True

    d) Set the RowStateFilter property of the DataView object to PaiFees = True

    28

    You use Visual Studio.Net to create a Windows-based application. The application includes a form that severalcontrols, including a button named exitButton. After you finish designing the form, you select all controls and thenselect Lock Controls from the Format menu least possible effort, and without disrupting the other controls.First you select exitButton in the Windows Forms Designer. What should you do next?

    a) Set the Locked property to FalseSet the Size property to the required sizeSet the Locked property to True

    b) Set the Locked property to FalseUse this mouse to resize the controlSet the Locked property to True

    c) Set the Size property to the required size

    d) Use this mouse to resize the control

    FPT-Aptech confidential Page 6

  • 8/3/2019 Tai Lieu Ly Thuyet Windows Forms_chua Dap Dap An

    7/14

    29

    You develop a Windows-based application that includes the following code segment. (Line numbers are includedfor reference only)01 private void Password_Validating(object sender,02 System.ComponentModel.CancelEventArgs e)03 {04 if(ValidCertKingPassword() == false)05 {06 // insert new code07 }08 }You must ensure that users cannot move control focus away from textPassword if ValidCertKingPassword returnsa value of False. You will add the required code on line 6

    a) e.Cancel = true;

    b) sender = name;

    c) password.AcceptsTab = false;

    d) password.CausesValidation = false;

    30

    You use Visual Studio.Net to create a data entry form. The form enables users to edit personal information such asaddress an telephone number. The form contains a text box named textPhoneNumber.If a user enters an invalid telephone number, the form must notify the user of the error. You create a functionnamed IsValidPhone that validates the telephone number entered. You include an ErrorProvider control namedErrorProvider1 in your form.Which additional code segment should you use?

    a) private void textPhone_Validating(object sender, System.ComponentModel.CancelEventArgs e) {if(!IsValidPhone()) {errorProvider1.SetError(textPhone, Invalid Phone);}}

    b) private void textPhone_Validated(object sender, System.EventArgs e) {if(!IsValidPhone()) {errorProvider1.SetError(textPhone, Invalid Phone);

    }}c) private void textPhone_Validating(object sender, System.ComponentModel.CancelEventArgs e) {

    if(!IsValidPhone()) {errorProvider1.GetError(textPhone);}}

    d) private void textPhone_Validated(object sender, System.EventArgs e) {if(!IsValidPhone()) {errorProvider1.GetError(textPhone);}}

    e) private void textPhone_Validating(object sender, System.ComponentModel.CancelEventArgs e) {if(!IsValidPhone()) {errorProvider1.UpdateBinding();}}

    f) private void textPhone_Validated(object sender, System.EventArgs e) {if(!IsValidPhone()) {errorProvider1.UpdateBinding();}}

    31 You develop a Windows-based application. Its users will view and edit employee attendance data. The applicationuses a DataSet object named customerDataSet to maintain the data while users are working with it.After a user edits data, business rule validation must be performed by a middle-tier component named CertkComponent. You must ensure that your application sends only edited data rows from customDataSet to CertKComponent.Which code segment should you use?

    a) DataSet changeDataSet = new DataSet();if(customDataSet.HasChanges) {CertK Component.Validate(changeDataSet); }

    FPT-Aptech confidential Page 7

  • 8/3/2019 Tai Lieu Ly Thuyet Windows Forms_chua Dap Dap An

    8/14

    b) DataSet changeDataSet = new DataSet();if(customDataSet.HasChanges) {CertK Component.Validate(customDataSet); }

    c) DataSet changeDataSet = customDataSet.GetChanges();CertK Component.Validate(changeDataSet);

    d) DataSet changeDataSet = customDataSet.GetChanges();CertK Component.Validate(customDataSet);

    32

    You develop a new sales analysis application that reuses existing data access components. One of thesecomponents returns a DataSet object that contains the data for all customer orders for the previous years.You want your application to display orders for individual product numbers. Users will specify the appropriateproduct numbers at runtime.What should you do?

    a) Use the DataSet.Reset method.

    b) Set the RowFilter property of the DataSet object by using a filter expression.

    c) Create a DataView object and set the RowFilter property by using a filter expression.

    d) Create a DataView object and set the RowStateFilter property by using a filter expression.

    33

    You develop a Windows-based application which uses a DataSet object that contains two DataTable objects. Theapplication will display data from two data tables. One table contains customer information, which must bedisplayed in a data-bound ListBox control. The other table contains order information which must be displayed in aDataGrid control.You need to modify the application to enable the list box functionality.What should you do?

    a) Use the DataSet.Merge method.

    b) Define primary keys for the Data Table objects.

    c) Create foreign key constraint on the DataSet object.

    d) Add a DataRelation object to the Relations collection of the DataSet object.

    34

    You use Visual Studio.Net to create a control that will be used on serveral forms in your application.It is a custom label control that retrieves and displays your companys current stock price. The control will bedisplayed on many forms that have different backgrounds. You want the control to show as much of the underlyingforms as possible. You want to ensure that only the stock price is visible. The rectangular control itself should notbe visible.You need to add code to the Load event of the control to fulfill these requirements. Which two code segmentsshould you use? (Each correct answer presents part of the solution. Choose 2)

    a) this.BackColor = Color.Transparent;

    b) this.ForeColor = Color.Transparent;

    c) this.BackImage = null;

    d) this.SetStyle(ControlStyles.UserPaint, false);

    e) this.SetStyle(ControlSyles.SupportsTransparentBackColor, true);

    35

    When a Windows Application project is created in Visual C#, a form is created automatically with the class name as__________.

    a) Class1

    b) Form1

    c) Form0

    d) ClassA

    FPT-Aptech confidential Page 8

  • 8/3/2019 Tai Lieu Ly Thuyet Windows Forms_chua Dap Dap An

    9/14

    36

    The __________ and __________ class has properties that hold the SQL statements to select, insert, update anddelete data from the database. (choose 2)

    a) OleDbDataAdapter

    b) SqlDataAdapter

    c) OracleDataAdapterd) OdbcDataAdapter

    37

    The __________ method is used to create the Graphics object

    a) CreateGraphics

    b) Create

    c) CreateGraph

    d) DrawGraph

    38

    The _________ event of the PrintDocument class is trigged immediately before each PrintPage event occurs.

    a) QueryPageSettings

    b) PrintPage

    c) BeginPrint

    d) StartPrint

    39

    ________ is used to display text or data in the form of nodes arranged in a hierarchical order?

    a) ListView

    b) TreeView

    c) TaskView

    d) NodeView

    40

    Which namespace does the class ListView belong to?

    a) System.Windows.Drawing

    b) System.Windows.Forms

    c) System.Windows.Paints

    d) System.Windows.Lists

    41

    Which of the following statements are True with respect to Data Set in ADO.Net? (choose 2)

    a) DataSet is an in-memory cache of records that can be visited/ modified any direction.

    b) The DataSet is a read only cursor.

    c) A DataSet can contain only two data tables at a time corresponding to a database table or view.

    d) A DataSet constitutes a disconnected view of the data present in the database.

    FPT-Aptech confidential Page 9

  • 8/3/2019 Tai Lieu Ly Thuyet Windows Forms_chua Dap Dap An

    10/14

    42

    Select the features of a good user interface? (choose 3)

    a) Easy to learn

    b) Easy to use

    c) Attractived) Easy to develop

    e) Colorful

    43

    Which class is the base class for all the controls that can be used in Windows Forms?

    a) Objects

    b) Forms

    c) Controlsd) Control

    44

    Which of the following techniques for creating a control is the easiest and least time-consuming?

    a) Inheriting from an existing control

    b) Inheriting from UserControl

    c) Inherting from Control

    d) Creating from scratch

    45

    Which of the following types of error occurs when the compiler is unable to compile a code?

    a) Syntax error

    b) Runtime error

    c) Logical error

    d) Debugging error

    46

    The ________ property will allow you to loop through the collection of MdiChild forms in your application. You canuse the ________ property to determine the number of open MdiChildren in your application.

    a) MdiChildren, MdiChildren.Length

    b) MdiForms, MdiForms.Length

    c) MdiChild, MdiChild.Length

    d) MdiChildren, MdiChildren.No

    47 You are developing an ERP application for Customer Officer. You are working on the e-mail form of the Windowsapplication. You use the TabControl control and want it to always fill the forms. You also want the form to beresizable.How can you efficiently implement this feature?

    FPT-Aptech confidential Page 10

  • 8/3/2019 Tai Lieu Ly Thuyet Windows Forms_chua Dap Dap An

    11/14

    a) Set the Anchor property of the TabControl control to Top, Bottom.

    b) Set the Dock property of the frmIssueDescription form to Fill.

    c) Set the Dock property of the TabControl control to Left, and set the Anchor property to Right.

    d) Set the Dock property of the TabControl control to Fill.

    48

    What happens when you assign the same access key to more than one menu item in the same menu group?

    a) Nothing happens.

    b) You cannot assign the same access key to more than one menu item.

    c) Pressing the access key will switch between the items with the same access key, and the user must pressENTER to select the items

    d) If this access key is used, the first item in the menu that has the access key assigned to it will be selected.

    49

    You create a Windows Forms named CertKing Form. This form enables users to maintain database records in atable named CertKing.You need to add several pairs of controls to CertKing Form. You must fulfill the following requirements:

    Each pair of controls must represent one column in the CertKing table.

    Each pair must consist of a TextBox control and a Label control.

    The LostFocus event of each TextBox control must call a procedure named UpdateDatabase.

    Additional forms similar to CertKing Form must be created for other tables in the database.

    Application performance must be optimized.

    The amount of necessary code must be minimized.What should you do?

    a) Create and select a TextBox control and a Label control.Write the appropriate code in the LostFocus event of the TextBox control.Repeatedly copy and paste the controls into CertKing form until every column in the CertKing table has a pairof controls.Repeat this process for the other forms.

    b) Add a TextBox control and a Label control to CertKing Form.Write the appropriate code in the LostFocus event of the TextBox control.Create a control array form the TextBox control and the Label control.At runtime, add additional pairs of controls to the control array until every column in the CertKing table has apair of controls.Repeat this process for the other forms.

    c) Create a new user control that includes a TextBox control and a Label control.Write the appropriate code in the LostFocus event of the TextBox control.For each column in the CertKing table, add one instance of the user control to CertKing Form.Repeat this process for the other forms.

    d) Create a new ActiveX control that includes a TextBox control and a Label control.For each column in the CertKing table, add one instance of the ActiveX control to CertKing Form.Repeat this process for the other forms.

    50

    You use Visual Studio.Net to develop a Windows-based application that contains a single form.This form contains a Label control named labelTKValue and a TextBox control named textTKValue. labelValuedisplays a caption that identifies the purpose of textTKValue.You want to write code that enables users to place focus in textTKValue when they press ALT+V. This keycombination should be identified to users in the display of labelTKValue.

    Which three actions should you take? (Each correct answer present part of the solutions?

    a) Set labelTKValue.UseMnemonic to True.

    b) Set labelTKValue.Text to &Value.

    c) Set labelTKValue.CauseValidation to True.

    d) Set textTKValue.CausesValidation to True.

    e) Set textTKValue.TabIndex to exactly one number less than labelValue.TabIndex.

    f) Set textTKValue.TabIndex to exactly one number more than labelValue.TabIndex.

    FPT-Aptech confidential Page 11

  • 8/3/2019 Tai Lieu Ly Thuyet Windows Forms_chua Dap Dap An

    12/14

    51

    You develop an application that enables users to enter and edit purchase order details. The application includes aWindows Form named Display CertKing Form. The application uses a clientside.DataSet object to manage date.The DatatSet object contains a Data Table object named CertKing Details. This object includes one column namedQuantity and another named UnitPrice. For each item on a purchase order, your application must display a lineitem total in a DataGrid control on Display CertKing Form. The line item is the product of Quantity times UnitPirce.

    Your database design dose not allow you to store calculated values in the database.You need to add code to you Form_Load procedure to calculate and display the line item total. Which codesegment should you use?

    a) DataColumn totalColumn =new DataColumn(Total, Type.GetType(System.Decimal));CertKing Details.Columns.Add(totalColumn);totalColum.Expression = Quantity * UnitPrice;

    b) DataColumn totalColumn =NewDataColumn(Total,Type.GetType(System.Decimal));CertKing Details.Columns.Add(totalColumn;TotalColumn.Equals(Quantity* UnitPrice );

    c) CertKing Details.DisplayExpression(Quantity * Unitprice);

    d) CertKing Details.DisplayExpression(quantityColumn * unitPriceColumn)

    52

    You use Visual Studio. Net to create a form that includes a submenu item named helpTKOption. In the Click eventhandler for helpOption, you write code to open a Web browser loaded with a context sensitive Help file.You add a ContextMenu item named ContextMenu1 to the form. ContextMenu1 will be used for all controls on theform.Now you need to add code to the Popup event handler for ContextMenu1. Your code will create a popup menu thatoffers the same functionality as help TKOption. You want to use the minimum amount of code to accomplish thisgoal.Which two code segment should you use? (Each correct answer present part of the solution.)

    a) ContextMenu1.MenuItems.Clear();

    b) ContextMenu1.MenuItems.Add(&Display.Help);

    c) ContextMenu1.MenuItems[0].Click += new System.EventHandler(helpTKOption_Click)

    d) ContextMenu1.Popup += new System.EventHanler(helpTKOption_Click)

    53

    You develop a Windows- based application that will retrieve CertKing employee vacation data and display it in aDataGrid control. The data is managed locally in a DataSet object named employeeDataSet.You need to write code that will enable users to sort the data by department. Which code segment should you use?

    a) DataView dvDept = new DataView(); dvDept.Table = employeeDataSet.Tables[0]; dvDept.Sort = ASC;DataGrid1.DataSource = dvDept;

    b) DataView dvDept = new DataView(); dvDept.Table = employeeDataSet.Tables[0]; dvDept.Sort =Department;DataGrid1.DataSource = dvDept;

    c) DataView dvDept = new DataView(); dvDept.Table = employeeDataSet.Tables[0]; dvDept.ApplyDefaultSort =true;DataGrid1.DataSource = dvDept;

    d) DataView dvDept = new DataView(); dvDept.Table = employeeDataSet.Tables[0]; dvDept.ApplyDefaultSort =false;DataGrid1.DataSource = dvDept;

    54 You use Visual Studio.Net to develop a Windows- based application. Your application will display customer orderinformation form a Microsoft SQL Server database. The orders will be displayed on a Windows Form in a data gridnamed DataGrid1. DataGrid1 is bound to a DataView object. The Windows Form includes a button control nameddisplayBackOrder. When users click this button, DataGrid1 must display only customer orders whose BackOrdervalue is set to True.How should you implement this functionality?

    a) Set the RowFilter property of the DataView object to BackOrder = trueb) Set the RowStateFilter property of the DataView object to BackOrder = True

    c) Set the Sort property of the DataView object to BackOrder = true

    FPT-Aptech confidential Page 12

  • 8/3/2019 Tai Lieu Ly Thuyet Windows Forms_chua Dap Dap An

    13/14

    d) Set the ApplyDefaultSort property of the DateView object to true

    55

    You develop a Windows- based application to manage business contacts. The application retrieves a list ofcontacts from a central database. The list of contacts is managed locally in a DataSet object namedcontactDataSet.To set the criteria for retrieval, your user interface must enable users to type a city name into a TextBox control.The list of contacts that match this name must then be displayed in a DataGrid control.Which code segment should you use?

    a) DataView contactDataSet = new DataView();dv.Table = contactDataSet.Tables[0];dv.RowFilter = TextBox1.Text;DataGrid1.DataSource = dv;

    b) DataView dv = new DataView();dv.Table = contactDataSet.Tables[0];dv.RowFilter = String.Format(City={0}, TextBox1.Text);DataGrid1.DataSource = dv;

    c) DataView contactDataSet = new DataView();dv.Table = contactDataSet.Tables[0];dv.Sort = TextBox1.Text;DataGrid1.DataSource = dv;

    d) DataView dv = new DataView();

    dv.Table = contactDataSet.Tables[0];dv.Sort = String.Format(City={0}, TextBox1.Text);DataGrid1.DataSource = dv;

    56

    Which of the following statements with respect to ADO.Net are True? (Choose 3)

    a) In ADO, the RecordSet is bound to the data source

    b) When we use the DataSet object, ADO.Net is based on disconnected data access.

    c) ADO.Net objects are all strongly typed.

    d) Systems built on ADO.NET are intrinsically highly scaleable

    57

    Which of the following statements with respect to Data Grid control are True? (choose 3)

    a) When the DataGrid control is set to a valid data source, the control is populated automatically.

    b) Each field in the DataGrid is bound to a single column based on the DataSource

    c) By default, the DataGrid displays 1 page at a time.

    d) The DataGrid control displays data in a tabular format and optionally supports data editing.

    58

    Which Control is used to display the current status of the application using framed windows?

    a) StatusBar

    b) ToolBar

    c) TreeView

    d) ListView

    59

    Which event occurs when the form is closed?

    a) Closes

    b) Delete

    c) Close

    d) Closed

    FPT-Aptech confidential Page 13

  • 8/3/2019 Tai Lieu Ly Thuyet Windows Forms_chua Dap Dap An

    14/14

    60

    Which namespace in VS.Net contains classes that help in constructing and sending emails?

    a) System.Web.MailMessage

    b) System.Web.MailMessages

    c) System.Web.Mail

    d) System.Mail

    61

    Which control is used to link an HTML file with the Winforms application?

    a) HelpString

    b) HelpProvider

    c) HelpText

    d) HelpButton

    FPT A t h fid ti l