Jacobson furniture pseudo-code

Use the following planning chart, create the pseudo-code for the btncalc_click event handling procedure. This procedure should calculate and display the Sales Tax on the Sales Amount and then the Total Due (Sales Amount + Sales Tax). Place the pseudo-code (do not give me Visual Basic statements)

Planning Chart for the Jacobson Furniture application

Purpose: Calculate and display the sales tax and total due amounts.

How?

User-provided

1. Sales amount

Application-provided
1. 5% sales tax
2. Total due
3. Button for ending the application

User will enter in txtSales

BtnCalc_Click will calculate and display in lblTax

BtnCalc_Click will calculate and display in lblTotal

BtnExit_Click will end the application

Please answer this immediately!!!

Jacobson Furniture Pseudo-codeUse The Following Planning Chart, Create The Pseudo-code For The Btncalc_click

Answers

Answer 1

Answer:

We need to add four labels Taxable Income, Tax rate, total tax, and Total Due. And in front of them, you can add four textBoxes, or labels or as required.

The Tax rate is 5%.

And

Explanation:

BtnCalc_Click will calculate and display in lblTax

double tax = Convert.ToDouble((textBox1.Text)) * 5/100;

double Roundedtax = Math.Round(tax, 2);

textBox2.Text = Convert.ToString(Roundedtax);

textBox2.Show();

// we can use lblTax instead of textBox2. The further code will be almost change, and we need to use lblTax label instead of textBox2.Text.

BtnCalc_Click will calculate and display in lblTotal

textBox3.Text = Convert.ToString(Convert.ToDouble(textBox1.Text) + Convert.ToDouble(textBox2.Text));

textBox3.Show();

//This is lblTotal or the total Tax. We can use lblTotal label instead of the textBox3.Text.

BtnExit_Click will end the application:

Use this code in this method.

this.Close();

// This closes the application immediately on click on the Exit button.

Jacobson Furniture Pseudo-codeUse The Following Planning Chart, Create The Pseudo-code For The Btncalc_click
Jacobson Furniture Pseudo-codeUse The Following Planning Chart, Create The Pseudo-code For The Btncalc_click
Jacobson Furniture Pseudo-codeUse The Following Planning Chart, Create The Pseudo-code For The Btncalc_click

Related Questions

* Create a list of places and situations in which we use a computer
PLACE
SITUATION
DESCRIPTION

Answers

Answer:

Place:

Coffee shop. Railway Reservation System, Airport Reservation System, Machine learning and a long list follow.

Situation:

We find that there is a similar type of calculation and in bulk. Thus we can create a piece of software, and run that with the help of a computer to solve our problem of tackling the massive number of clients.

Description:

The situation demands a similar sort of calculation, and we can hence make a program or most favorably a software that can do all these calculations for us. A perfect example is a coffee shop, which has 100 to 1000 customers drinking coffee each second. And you can understand how badly they need a computer and software. This cannot be done manually.

Explanation:

Please check the answer section.

Jasmine needs to select the first sentence of a paragraph and the last sentence of a paragraph simultaneously. The text is nonadjacent. Which of the following should she do?a. Select the first sentence, then press and hold ALT while selecting the second sentence.
b. Select the first sentence, then press and hold SHIFT while selecting the second sentence.
c. Select the first sentence, then press and hold SHIFT+ALT while selecting the second sentence.
d. Select the first sentence, then press and hold CTRL while selecting the second sentence.

Answers

Answer:

d. Select the first sentence, then press and hold CTRL while selecting the second sentence.

Explanation:

In MS word, we need to select text sometimes from different places of the document or paragraph at the same time. To select the text from different place that are not adjacent to each other. we can follow the following steps.

Select the first sentence or text that you need. Now press control button and hold until select the other sentence or text.

In this way, jasmine can also select the first sentence of a paragraph and the last sentence of the paragraph simultaneously, whether text is not adjacent.

Which of the following is an example of an appropriate name for a control?

Answers

Answer:

btnExit

Explanation:

Why is it important to record audio of silence in the area in which you are filming?

Answers

Answer:

To make sure that there is no other outside/excess noise while you are filming your actual film

Hoped this helped !

Cheers, Z

Answer:

That depends. The answer I would give is so if something does arise, such as a really big noise accompanied by a really big animal, then you'd have more than just video. If a natural disaster occurs, the only way to tell may be through audio.

