Microsoft 98-362 - Windows Development Fundamentals Exam
Page: 3 / 12
Total 60 questions
Question #11 (Topic: )
A Windows Forms form connects to a database and processes data in a method named
AddUsers(). The form stops accepting user input during the execution of AddUsers().
You need to ensure that the form continues to respond to user input during the execution of
AddUsers().
What should you do?
AddUsers(). The form stops accepting user input during the execution of AddUsers().
You need to ensure that the form continues to respond to user input during the execution of
AddUsers().
What should you do?
A. Call InvokePaint()periodically in the AddUsers() method.
B. Set the form's DoubleBuffered property to True.
C. Set the form's AutoRedraw property to True.
D. Call the AddUsers() method in a new thread.
E. Call PerformLayout() periodically in the AddUsers()method.
Answer: D
Question #12 (Topic: )
Which two templates are valid deployment project templates in Visual Studio? (Choose
two.)
two.)
A. Build Project
B. CAB Project
C. Consolidate Project
D. Merge Module Project
Answer: B,D
Question #13 (Topic: )
A Windows Forms project contains a form that you want to inherit from. You choose the
Inherited Form template and select the base form from the Inheritance Picker dialog box.
When the new form is added to the project, none of the controls from the base form are
present.
You need to ensure that the inherited controls are present on the new form.
What should you do?
Inherited Form template and select the base form from the Inheritance Picker dialog box.
When the new form is added to the project, none of the controls from the base form are
present.
You need to ensure that the inherited controls are present on the new form.
What should you do?
A. Rebuild the solution.
B. Compile the solution and add a reference.
C. Copy the controls manually.
D. Save the form's definition as a .txt file and import the file into the new form's code.
Answer: D
Question #14 (Topic: )
You need to install a Windows Services application manually. Which command-line utility
should you use?
should you use?
A. installutil.exe
B. installservice.exe
C. regasm.exe
D. regsvr32.exe
Answer: B
Question #15 (Topic: )
A MaskedTextBox control is used to:
A. Provide text boxes only at design time.
B. Provide input clues to the user.
C. Hide text box values from the user.
D. Hide text boxes at design time.
Answer: B