Loading...

Messages

Proposals

Stuck in your homework and missing deadline? Get urgent help in $10/Page with 24 hours deadline

Get Urgent Writing Help In Your Essays, Assignments, Homeworks, Dissertation, Thesis Or Coursework & Achieve A+ Grades.

Privacy Guaranteed - 100% Plagiarism Free Writing - Free Turnitin Report - Professional And Experienced Writers - 24/7 Online Support

Clearly visual basic 2012 review question answers

01/12/2021 Client: muhammad11 Deadline: 2 Day

Clearly Visual Basic: Programming with Visual Basic 1-1

Chapter 1

I Am Not a Control Freak! (Control Structures)

Key Terms

 Algorithm—the set of step-by-step instructions that accomplish a task  Control structures—the sequence, selection, and repetition structures, which control

the flow of a program’s logic; also called logic structures

 Iteration—another term for the repetition structure  Logic structures—another term for control structures  Loop—another term for the repetition structure  Repetition structure—the control structure that directs the computer to repeat one or

more instructions until some condition is met, at which time the computer should stop

repeating the instructions; also called a loop or iteration

 Selection structure—the control structure that directs the computer to make a decision and then take the appropriate action based on that decision; also called the decision

structure

 Sequence structure—the control structure that directs the computer to process each instruction in the order listed in the program

Quick Quiz 1

1. A(n) __________ is a set of step-by-step instructions that accomplish a task.

2. The repetition structure is also referred to as a(n) ____________.

3. In most programs, you will use _____________ structure.

4. A cookie recipe provides a good example of the ___________ structure.

Clearly Visual Basic: Programming with Visual Basic 1-2

Clearly Visual Basic: Programming with Visual Basic 1-3

The algorithm in figure does not get a robot through the mase. Correct the algorithm.

Clearly Visual Basic: Programming with Visual Basic 1-4

Chapter 2

First You Need to Plan the Party (Problem-Solving Process)

Key Terms

 Flowchart—a tool that programmers use when planning an algorithm; consists of standardized symbols

 Flowlines—the lines connecting the symbols in a flowchart  Input—the items an algorithm needs to achieve the output  Input/output symbol—the parallelogram in a flowchart; used to represent input and

output tasks

 Invalid data—data that an algorithm is not expecting the user to enter  Output—the goal or purpose of solving a problem  Process symbol—the rectangle in a flowchart; used to represent tasks such as

calculations

 Pseudocode—a tool that programmers use when planning an algorithm; consists of short phrases

 Start/stop symbol—the oval in a flowchart; used to mark the beginning and end of the flowchart

 Valid data—data that an algorithm is expecting the user to enter

Quick Quiz

5. Programmers use ____________, which means false code, to help them while they are planning an algorithm.

6. A(n) ________________ uses standardized symbols to visually depict an algorithm.

Clearly Visual Basic: Programming with Visual Basic 1-5

Clearly Visual Basic: Programming with Visual Basic 1-6

Chapter 3

I Need a Tour Guide (Introduction to Visual Basic 2012)

Key Terms

 Application—the combination of a program’s user interface and its code  Controls—objects (such as labels and picture boxes) added to a form  Font—the general shape of the characters used to display text  Form—the foundation for the user interface in a Windows application; also called a

Windows form object

 GUI—an acronym for graphical user interface  IDE—an acronym for integrated development environment Integrated development

environment—an environment that contains all of the tools and features needed to

create, run, and test programs; also called an IDE

 Label control—the control used to display text that the user is not allowed to edit while an application is running

 Picture box—the control used to display an image on a form  Properties—the attributes that determine an object’s appearance and behavior  Properties window—the window that lists the selected object’s attributes (properties)  Toolbox window—the window that contains the tools used to add controls to a form;

referred to more simply as the toolbox

 User interface—what the user sees and interacts with while an application is running  Windows Form Designer window—the window in which you create your

application’s GUI

Quick Quiz

7. A(n) ____ is what appears on the screen and with which you interact while using a program.