Carlos and Sophia develop websites as a team and have done so for many years. They hire a new member, Terry, a website developer, who
previously worked alone. A client from the healthcare Industry approaches the team to refurbish the client's old site. Because Carlos and Sophia
were out of the office visiting another client site, Terry sets up a web meeting with the client to gather their requirements. Has Terry made a
mistake in this situation?
A no, because a requirements gathering session is the first stage in website development
B. no, because Terry is an experienced developer and can manage client interactions by himself
C. yes, because a requirements-gathering session should be a face-to-face meeting, rather than a virtual one
D. yes, because only senior team members must be present in a requirements gathering session

Answers

No because a requirements gathering session is the first page in web development

Answer:

It would be C

Explanation:

Did it on edmentum and got the answer correct!

How do you start an HTML webpage?
Lots of details will be nice

Answers

Answer:

The HTML page code starts with <!Doctype html>, and it confirms the version of HTML you are coding in. Remember HTML 4.01 was based on SGML, and hence a reference to a DTD is required. However, HTML 5 is not based on SGML, and hence it is not required to refer to a DTD in that case. Also, Doctype is not a tag. Hence, the first tag used is the next in the list, and that is the head tag. It comprises of a title, meta keywords, meta description, styles if used any, and scripts. However, remember, in modern-day coding script is pasted at the last portion of a web page. And this is to ensure that the web page gets loaded once at least just in case the script does not gets loaded. However, style ( CSS, Bootstrap, etc) is part of the head tag only, and always. And finally comes the body. And in the body, we use all the popular HTML tags. The form tag is also a part of the body. Remember a form can be a GET or POST, and these are the two methods. Also, the action is used to set the URL where the data needs to be sent when the form is loaded. You should study Form tag deeply, and the rest of the tags are easy, and you should know how to add the styles and javascript functions to each of them. Also, knowledge of jQuery and JavaScript is a must these days.

Explanation:

A simplest of HTML code will look like:

<!DOCTYPE html>

<html>

<head>

<title>Title</title>

<meta charset="UTF-8">

<meta name="description" content="">

<meta name="keywords" content="">

<meta name="author" content="">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

</head>

<body>

The content

</body>

</html>

Remember viewport above is meant for making the page responsive, and we mention here width= device width, and this means it will set to the width of the device on which it is running. And there is a media tag in CSS, which we use for making the page responsive as well. Or else you can make use of Bootstrap. And initial scale sets the initial zoom level.

Which agency was the BBG a part of until September 1999?
O A. United States Information Agency
B.
Voice of America
C. Federal Communications Commission
D. Federal Radio Commission

Answers

Answer:

O A. United States Information Agency

Explanation:

The BBG was the part of the United States Information Agency till 1999. This is the affiliate relations and media training office. And it was headquartered in Washington DC.  Hence, the most appropriate answer out here, and in fact the correct option for this question is A., and which is United States Information Agency.

Which are emotional effects of anxiety? Check all that apply.
panic
worry
anger
nausea
headache

Answers

The emotional effects of anxiety are:

PanicWorryWhich are emotional effects of anxiety?

The Effects of anxiety on the state of mind of people are:

Tense feeling Nervousness, etc.

Note that The emotional effects of anxiety are Panic and Worry because humans tends to work when they are nervous or have anxiety.

Learn more about anxiety from

https://brainly.com/question/1754863

#SPJ2

Answer:

a, b, c

Explanation:

panic

worry

anger

2 negative impact of excessive use of computer even in solving mathematical problem.

Answers

Answer:

Computers are now a days the very important part of each department as well as homes. All people are somehow using computers for their respective needs. As technology always has the negative impacts along with the positive ones so, computer do have some crucial points when taking about students specially.

Following are listed some acts that add to the negativity of computer's usage.

Excess use of computers by students while solving mathematical problems lead them to rely totally on the computer. Students don't tend to calculate by their own instead they use computerized calculators for their ease and hence they start lacking even in basic calculations in normal routine also.Computers may impact students routine in such a way that they don't concentrate on their studies while having extreme interest in video games and their favorite seasons and other activities.Using computers more than a certain limit effects eyesight badly. This is the reason today most of the teenagers use spectacles in normal routine.

I hope it will help you!

Early electronic computing devices were:
O inexpensive.
o compact and lightweight.
o efficient in operation.
O manpower intensive.
DONE

