Services
Discover
Homeschooling
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
Programming with Microsoft Visual Basic
Quiz 2: Designing Applications
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 41
Short Answer
Write a statement that clears the contents of the Text property of the txtLastName control.
Question 42
Essay
Complete the Result column in the chart provided.
w
Result
5
∧
3
9
−
2
∗
3
38
/
2
38
/
2
38
M
o
d
2
\begin{array} { | l | l | } \hline { w} & \text { Result } \\\hline { 5 ^ { \wedge } 3 }&\\\hline 9 - 2 * 3 & \\\hline 38 / 2 & \\\hline 38 / 2 & \\\hline 38 \mathrm { Mod } 2 & \\\hline\end{array}
w
5
∧
3
9
−
2
∗
3
38/2
38/2
38
Mod
2
Result
Question 43
Essay
What is a TOE (Task,Object,Event)chart? Describe how it is created and used in the planning phase of an application.
Question 44
Essay
Define the term "flowchart." Define each of the three flowchart symbols and discuss how each is used within a flowchart.
Question 45
Essay
What is debugging? Explain the difference between a syntax error and a logic error.
Question 46
Essay
What do the TabIndex values determine for the controls of an interface? What is the standard tab order for controls on an interface?
Question 47
Short Answer
Write a statement that adds the contents of the txtNum1 control to the contents of the txtNum2 control,and then multiplies the result by 5.The result is displayed in the lblResult control.
Question 48
Short Answer
The following statements contain errors. Rewrite the statements to correct all errors. -The following statement should subtract the contents of the txtEndInventory control from the contents of the txtBeginInventory control,and then divide the difference by 2: Val(txtEndInventory)- Val(txtBeginInventory)\ 2
Question 49
Short Answer
Write a statement that displays the net pay in the lblNetPay control so that it is formatted with a dollar sign and two decimal places.
Question 50
Short Answer
The following statements contain errors. Rewrite the statements to correct all errors. -The following expression should subtract 10 from the txtPrice control and then multiply the result by .07: lblSalesTax.Text = Val(txtPrice.Text)- 10 * .07
Question 51
Multiple Choice
Case 1 - BrainPower Tutoring The owner of BrainPower Tutoring needs an application to calculate and print estimates to provide to potential clients for tutoring services. A tutoring session is a minimum of one hour, and the hourly rate varies based on the subject. The application should allow the owner to enter the client’s name, subject, number of tutoring sessions, and hourly rate. The application will display the total fee and allow the owner to print the estimate. You should also provide the ability for the owner to clear the screen and exit the application. -Which of the following statements would calculate and display the total fee?
Question 52
Essay
Explain the difference between a string and an empty string.Why would you use an empty string?
Question 53
Essay
List the four steps you should follow when planning an object-oriented application.Be sure to put the steps in the proper numeric order (1 through 4).
Question 54
Multiple Choice
Case 1 - BrainPower Tutoring The owner of BrainPower Tutoring needs an application to calculate and print estimates to provide to potential clients for tutoring services. A tutoring session is a minimum of one hour, and the hourly rate varies based on the subject. The application should allow the owner to enter the client’s name, subject, number of tutoring sessions, and hourly rate. The application will display the total fee and allow the owner to print the estimate. You should also provide the ability for the owner to clear the screen and exit the application. -Which of the following statements is true about printing the estimate?
Question 55
Essay
What is an access key? What are three reasons access keys should be set in a Windows application?
Question 56
Essay
Describe four GUI design tips that follow the Windows standards for the use of graphics,fonts,and color.
Question 57
Essay
Explain how the BorderStyle property is used for label controls and text box controls.
Question 58
Short Answer
The following statements contain errors. Rewrite the statements to correct all errors. -The following statements should send the output directly to the printer: PrintForm1.PrintJob = Printing.PrintAction.PrintToPreview PrintForm2.Print()
Question 59
Short Answer
The following statements contain errors. Rewrite the statements to correct all errors. -The following statements should clear each control: lblEmpNumber.Txt = String.Empty lblFirstName = String."" lblLastName.Text = Empty.String