8. A(n) ____ is an environment that contains all of the tools and features you need to create, run, and test your programs.

9. A(n) ____ is the foundation for the user interface in a Windows application.

10. The objects added to a form are called ____.

11. You use a(n) ____ to display an image on the form.

12. Every object in a Visual Basic application has a set of attributes, called ____, that determine its appearance and behavior.

13. GUI stands for _______________________.

14. An _____________ control display test that the user is not allowed to edit while an application is running.

Clearly Visual Basic: Programming with Visual Basic 1-7

Chapter 4

Do It Yourself Designing (Designing Interfaces)

Key Terms

 Access key—the underlined character in an object’s identifying label or caption; allows the user to select the object using the Alt key in combination with the underlined

character

 Code—Visual Basic instructions  Code Editor window—the window in which you enter your Visual Basic instructions

(code)

 Event procedure—a set of Visual Basic instructions that tell an object how to respond to an event

 Events—actions to which an object can respond; examples include clicking and double clicking

Quick Quiz

15. A(n) _________ allows the user to select a menu using the Alt key in combination with a letter or number.

16. You assign an access key by including a(n) ____ in the control’s caption or identifying label.

17. A(n) ____________ is a set of Visual Basic instructions that are processed when a specific event occurs.

Clearly Visual Basic: Programming with Visual Basic 1-8

Clearly Visual Basic: Programming with Visual Basic 1-9

Chapter 5

The Secret Code (Assignment Statements)

Key Terms

 Assignment operator—the equal sign in an assignment statement to assign a value to something

 Assignment statement—a statement that assigns a value to a destination (such as the property of a control)

1. Comment—a message entered in the Code Editor window for the purpose of internally documenting the code; begins with an apostrophe; also referred to as internal

documentation; to makes the code more readable and understandable

 Function—a predefined procedure that performs a specific task and then returns a value after completing the task

 Integer division operator—one of the arithmetic operators; represented by a backslash (\); divides two integers and then returns the quotient as an integer

 Modulus operator(Mod)—represented by the keyword Mod; divides two numbers and then returns the remainder of the division

 Val function—temporarily converts one or more characters to a number, and then returns the number

Quick Quiz

2. A(n) __________ is a message to the person reading the code to makes the code more readable and understandable.

3. A(n) __________ is a predefined procedure that performs a specific task and then returns a value after completing the task.

4. The __________ operator returns the remainder of the division.

5. A(n) __________ is used to assign a value to something (such as the property of a control) while an application is running.

Clearly Visual Basic: Programming with Visual Basic 1-10

8. The expression 100 /50 * 2 + 1 evaluates to __________ .

9. The expression 7 + 2 * ( 2 + 4 ) evaluates to _________ .

Clearly Visual Basic: Programming with Visual Basic 1-11

Chapter 6

Key Terms

 Const statement—the statement used to declare a named constant  Dim statement—the statement used to declare a procedure-level variable  Formatting—specifying the number of decimal places and the special characters to

display in a number

 Named constant—a computer memory location whose value cannot be changed during run time; created using the Const statement

 Procedure-level variables—variables declared in a procedure; a procedure-level variable has procedure scope

 String—text enclosed in double quotation marks  ToString method—formats a number stored in a numeric variable and then returns the

result as text

 TryParse method—converts text to a numeric data type  Variables—computer memory locations where programmers can temporarily store

data, as well as change the data, while an application is running

Quick Quiz

6. Memory locations are called ____________because their contents can change (vary) as the program is running.

7. (True or False) Some variables can store a number, while others can hold text, a date, or a Boolean value.

8. (True or False) Variable names in Hungarian notation begin with a three-character ID that represents the variable’s data type.

9. To declare a variable in an event procedure, where most variables are declared, you use the Visual Basic ____________ statement.

10. A(n) ___________ is a memory location whose value cannot change while the application is running.

11. Specifying the number of decimal places and the special characters to display in a number is called ____________.

Clearly Visual Basic: Programming with Visual Basic 1-12