Answers

Early electronic computing devices were: manpower intensive.

O manpower intensive.

Explanation:

Computing devices are the electronic gadgets that take inputs, process the information sources and afterward compute results from the data sources. Likewise, Early electronic processing gadgets were labor escalated on the grounds that the early PCs were made to figure a lot of number juggling information and count.

Alan Turing's PCs wafer mystery codes. PCs were utilized for reviews and logical assistance as well. Pascal was directed to build up a mini-computer by the arduous arithmetical figurings required by his dad's work as the manager of charges in Rouen, and so forth... So Early electronic registering gadgets were worried as labor concentrated.

match the following unit 6 terms with their descriptions

Answers

Answer:

what are the followin six terms

Explanation:

Answer:

I think is six terms

Explanation:

I don't know how to explain it, I need a notebook and teach you how to do it

what is the relationship between binary and modern technology

Answers

Answer:

Explanation:

Binary numbers are in our technology life, this is because the data in the cellphone, computer, printer, and on the internet are binary numbers, the data is represented in 0 and 1, only that is the binary numbers, people cannot see this numbers in their routines because these numbers are coded, for example, in mp3 or mp4 code, nowadays we hear about 8K resolution and artificial intelligence, and even these technologies are binary numbers.

Drag the tiles to the boxes to form correct pairs.
Match the devices to their functional requirements.
an overhead projector
a laptop
a computer
an external monitor
requires a CD-ROM drive to run presentation CDs
arrowRight
requires a port to connect to the laptop
arrowRight
requires an external monitor to project high-resolution images
arrowRight
requires slides to project images

Answers

Answer:

An overhead projector: requires slides to project images

A laptop: requires an external monitor to project high-resolution images

A computer: requires a CD-ROM drive to run presentation CDs

An external monitor: requires a port to connect to the laptop

Explanation:

The correct pair has been formed above. An overhead projector requires the slides for projecting images. A Laptop for projecting high-resolution images requires an external monitor. And a computer requires a CD-ROM drive for running presentation CDs, and an external monitor requires a port to a port which can be an HDMI port to connect to a laptop.

Answer:

an overhead projector-requires slides to project images

a laptop-requires an external monitor to  project high-resolution images

a computer-requires a CD-ROM drive  to run presentation CDs

an external monitor-requires a port to  connect to the laptop      

Joann wants to insert a table of contents to her document so readers can easily navigate to the different parts of her document.

Which option of Quick Parts does she use?

Answers

Answer:

d

Explanation:

edge 2020

Joann should use the "Table of Contents" option from the Quick Parts menu to insert a table of contents into her document.

What is Table of Contents

In Microsoft Word, the "Table of Contents" option in the Quick Parts menu helps users make a list to help them  find different parts of their document. This is how it works:

Joann must make sure she chooses the right heading styles for the different parts of her document in order to use the "Table of Contents" feature. These styles are called "Heading 1," "Heading 2," and so on. These styles make it easier for Word to organize the content in a specific order.

Read more about Table of Contents here:

https://brainly.com/question/1493356

#SPJ3

