All Matches
Solution Library
Expert Answer
Textbooks
Search Textbook questions, tutors and Books
Oops, something went wrong!
Change your search query and then try again
Toggle navigation
FREE Trial
S
Books
FREE
Tutors
Study Help
Expert Questions
Accounting
General Management
Mathematics
Finance
Organizational Behaviour
Law
Physics
Operating System
Management Leadership
Sociology
Programming
Marketing
Database
Computer Network
Economics
Textbooks Solutions
Accounting
Managerial Accounting
Management Leadership
Cost Accounting
Statistics
Business Law
Corporate Finance
Finance
Economics
Auditing
Hire a Tutor
AI Study Help
New
Search
Search
Sign In
Register
study help
computer science
programming with microsoft visual basic 2015
Questions and Answers of
Programming with Microsoft Visual Basic 2015
Which of the following is a data item whose value does not change during run time?a. Literal constantb. Literal variablec. Named constantd. Variable
In this exercise, you modify the bakery application from this lesson. Use Windows to make a copy of the Bakery Solution folder. Rename the copy Modified Bakery Solution-Lesson C-Intro. Open the
Which of the following events occurs when a change is made to the contents of a text box?a. Changeb. Changedc. TextChangedd. TextChange
This exercise assumes you have completed the Richardson County application from Exercise 1 in each of Chapter 2’s lessons. Use Windows to copy the Richardson Solution folder from the VB2015\Chap02
The name of a form’s default button is specified in the _____________________ property.a. button’s AcceptButtonb. button’s DefaultButtonc. form’s AcceptButtond. form’s DefaultButton
A procedure needs to store a salesperson’s name and bonus amount (which may have decimal places). Write the appropriate Dim statements to declare the necessary procedure-level variables.
Which of the following keywords is used to declare a class-level variable?a. Classb. Dimensionc. Globald. Private
Open the VB2015\Chap02\Debug Solution\Debug Solution (Debug Solution.sln) file. Locate and then correct the syntax errors in the Code Editor window. Save the solution, and then start and test the
In this exercise, you learn about a text box’s Clear method, which can be used to remove the contents of the text box during run time. Use Windows to make a copy of the Bakery Solution folder from
The payroll clerk at Photo Workshop has asked you to create an application that displays an employee’s net pay. The application should allow the payroll clerk to enter the employee’s name, hours
A group of people needs to be transported to a concert. If an SUV can accommodate seven people, how many SUVs will be completely full and how many people will still need transportation? Create an
Create an application that displays the average of three test scores entered by the user. Use the following names for the solution and project, respectively: Average Solution and Average Project.
In this exercise, you modify the bakery application from the chapter. Use Windows to make a copy of the Bakery Solution folder contained in the VB2015\Chap02 folder. Rename the copy Modified Bakery
Your science teacher has asked you to create an application that displays how much a person would weigh on the following planets: Venus, Mars, and Jupiter. The application’s interface should allow
Jefferson Sales wants you to create an application that displays a salesperson’s monthly commission, given his or her monthly sales and commission rate (entered in decimal form). The commission is
What value is assigned to the lblNum control when the lblNum. Text = 99 Mod 25 instruction is processed by the computer?
Listed below are the six steps you should follow when creating an OO application. Put the steps in the proper order by placing a number (1 through 6) on the line to the left of the
In this exercise, you complete the application from Lesson B’s Exercise 4. Open the VB2015\Chap02\Age Solution\Age Solution (Age Solution.sln) file. The Calculate button should calculate your age
What value is assigned to the lblNum control when the lblNum. Text = 99 \ 25 instruction is processed by the computer?
Open the Age Solution (Age Solution.sln) file contained in the VB2015\Chap02\Age Solution folder. If necessary, open the designer window. The application allows you to enter the year you were born
Listed below are the four steps you should follow when planning an OO application. Put the steps in the proper order by placing a number (1 through 4) on the line to the left of the
In this exercise, you complete the Cranston Berries application from Exercise 3 in both Lesson A and Lesson B. Open the VB2015\Chap02\Cranston Solution\Cranston Solution (Cranston Solution.sln)
Which symbol is used in a flowchart to represent an output task?a. Circleb. Ovalc. Parallelogramd. Rectangle
In this exercise, you will continue creating the Cranston Berries application from Lesson A’s Exercise 3. Create a Visual Basic Windows application. Use the following names for the solution and
Cranston Berries sells three types of berries: strawberries, blueberries, and raspberries. Sales have been booming this year and are expected to increase next year. The sales manager wants you to
Which of the following statements is false?a. The text contained in identifying labels should be left-aligned within the label.b. An identifying label should be positioned either above or to the
In this exercise, you complete the Jordan Sports Store application from Exercise 2 in both Lesson A and Lesson B. Open the VB2015\Chap02\Jordan Solution\Jordan Solution (Jordan Solution.sln) file.a.
Which function temporarily converts a string to a number and then returns the number?a. Formatb. FormatNumberc. Stringd. Val
In this exercise, you will continue creating the Jordan Sports Store application from Lesson A’s Exercise 2. Create a Visual Basic Windows application. Use the following names for the solution and
Which letter should always be used for the Exit button’s access key?a. Eb. xc. id. t
All employees at Jordan Sports Store are paid based on an annual salary rather than an hourly wage. However, some employees are paid weekly, while others are paid every other week. Employees paid
A button’s caption should be entered using which type of capitalization?a. Book titleb. Sentencec. Either book title or sentence
In this exercise, you complete the Richardson County application from Exercise 1 in both Lesson A and Lesson B. Open the VB2015\Chap02\Richardson Solution\Richardson Solution (Richardson
Which of the following assignment statements will not calculate correctly?a. lblTotal.Text = Val(txtSales1.Text) + Val(txtSales2.Text)b. lblTotal.Text = 4 – Val(txtSales1.Text)c. lblTotal.Text =
In this exercise, you will continue creating the Richardson County application from Lesson A’s Exercise 1. Open the VB2015\Chap02\Richardson Solution\Richardson Solution (Richardson Solution.sln)
The annual property tax in Richardson County is $1.50 for each $100 of a property’s assessed value. The county clerk wants you to create an application that will display the property tax after he
In which corner should the most important information be placed in a user interface?a. Lower leftb. Lower rightc. Upper leftd. Upper right
Open the VB2015\Chap01\Debug Solution\Debug Solution (Debug Solution.sln) file. If necessary, open the designer window. Start the application. The application is not working correctly because the
In this exercise, you learn how to display a tooltip. Open the VB2015\Chap01\ToolTip Solution\ToolTip Solution (ToolTip Solution.sln) file. If necessary, open the designer window. Click the ToolTip
In this exercise, you will learn how to display a splash screen followed by another form.a. Open the Two Form Solution (Two Form Solution.sln) file contained in the VB2015\Chap01\Two Form Solution
Which property is used to give an object a more meaningful name?a. Applicationb. Captionc. Named. Text
In this exercise, you will create a splash screen that has a transparent background.a. Open the VB2015\Chap01\Transparency Solution\Transparency Solution (Transparency Solution.sln) file. If
The Internet contains a vast amount of code snippets that you can use in your Visual Basic applications. And in many cases, you can use the snippet without fully understanding each line of its code.
Explain how to delete a control that contains code.
Define the term “syntax.”
Which of the following statements is true?a. You can auto-hide a window by clicking the Auto Hide (vertical pushpin) button on its title bar.b. An auto-hidden window appears as a tab on the edge of
Create a Visual Basic Windows application. Name the solution, project, and form file My Splash Solution, My Splash Project, and Splash Form.vb, respectively. Save the application in the VB2015\Chap01
You can remove the Minimize, Maximize, and Close buttons from a form’s title bar by setting the form’s _____________________ property to False.a. ControlBoxb. ControlButtonc. TitleBard.
In this exercise, you learn about the Format menu’s Align, Make Same Size, and Center in Form options.a. Open the VB2015\Chap01\Format Solution\Format Solution (Format Solution.sln) file. If
Create a Visual Basic Windows application. Use the following names for the solution and project, respectively: Characters Solution and Characters Project. Save the application in the VB2015\Chap01
To disable the Minimize button on a form’s title bar, set the form’s _____________________ property to False.a. ButtonMinimizeb. Minimizec. MinimizeBoxd. MinimizeButton
Create a Visual Basic Windows application. Use the following names for the solution and project, respectively: Penguin Solution and Penguin Project. Save the application in the VB2015\Chap01 folder.
If necessary, start Visual Studio 2015 and permanently display the Solution Explorer window. Create a Visual Basic Windows application. Use the following names for the solution and project,
In this exercise, you modify the Valley Park application created in Lesson B’s Exercise 2.a. Open the VB2015\Chap01\Valley Solution\Valley Solution (Valley Solution.sln) file. If necessary, open
Which of the following is false?a. When you add a timer control to a form, the control appears in the component tray.b. The user can see a timer control during run time.c. You stop a timer by setting
Create a Visual Basic Windows application. Use the following names for the solution and project, respectively: Valley Solution and Valley Project. Save the application in the VB2015\Chap01 folder.
If necessary, start Visual Studio 2015 and permanently display the Solution Explorer window. Create a Visual Basic Windows application. Use the following names for the solution and project,
In this exercise, you modify the Warren Fire Department application created in Lesson B’s Exercise 1.a. Open the VB2015\Chap01\Warren Solution\Warren Solution (Warren Solution.sln) file. If
If a timer is running, the code in its _____________________ event procedure is processed each time an interval has elapsed.a. Intervalb. Tickc. Timedd. Timer
Create a Visual Basic Windows application. Use the following names for the solution and project, respectively: Warren Solution and Warren Project. Save the application in the VB2015\Chap01 folder.a.
You use the _____________________ control to display text that the user is not allowed to edit while the application is running.a. Buttonb. DisplayBoxc. Labeld. PictureBox
If necessary, start Visual Studio 2015 and permanently display the Solution Explorer window. Use the File menu to open the VB2015\Chap01\Jackson Solution\Jackson Solution (Jackson Solution.sln) file.
Showing 600 - 700
of 662
1
2
3
4
5
6
7