Clearly Visual Basic: Programming with Visual Basic 1-13

Chapter 7

Key Terms 

Bug—an error in a program’s code

Debugging—the process of locating and correcting any bugs in a program

Logic error—an error that can occur for a variety of reasons, such as forgetting to enter an

instruction, entering the instructions in the wrong order, or entering a calculation statement that is

incorrect mathematically

Syntax error—an error that occurs when a statement breaks one of a programming language’s

rules

Run time error—an error that occurs when when the application is running

Quick Quiz

1. An error in a program’s code is referred to as a(n) _______.

2. The process of locating and correcting any bugs in a program is called ____________.

3. A(n) ________ occurs when you break one of the language’s rules.

Clearly Visual Basic: Programming with Visual Basic 1-14

Chapter 8

Decisions, Decisions, Decisions (Selection Structure)

Key Terms

 Check boxes—controls used to offer the user one or more independent and nonexclusive choices

 Comparison operators—operators used to compare values in an expression  Condition—specifies the decision you are making and must be phrased so that it

evaluates to a Boolean value (either True or False)

 Decision symbol—the diamond in a flowchart; used to represent the condition in selection and repetition structures

 False path—contains the instructions to be processed when a selection structure’s condition evaluates to False

 If…Then…Else statement—used to code the single-alternative and dual-alternative forms of the selection structure in Visual Basic

 Selection structure—one of the three basic control structures; directs the computer to make a decision based on some condition and then select the appropriate action; also

called the decision structure

 Statement block—in a selection structure, the set of statements in the true path and the set of statements in the false path

 True path—contains the instructions to be processed when a selection structure’s condition evaluates to True

Quick Quiz

1. The ____ structure makes a decision and then takes an appropriate action based on that.

2. (True or False) All expressions containing a comparison operator will result in an answer of either True or False only.

3. (True or False) Comparison operators are evaluated after any arithmetic operators in an expression.

4. The diamond in a flowchart is called the ____ symbol.

Clearly Visual Basic: Programming with Visual Basic 1-15

8. The expression 7 + 3 * 2 > 5 * 3 evaluates to ____________.

9. The expression 6 * 4 – 3 * 2 = 18 evaluates to ____________.

Homework is Completed By:

Writer Writer Name Amount Client Comments & Rating
Instant Homework Helper

ONLINE

Instant Homework Helper

$36

She helped me in last minute in a very reasonable price. She is a lifesaver, I got A+ grade in my homework, I will surely hire her again for my next assignments, Thumbs Up!

Order & Get This Solution Within 3 Hours in $25/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 3 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

Order & Get This Solution Within 6 Hours in $20/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 6 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

Order & Get This Solution Within 12 Hours in $15/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 12 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

6 writers have sent their proposals to do this homework:

Professional Accountant
Homework Master
Solution Provider
Innovative Writer
Top Academic Guru
Math Specialist
Writer Writer Name Offer Chat
Professional Accountant

ONLINE

Professional Accountant

As per my knowledge I can assist you in writing a perfect Planning, Marketing Research, Business Pitches, Business Proposals, Business Feasibility Reports and Content within your given deadline and budget.

$41 Chat With Writer
Homework Master

ONLINE

Homework Master

I find your project quite stimulating and related to my profession. I can surely contribute you with your project.

$31 Chat With Writer
Solution Provider

ONLINE

Solution Provider

This project is my strength and I can fulfill your requirements properly within your given deadline. I always give plagiarism-free work to my clients at very competitive prices.

$35 Chat With Writer
Innovative Writer

ONLINE

Innovative Writer

I have read your project description carefully and you will get plagiarism free writing according to your requirements. Thank You

$16 Chat With Writer
Top Academic Guru

ONLINE

Top Academic Guru

Being a Ph.D. in the Business field, I have been doing academic writing for the past 7 years and have a good command over writing research papers, essay, dissertations and all kinds of academic writing and proofreading.

$40 Chat With Writer
Math Specialist

ONLINE

Math Specialist