how to do pseudocode and flowchart in BMI ( computer programming ​

Answers

Answer:

You need to find out what is the units of measurement of the height and weight. You also need to find that the weight is in Kilogram or pounds, and whether the height is in feet and inches, or inches, or meters and centimeters.

Part1: You need to read the values of the weight and height, and validate it as required.

Part2: Now you need to convert those findings into English measures or metrics for computation.

Part3: Output: You need to display as well as echo the input as well as the BMI; and you need to mention the supplementary message which is based on the BMI findings related to Obesity, borderline overweight, normal and overweight, etc.

The program is as below:

import java.io. *;

class Main

{

// weight in pounds and heights are in inches

private double your_wght;

private double your_hght;

Main ( double ht, double wt)

{

your_wght = wt; your_hght = ht;

}

public double GetHght() { return(your_hght); }

public double GetWght() { return(your_wght); }

public double CalculBMI() { return(your_wght*703/(your_hght*your_hght)); }

public double PrintDouble( String promptMessage) throws IOException

{

double Num=0;

String x=null;

Console console = System.console();

System.out.print(promptMessage);  

x = console.readLine();  

Num = Double.parseDouble(x);

return(Num);  

}  

public static void main( String args[])

{

double heightinFeet=0,heightinInch=0,w=0;

Main Input = new Main(0,0);

try

{

System.out.println(" Please input the height(feet/inches) \n");

heightinFeet = Input.PrintDouble(" In feet :> ");

heightinInch = Input.PrintDouble(" In inches :> ");

w = Input.PrintDouble(" Please enter the weight(pounds) :>");

}

catch (IOException ex) { System.out.println("occurred Input Exception"); }  

Main BMI_value = new Main(heightinFeet*12+heightinInch,w);  

System.out.println(" Weight = " + BMI_value.GetWght() );  

System.out.println(" Height(inches) " + BMI_value.GetHght() );

System.out.println(" BMI is " + BMI_value.CalculBMI() );  

}

}

Explanation:

Rest of the fields and properties are self understood, however, PrintMessage needs explanation. It takes a string as input, which calls for entering some double value like in feet, and in inches, and returns that value, which is assigned to relevant double variable. And Main is the class with Main constructor, which is a parameterized constructor, and takes height and weight as input.

Which of the following skills do employers in any field expect their employees
to have?

Answers

Answer:

There are four options: and the letter B is the correct answer.

A. Ability to lift at least 30 pounds  

B. Ability to use word processing software  

C. Ability to use a cash register  

D. Ability to provide a healthy work environment

Explanation:

Nowadays the technology is part of our lives, even in our jobs, nowadays practically is necessary to know to manage some applications and software, for example, word to manage documents or excel to manage formulas, even in physical jobs people must know to manage those programs, and for people want to get a better job is necessary.  

What are the answers to everfi

Answers

Final answer:

The answers to Everfi exercises can be found in resources provided by Everfi, including answer keys, instructor guides, and student resources.

Explanation:

The answers to Everfi exercises can be found in resources provided by Everfi. These resources include answer keys, instructor guides, and student resources. Answer keys are often available at the end of the book or in the instructor resources. Students can also access resources such as Getting Started Guides and PowerPoint slides to supplement their learning.

IN YOUR OWN WORDS, create a new thread and compare and contrast paraphrasing, summarizing, and quoting and how to do each successfully.

Answers

Answer:

Such three ways to include the work of other writers in your own writing differ depending on whether you are close to the source.

Explanation:

Quotations must be the same as the original, using a narrow source segment. We must be word for word on the source document and the original author must be credited.

Paraphrasing means putting your own words into a line from the source material. The original source should also be assigned a paraphrase. Paraphrased material usually is shorter than the original one, which takes and slightly condenses a somewhat broader part of the source.

In summary, you have to put the main idea(s), including only the main point(s), in your own words. Again, summarized ideas must be attributed to the source. Summaries are much shorter than the original and give a broad overview of the source documents.

use the drop-down menus to complete statements about the quick steps function

Answers

Answer:

Quick Steps comes preconfigured, or you can

(✔ create a new one).

Quick Steps creates one-step commands for

(✔ multistep)

processes.

Clicking Create New opens the Manage Quick Steps

(✔ dialog box.)

Explanation:

edg 2021

Answer:

✔ create a new one

✔ multistep

✔ dialog box

Explanation:

hope this helps :)

What are the advantages of businesses using Twitter ?

Answers

Answer:Through Twitter, businesses can reach a larger target audience within their key demographics through the use of hashtags and applicable media.

Explanation:

<<
<
2
3
4
5
6
7
8
9
10
11
12
To include a hyperlink in a document, use the shortcut key combination
Alt+Ctrl+F
Alt+Ctrl+D
Alt+Shift they
Ctrl+K

Answers

Answer:

The Keyboard shortcut: Ctrl+K is almost always the default to include a link in an application

Explanation:

For example in Microsoft Word pressing Ctrl+K will open a window for you to type a link.

2.2 Write a program that uses input to prompt a user for their name and then
welcomes them. Note that input will pop up a dialog box. Enter Sarah in the pop-up
box when you are prompted so your output will match the desired output.
Check Code
Reset Code
i
Please correct your code and re-run.
# The code below almost works
WNH
3 name = input("sarah")
4 print("hello sarah").

Answers