Being a Ph.D. in the Business field, I have been doing academic writing for the past 7 years and have a good command over writing research papers, essay, dissertations and all kinds of academic writing and proofreading.

$47 Chat With Writer

Let our expert academic writers to help you in achieving a+ grades in your homework, assignment, quiz or exam.

Similar Homework Questions

Assignment 1: Drug Study - Mortgaging - Cabela's women's trans alaska elite goose down parka - Cloud computing - Lancashire grid for learning - 4 phases of adlerian therapy - What channel is e on verizon - Persuasive essay about using cellphones in school - Familiarity breeds rigidity - En 46111 crankshaft rotation socket - Provide extensive additional information on the topic Explain, define, or analyze the topic in detail and Share an applicable personal experience - Descriptive essay about a place using the five senses - Dell code tester for oracle - Discussion - Media and culture 9th edition - Urolift cpt - ECONOMIC GEOGRAPHY ESSAY - Work done by spring - As/nzs 3000 amendment 2 pdf - Penn foster written communication exam answers - Java se8 certification dumps - Donabedian theory of quality health care - What are the family resources and needs - The best description of a proprietary database is one that - Three things i'm grateful forthree things i'm grateful for - Stephen wyman patsy smith - Who are the primary users of scm systems - Which of the following statements is untrue regarding cold canvassing - Infotech Import and Strategic Planning - Biostatistics Case 2 - Case 1 monsanto attempts to balance stakeholder interests - Red rooster financial report - Qualitative analysis of cations lab report answers - What human characteristic is thematized in the excerpt? - Applied behavior analysis/ Analisis de conducta aplicado - Cybersecurity - Experiment 2 effect of chemical germicides on bacterial growth - Dpd local tariff guide - Name four ways in which government regulates business - W2 DQ ANP 650 - Freshwater east beach parking - Informatics in healthcare - History assignment - POL 201 American National Government NO PLAGIARISM PLZ Final Paper for Class Thank you!! - Community DQ8 - Q3 - Ecb e learning login - Wk 5, HCS 335: DR 2 - Botanical gardens batemans bay - Battle hill health centre - How to do a case study assignment - Will galvanized steel rust in concrete - Reasons for business expansion leaving cert - Test developnent ADHD - What era is burlesque set in - Commutator quantum mechanics example - The ideas of armchair criminologists achieve acclaim in all but which of the following ways? - Let her go lyrics - Contemplative prayer thomas merton - Isbn 978 0 07 786106 3 - Financial reporting 2nd edition wiley - Keggy the keg - Cavaliers and roundheads differences - Methods of Neuroscience Investigation - Describe some ways that an organization can recover it's IT resources from a natural disaster (fire, flood, hurricane, tornado etc.). What controls should have been in place in order to be able to retrieve this data? - Whipps cross hospital ward map - Trait approach to leadership theory - Chicago bridge scoring examples - Brisbane subdivision and development guidelines - Related Diversification - Label the phases of the moon worksheet - Unguaranteed residual value lease - Street level bureaucracy summary - Electron configuration diagram of sodium fluoride - Schroder international selection fund annual report - Ronald takaki a different mirror pdf - Holy family rockford il - Bullet in the brain questions - Northern tile distributors thomastown - Samsung electronics uk ltd - Cmu two factor authentication - As a CISO make argument for using SSL and IPsec and determine which is better - Material engineering - Chlorsig 1 eye ointment - Oxidation reduction lab report - Components of classroom management ppt - Jekyll and hyde structure - Monster energy music sponsorship - Riemann sums classwork answers - Main factors affecting the effect of celebrities’ sponsored posts from the consumers’ perspective. - Journal of Criminal Justice _ Week 6. - Endocrine system the hypothalamic pituitary axis worksheet answers - In exercise 6.1, how do you enable efs? - The nine jeffrey toobin pdf - How does the correctional system punish offenders - Week8 discussion - PHIL 330 Ethics/ Reflection Post - Guided reading strategies 21.4 the napoleonic era - Marketing midterm review - Romeo and juliet sonnet