Class hello Sarah{
Pubic static void(“hello Sarah”)
Name=input(“hello Sarah”)
Print(“hello Sarah”).

In this exercise, using the knowledge of computational language in python, we have that this code will be written as:

The code is in the attached image.

We can write the python  as:

Class hello Sarah{

Pubic static void(“hello Sarah”)

Name=input(“hello Sarah”)

Print(“hello Sarah”).

See more about python at brainly.com/question/13437928?

Which of the following scenarios could be considered "using music from a stock house supply?" (Select all that apply.)
a sound technician contacts A&M Record Company to buy the rights to use a music clip
a sound technician takes a music clip from a jazz band’s album purchased by the movie studio
a sound technician takes a music clip from Madonna’s first album from his own collection
a sound technician contacts A&M Record Company for a better recording of a music clip whose copyright is owned by the movie studio

Answers

Answer:

1, 3, and 4

Explanation:

Final answer:

None of the provided scenarios explicitly describe the use of music from a stock house supply, which is a pre-existing library of licensable music and sounds for media use. They mainly depict direct licensing or use of music for which the rights might not have been obtained from a stock music library.

Explanation:

The concept of "using music from a stock house supply" refers to the practice of accessing a pre-existing library or database of music that is available for legal use, typically in media production. This library is often stocked with a variety of sounds and music that have been pre-recorded (known as canned sounds) and are readily available for use under certain conditions, such as payment of royalties or licensing fees.

Now let's apply this understanding to the provided scenarios:

A sound technician contacting A&M Record Company to buy the rights to use a music clip does not necessarily indicate that the music is from a stock house supply, as it could be a specific track directly licensed from the record company.

Using a music clip from a jazz band’s album purchased by the movie studio may indicate that the studio has obtained the rights to use the music, but it's still not from a standard stock music library.

Taking a music clip from Madonna’s first album from a technician's own collection would constitute copyright infringement unless permission or appropriate licensing is obtained, and this is not an example of stock music use.

A sound technician contacting A&M Record Company for a better recording of a music clip whose copyright is owned by the movie studio is an internal affair to improve the audio quality but does not concern stock music.

In summary, none of the given scenarios outright suggest the use of music from a stock house supply, as they do not clearly involve a pre-existing music library specifically intended for media use.

Where can you place CSS statements in an HTML file?
You can place CSS statements within the
section.

Answers

The CSS statement are usually placed in the head section of our HTML file.

HTML and CSS

HTML is known as hypertext markup language and it is used to structure a web page and its content.

HTML describes the structure of a Web page

CSS is the language we use to style an HTML document. CSS describes how HTML elements should be displayed. CSS describes the colour, text structure, arrangement of our HTML.

The CSS statement are usually placed in the head section of our HTML document.

learn more on HTML/CSS here:https://brainly.com/question/14054531

#SPJ2

Where would be the best place to obtain a master's degree?

Answers

Answer:

Collage

Explanation:

It all depends on what your preferences are I want to be a vet so when I graduate I'm going to go to Texas state because they have a great vet program

Final answer:

Choosing the best place to obtain a master's degree requires considering personal educational goals and specific study areas. Online programs and traditional institutions both offer diverse options, like the award-winning GIS program at Penn State. Contacting universities directly and utilizing resources such as graduate rankings can assist in making an informed decision.

Explanation:

The best place to obtain a master's degree depends on your educational goals and the specific area of study you wish to pursue. Whether it is a traditional institution or an online program like the one at UMN for Parent and Family Ed, it is important to choose a school that aligns with your career aspirations and educational needs. For example, the Penn State Professional Masters Degree in GIS was recognized with the 2009 Sloan Consortium award for Most Outstanding Online Program, suggesting that some online programs can offer exceptional educational experiences.

If your interest lies in teacher certification, an alternative pathway might be through a master's degree program that allows you to work in a school while studying, as mentioned in the historical context of graduate programs which first emerged as Masters of Arts in Teaching (MAT) in the 1970s. Moreover, graduate economics rankings and resources provided by organizations like the American Economics Association can be invaluable when researching graduate degree program options in specific fields.

It's essential to consider different institutions for your advanced degrees, as this can offer a broader scope of education and potential opportunities. Remember to thoroughly research and engage with colleges or universities to understand the nuances of their graduate programs.

Compose one paragraph (three to four sentences) explaining the difference between a courtesy copy and a blind courtesy copy.

Answers

Answer:

Courtesy copy CC and Blind Courtesy Copy BCC are two terminology used in while sending email to someone/group of people.

Explanation:

When you send emails to a group of people.  While sending email there are two options carbon copy CC and Blind Carbon Copy Bcc. Those names are mentioned in CC are visible to all other recipients whereas those names/email addresses mentioned in BCC are not visible to anyone.

That means the receiver of email can see the CC recipients except for the BCC recipient. While CSS and BCC can't see the receiver reply.

Type the correct answer in the box. Spell the word correctly.
An online job portal asks you to upload your official photograph for better job matches. Which data type stores images and audio visual clips?
The
data type stores images and audio visual clips.
Reset
Next

Answers

Answer:

i think it is mp4

Explanation:

Final answer:

The data type that stores images and audio-visual clips is known as binary data or BLOB (Binary Large Object), which encodes the information into binary code for storage and processing.

Explanation:

The data type that stores images and audio-visual clips is commonly referred to as binary data or BLOB (Binary Large Object). When you upload your official photograph to an online job portal, the image file is stored in the form of binary data.

This type of data can include various formats like JPEG, PNG, GIF for images, and MP4, AVI for videos. Each format has a different way of encoding the graphical or audio-visual information into binary code that computers can store and process.

A social media application would most likely do which of the following?

Answers

The correct option is B.

A social media app primarily connects users with social and business contacts, fostering interactions and networking opportunities.

A social media application would most likely:

1. **B. Connect users with social and business contacts:** Social media platforms are primarily designed to facilitate connections between individuals, whether for personal or professional purposes. Users can interact, share updates, and build networks of friends, colleagues, and acquaintances.

2. A. Allow users to watch popular movies and TV shows: While some social media platforms may incorporate features for sharing or discussing media content, their primary function isn't centered around providing access to movies or TV shows.

3. C. Confirm users' travel plans: Confirming travel plans typically involves booking services or dedicated travel apps, not functionalities commonly found on social media platforms.

4. D. Teach users a new language: Language learning is typically facilitated through dedicated language learning apps or courses, not a primary feature of social media platforms.

The answer is Connect users with social and business contacts.

The complete question is here:

A social media application would most likely do which of the following? (6 points)

A. Allow users to watch popular movies and TV shows

B. Connect users with social and business contacts

C. Confirm users' travel plans

D. Teach users a new language

Picture an expensive item you’d LOVE to own. What would make you happier: Buying it NOW using credit/taking out a loan? Buying it LATER by saving up and paying cash? Why?

Answers

Answer:Buying Later

Explanation: Buying later would be the better choice because not only will you feel reawrded for working hard to get what you want but you also will not have to o throught the hassle of getting a loan. It may also be cheeper becuae many loans charge interest.

The Picture of what would make me much happier is Buying it later by saving up and paying cash.

Do one save more money paying cash?

Due to research that has been done, a person is likely to spend more when they pay for an item with credit than instead of cash.

With the use of cash on hand, a person is said to be limited in the amount one can spend, and a person will make different choices so as to save money.

Conclusively, By buying it later, one is free from the interest of buying with a loan.

Learn more about buying from

https://brainly.com/question/22054657

What is the process for creating a new merge document for address labels?

Answers

Answer:

- open a new document

- start mail merge and click labels

- click label options and select the correct type

- select the recipient file

- click arrange labels; insert and address block

Explanation:

right on edg

To create a merge document for address labels, open a new document, use the 'Mailings' tab to start a mail merge, select 'Labels,' choose your label vendor and product number, and insert merge fields before printing.

Creating a New Merge Document for Address Labels

To create a new merge document for address labels, you can follow these steps:

Open a new (blank) document. If you have a template available, you can use that as well.        

Go to the "Mailings" tab and click on "Start Mail Merge".Select "Labels" from the drop-down menu.Choose the appropriate label vendor and product number that matches your labels.Click "OK" to format your document for the labels.Click on "Select Recipients" and choose how you want to select your address list (e.g., by using an existing list or creating a new one).Click "Insert Merge Field" to insert fields for the recipient's name, address, etc., into the labels.Once all fields are inserted, click "Preview Results" to see how your labels will look.When satisfied, click "Finish & Merge" and select "Print Documents" to print your address labels.

Following these steps will ensure that your new merge document for address labels is correctly set up and ready for printing.

Other Questions
Cul es el papel de las fuentes de energias alternativas ( ejemplo, energia solar) en una comunidad del mundo hispanohablante que te sea familiar ? Compara el papel que tienen en una regin del mundo hispanohablante que sea familiar con el papel que tienen en tu comunidad o en otra comunidad? Heights of women are normally distributed with mean 63.7 inches and standard deviation 2.47 inches. Find the height that is the 10th percentile. Find the height that is the 80th percentile. Slang represents common and often overused phrases that are specific to cultures and languages. true or false What is the concentration of K+K+ in 0.15 MM of K2SK2S? Express your answer to one decimal place and include the appropriate units. Find the final price on a $1,049 televisionthat is on sale for 12% off of the sales tax is4.5% Read the dialogue and question and choose the option with the correct answer to the question.Caleb: Bienvenidos, amigos! Estoy feliz. Mi hermano va a comprar un perro. I've always wanted to have a dog. Pero a mis padres no les gustan los animales. He'll bring the dog over en la tarde, ahora tengo que ordenar la casa del perro. Hasta maana, amigos!Soli: Caleb, qu pasa con tu madre?Caleb: Hola, Soli! Mi madre is angry porque mi hermano va a comprar un perro. Mi madre no quiere limpiar you know if el perro has an "accident."Soli: Uh-oh ok. Mi abuelo Luis tiene un perro negro. El perro se llama Peluche. That means plush toy. When Peluche was un cachorro, he looked like a plush toy. Ahora, Peluche es un perro gordo y feo.Caleb: Nosotros tenemos un pez, se llama Sparky. It was a gift de mi prima hermana, Claritza. We always wanted a dog, but couldn't have one, so we named him Sparky.Soli: Ay, Caleb! I will tell Sparky su historia. Next time you feed him he might bite you. Ja!Based on the dialogue, what's a concern for Caleb? Which of the following is not an advantage of a price-based system?prices can easily be set by the governmentprices act as signals for buyers and sellersprices act as an incentive for buyers and sellersprices are flexible A Lake Tahoe Community College instructor is interested in the mean number of days Lake Tahoe Community College math students are absent from class during a quarter. The instructor takes her sample by gathering data on five randomly selected students from each Lake Tahoe Community College math class. Which type of sampling did she use? Words that start with oct Find the area of the parallelogram that has adjacent sides Bold u equals Bold i minus 2 Bold j plus 2 Bold kand Bold v equals 3 Bold j minus Bold k. there are 5 pink shirts and 9 green shirts. If there are 27 green shirts,how many pink shirts are there? What is the missing reason in the proof?Given: ABC is a right angle, DBC is a straight angleProve: ABC ABDA horizontal line has points D, B, C. A line extends vertically from point B to point A. Angle A B C is a right angle.A 2-column table has 8 rows. The first column is labeled Statements with entries angle A B C is a right angle, angle D B C is a straight angle, m angle A B C = 90 degrees, m angle D B C = 180 degrees, m angle A B D + m angle A B C = m angle D B C, m angle A B D + 90 degrees = 180 degrees, m angle A B D = 90 degrees, angle A B C is-congruent-to angle A B D. The second column is labeled Reasons with entries, given, given, definition of right angle, definition of straight angle, angle addition property, substitution property, subtraction property, and question mark.definition of angle bisectorsegment addition propertydefinition of congruent anglestransitive property Read the Sentence. Over the course of one's lifetime, we can expect to eat an average of seventy insects. Which statement best describes this sentence? In the context of this sentence, what word would be an antonym of the term "contemplation"?A)disregardB)favorC)marvelD)study jake made some tarts. He sold 3/5 of them and gave 1/4 of the remainder to his friends. If he had 150 tarts left, how many did he sell? What country controlled the colonies before independence In the United states _______Is the best technique to get straight to the point and quickly identify the main idea of a text.-Summarizing-Paraphrasing-Quoting What can the Performance Planner assist you with? A. To create an optimized copy of your existing campaign, so that it can be tested with the drafts and experiments tool B. To determine which Google Ads features should be enabled to get the best performance from your campaigns C. To improve return on investment so you can drive more conversions within your target CPA (cost-per-acquisition) D. To analyze the search term report and add both keywords and negative keywords, depending on historical performance Find 987 divided by 47 using the most efficient strategy you can. Show your work Which of the following is a similarity between goods and services? Question 21 options: A) mass production B) Both have quality standards. C) Both can usually be kept in inventory. D) automation E) consistency