Identifying Responses and Replies
Use the drop-down menus to complete the sentences about message response options in Outlook.
v sends your response to everyone who received the initial email.
v creates a new message that includes the initial message to a new recipient.
v sends your response to only the sender of the initial message.

Answers

Answer 1

Answer:

Identifying Responses and Replies by using the drop-down menus to complete the sentences about message response is written below in detail.

Explanation:

A situation like this may be:

Someone receives a bike. They travel it and all, and then all of an unexpected they fall and get injured

If you only understood the first section of how the person received a bike when you draft a response, you would only draft about that piece, but getting harm after receiving the bike is also a huge portion of the "story". You could draft like how you were so pleased when you received your first bike, but you wouldn't remember to address the time you got injured when you were riding down a hill or something.

Answer 2

Answer:

Reply All

Forward

Reply

Explanation:


Related Questions

1 point
Which of the following best describes the purpose of a design
specification?
help plssss!

Answers

...You didn’t say what the choices are

You are embedding a video in your Webpage. What three formats should you specify in the source
element to ensure that most browsers and devices can access your video?
a
b
MP4, MP3 and Wav
WebM, Ogg and Wav
MP4, MP3 and Ogs
MP4, WebM and Ogg
с
d
Next Page
Back

Answers

Answer:

d

Explanation:

Use the drop-down menus to complete the steps to open the Lookup Wizard.

1. Open the table in ___
view.

2. Click in the ___
column of the desired field.

3. Click the ___
, and then click Lookup Wizard.

Answers

Answer: 1. design view 2. data type 3. arrow

Explanation:

I just did it :)

HEEEEELPPP!!!BRAINLIEST!!! THIS IS URGENT!!!

Read the following code:

count in range(80):
leo.forward(count * 2)
leo.left(count + 2)

There is an error in the for loop. What should be fixed?

Add a colon to the end of the statement
Begin the statement with the proper keyword to start the loop
Place the loop condition outside the parentheses
Replace the parentheses around the range with quotation marks

Answers

Answer:

Begin the statement with the proper keyword to start the loop

Explanation:

Given

The code segment

Required

Fix the code

The first line of the code segment is meant to be a for loop, but it does follow the right syntax.

This is so because the for keyword is missing.

The first line should be corrected and replaced with:

for count in range(80):

Hence, option (b) is correct

please help me
...
.... ​

Answers

Answer:

formal information searches

Explanation:

Answer:

informal information source

hope it will help if it helps please ask me in comment

In the Business world people are often measured by their???

A- soft skills
B- hobbies
C- iq
D- technical skills

Answers

Answer: D technical skills

Please help w/ Java, ASAP!!!!

Answers

Answer:

B

Explanation:

When you have a method that is copying values from one array into another, you first have to initialize a new array which you can copy the values into. This is done by using the provided value "count".

   int [ ] nums = new int [count];

Second, you have a "for each" loop that iterates over each index in the first array, and assigns the value at that index to the same index location in the copy array. In a "for each" loop, the variable "val" represents the content of an index, not an iterated value itself. This is why we can just do this inside the loop:

  nums[ j ] = val;

That said, you still need "j" to be there and increment because we still need a tracking value for the current index in the copy array.

   int j = 0;

   for (int val: array)

   {

     copyArray[j] = val;

    j++;

   }

Third, you return the copy version of the array.

return nums;

Source:

I am currently a second year Java student.

So my teacher asked us to predict who would win in a death match, and we could choose the two characters, so Alastor from Hazbin Hotel vs Blackhat from villinous, who would win?

Answers

Answer:

I think alastor from Hazbin Hotel.

Answer:

alastor

Explanation:

i mean alastor is a demon and blackhat we dont know if he is a demon or not but i mean alastor would win he took down a flying ship that was trying to kill them

Megan wants to post a picture of her and her friend Jennifer on her social media page. What should Megan do before she posts the picture?

A. Add a caption.
B. Ask her friend for permission.
C. Make sure she looks good.
D. Edit the picture using Photoshop.

Answers

Answer:

B. Ask her friend for permission.

Explanation:

Answer: B ask her friend for permission

hope you do good on the test or quiz.. it would mean alot to be brainlEst

QBasic commands any 10 with examples

Answers

Answer:

I haven't used qbasic in a quarter of a century, so my apologies if any of these are outdated.

I listed 13 here as I don't know what are being qualified as "commands" (I'm sure print is in there, but INT? LEN? these might be interpreted not so much as commands as functions)

PRINT prints text on the screen.

PRINT "How much wood would a woodcuhck chuck?"

INPUT gets text from the user

INPUT woodchuckwood$

INT casts a value as an integer

w = INT(woodchuckwood)

OPEN opens a file for input/output

OPEN "woodchuck.consumption" FOR OUTPUT AS #f

OPEN "woodchuck.consumption" FOR INPUT AS #f

CLS clears the screen

CLS

LOCATE specifies the cursor's location on the screen

LOCATE 10, 10

INKEY$ reads a character from the input buffer

a$ = INKEY$

LEN returns the length of a string

l = LEN(a$)

CHR$ takes an int and returns it's ascii value

$enter = CHR$(13)

ASC() returns the ascii value of a character:

$space = ASC(" ")

DO...LOOP repeats a loop until a condition is met:

x = 0

DO

   x = x + 1

LOOP UNTIL x = 10

SHARED declares global values as being accessible locally

SHARED $username

SHELL executes an os command

SHELL "dir /w"

When comparing systems software and application software, what is the main difference?

Answers

Answer:

it is a

Explanation:

i did the test

Giving 5 stars, a Thanks, 80 points, and Branliest to whoever answers them correctly.
What refers to how a game’s player shapes what happens in their own personal game experience by making choices on how they play?
Group of answer choices

pseudostory

metagame

ludonarrative

iambic pentameter

Answers

Answer:

Explanation:

The answer is ludonarrative.

Please mark me brainliest.

edhesive 6.8 lesson practice answers please ​

Answers

Answer: any more info yo can give me. i want to help i dont undestand

Explanation:

Answer:

import simplegui

import random

# global constants

WIDTH = 600

HEIGHT = 400

PARTICLE_RADIUS = 5

COLOR_LIST = ["Red", "Green", "Blue", "White"]

DIRECTION_LIST = [[1,0], [0, 1], [-1, 0], [0, -1]]

# definition of Particle class

class Particle:

  # initializer for particles

  def __init__(self, position, color):

      self.position = position

      self.color = color

  # method that updates position of a particle    

  def move(self, offset):

      self.position[0] += offset[0]

      self.position[1] += offset[1]

  # draw method for particles

  def draw(self, canvas):

      canvas.draw_circle(self.position, PARTICLE_RADIUS, 1, self.color, self.color)

  # string method for particles

  def __str__(self):

      return "Particle with position = " + str(self.position) + " and color = " + self.color

# draw handler

def draw(canvas):

  for p in particle_list:

      p.move(random.choice(DIRECTION_LIST))

  for p in particle_list:

      p.draw(canvas)

# create frame and register draw handler

frame = simplegui.create_frame("Particle simulator", WIDTH, HEIGHT)

frame.set_draw_handler(draw)

# create a list of particles

particle_list = []

for i in range(100):

  p = Particle([WIDTH / 2, HEIGHT / 2], random.choice(COLOR_LIST))

  particle_list.append(p)

# start frame

frame.start()

Explanation:

How much mail can be
stored in each mail box?​

Answers

Answer:

Most mailboxes are 1 - 4 GB with one or two larger.

Explanation:

How Much did a case of soda (any kind your choice ) cost in 2004?
PLS HELP!!!!!!

Answers

Answer:

2004 88 cents for 2 cans

Explanation:

NEED ASAP.


Which multimedia feature can be used to automatically move objects in your slides?
X transition
O animation
O clipart
O innovation

Answers

Animationnnnnnnnnnnnn
Animation or clip art!!

a man takes 30 step to cover 18 metre l,how many step he will needed to cover 3003m distance​

Answers

he will need to take 5,004 steps to cover 3003m distance
3003/18=166.8
166.8 x 30=5004
Answer is 5004

Describe advantages and disadvantages for microprocessor controlled devices in the household.
(4) point form pls

Answers

1.Easier actions 2.Time saving 3.Money saving 4.Energy saving

Merle wants to change the formatting of all bold cells to be non-bolded. Shania wants to copy the cell color,
border, and font from cell E12 to all of column D. Which best describes what each person should do?

A. Merle should use Find and Replace, and Shania should use the Format Painter.

B.Merle should use the Rules Manager, and Shania should use Find and Replace.

C.Merle should use the Format Painter, and Shania should use the Rules Manager.

D. Merle should use the Format Painter, and Shania should use Find and Replace.

Answers

Answer:

Merle should use Find and Replace, and Shania should use the Format Painter.

Explanation:

It's the most logical to me.. And that's what I'm gonna do on my test. =) hope it helps.

Where does the revolver get the IP address of a site not visited before?

the file server

the name server

the IP provider

the print spooler

Answers

Answer: The name server

Explanation:

Nameservers are part of a large database called the Domain Name System (DNS), which acts like a directory for devices and the IP addresses attached to them. What nameservers do is use this information to translate domain names into numerical IP addresses – the language our computers understand

A flashing symbol that allows you to input text.

A. Cursor

B. Mouse

C. Search Engine

D. Text Box

Answers

The correct answer is A. Cursor

Answer:

A. Cursor.

Explanation:

If you read the answer choices carefully, none of them fit in with the "flashing symbol" category, even though some of them might allow you to input text. However, you have used a computer before to type out text, just like how you typed this question to Brainly. Therefore, you should also know how a cursor acts. It flashes and allows you to input text as well.

Therefore, A is the correct answer to this question.

Hope this helped!

~Jinachi~

Allows input/output of audio info to and from the computer.

A. Central Processing Unit

B. Sound Card

C. Video Card

D. Audio Player

Answers

Answer:

sound card

.............

which devices is not found in the CPU​

Answers

Plz answer my question

The devices that is not found in the CPU​ is printer. The correct option is D.

What is CPU?

A central processing unit, sometimes known as a CPU, is a piece of electronic equipment that executes commands from software, enabling a computer or other device to carry out its functions.

The part of a computer that obtains and executes instructions is called the central processing unit (CPU).

A CAD system's CPU can be thought of as its brain. It is made up of a control unit, a number of registers, and an arithmetic and logic unit (ALU). The term "processor" is frequently used to refer to the CPU.

The size, speed, sophistication, and price of a printer varies. It is a device that receives text and graphic output from a computer and transmits the information to paper.

Thus, the correct option is D.

For more details regarding CPU, visit:

https://brainly.com/question/16254036

#SPJ6

Your question seems incomplete, the missing options are:

a. ALU

b. Control Unit

c. Instruction register

d. Printer

An application's certificate indicates the application -
A is regularly updated
B cannot be removed
C is installed
D is authentic

Answers

Answer:

D. is authentic

Explanation:

Authentication can be defined as the process of verifying the identity of an individual or electronic device. Authentication work based on the principle (framework) of matching an incoming request from a user or electronic device to a set of uniquely defined credentials.

Basically, authentication ensures a user is truly who he or she claims to be, as well as confirm that an electronic device is valid through the process of verification.

Biometrics, smart cards, digital certificates, and picture passwords are various methods that can be used to perform an authentication.

Hence, an application's certificate indicates the application is authentic. These certificates are generally referred to as digital certificates.

When an end user installs a software application or program, the computer or mobile device would automatically verify the digital signature contained in the software. If the authentication process is successful, the software would be installed. Else, the installation process would be terminated.

HELP ASAP!!! What portfolio document is most likely to speak of your soft skills?
cover letter
transcript
recommendations
resume

Answers

Answer: resume

Explanation:

Answer:

recommendations was the right answer

Explanation:

define input hardware​

Answers

It’s a piece of hardware (you can touch it) that changes something on the screen. Examples are a keyboard putting letters on the screen or a mouse moving the cursor

describe a tsunami when it is far from the coast

Answers

I hope it is helpful for you ......

Mark me as Brainliest ......

Tsunamis are marine phenomena, created by the abrupt displacement of large amounts of water into an aquatic formation. Tsunamis manifest as waves, which travel in the deep waters of the oceans at an average speed of 756 kilometers per hour.

While in deep water the tsunami, due to its characteristics there, is not considered a serious danger to the floating structures, reaching the shores has particularly devastating consequences.

Learn more in https://brainly.com/question/15964056

Which one of these is NOT a function of an operating system? *

Managing computer hardware
Managing computer software
Allowing humans to talk to the computer
Performing quick calculations

Answers

Answer:

Allowing humans to talk to the computer

Explanation:

the operating system manages the computer hardware and software

and it also allows the ALU to perform quick calculations

Which word best describes the feeling you have when you are in the learning zone?

A. Comfortable
B. Accomplished
C. Unsure
D. Agitated

Answers

Explanation:

This is probably something like a feedback form

but I feel unsure/comfortable

Answer: Accomplished

Explanation:

In which TWO cases would you need to format a cell in a spreadsheet that contains a number? to make sure a formula includes it in calculations to change its appearance to make it easy to visually locate it to ensure no-one can use the number in calculations to ensure no-one can hide the column that contains it

Answers

Answer:

to make sure a formula includes it in calculations to change its appearance to make it easy to visually locate it

Explanation:

Microsoft Excel is a spreadsheet application used for data analysis and visualization. The worksheet of the excel file is tabular with rows and columns. A single block of the worksheet is called a cell and holds a single item located by the row and column label.

The particular cell can be referenced in a formula using the absolute reference operator '$' with the syntax "$column-label $ row-number". The background of the cells can also be formatted to have a different color.

Other Questions
Can you help plzzz thank you In an ionic compound, the negative and positive ions are held together by __________. In Bacon's Rebellion, Nathaniel Bacon was primarily angry at the governmentA. slave lawsB.high taxes on teaC.Restrictions on cotton productionD. Not protecting the colonist from Native Americans A company that makes hair-care products had 400 people try a new shampoo. Of the 400 people, 16 had a mild allergic reaction. What percent of the people had a mild allergic reaction? Which lines in this excerpt from Shakespeares Romeo and Juliet best develop the theme of fate and free will?-----------------------------------------------------------------------------------------LADY CAPULET: What say you? can you love the gentleman?This night you shall behold him at our feast;Read o'er the volume of young Paris' face,-----------------------------------------------------------------------------------------And see how one another lends contentAnd what obscured in this fair volume liesFind written in the margent of his eyes.-----------------------------------------------------------------------------------------That book in many's eyes doth share the glory,That in gold clasps locks in the golden story;So shall you share all that he doth possess,By having him, making yourself no less.-----------------------------------------------------------------------------------------JULIET: I'll look to like, if looking liking move:But no more deep will I endart mine eyeThan your consent gives strength to make it fly. Please help me! Im begging you Ill mark you brainly! I need it by now The federal government must often balance protecting individual liberties and providing for order and security. At times, priority is given to one over the other. Take a position on whether the federal government should place more emphasis on protecting individual liberties or providing for order and security. Use at least one piece of evidence from one of the following foundational documents: a. The First Amendment of the United States Constitution b. The Fourth Amendment of the United States Constitution c. The Necessary and Proper Clause In your response you should do the following: a. Respond to the prompt with a defensible claim or thesis that establishes a line of reasoning. b. Support your claim with at least TWO pieces of specific and relevant evidence. One piece of evidence must come from one of the foundational documents listed above. A second piece of evidence can come from any other foundational document not used as your first piece of evidence, or it may come from your knowledge of course concepts. c. Use reasoning to explain why your evidence supports your claim or thesis. A square target is shown. A dart is dropped randomly onto the target. The dart is equally kely to hit any spot on the target18 cm3 cm18 cm3 cmnot drawn to scaleWhat is the probability that the dart will hit a spot in the shaded square?ochD human blood has pH of 7.4. how do buffers in the blood affect pH? A car was bought for $20,000 and has depreciated at a rate of 10% yearly. Find the price of the car 8 years later. List the types of vessels in the order a drop of blood would flow through in the in the systemic circulatory route beginning with the aorta. which come first capillary, vein , artery, venule, arteriole. In anatomy HELPP ME I JUST HAVE A 67 IF I GET THIS ONE WORN GI HAVE A 50 AS A GRADE PLEASEE Complete the statement.The speed of sound is directly affected by the temperature of the medium. The hotter the medium the (1.)_______ the sound travels. Heat,just like sound, is a form of kinetic energy. At higher temperatures, particles have (2.)______ energy (kinetic) and thus, vibrate (3.)_______. And when particles vibrate faster, there will be (4.)_______ collisions per unit time. With more collisions per unit time, (5.)______ is transferred more efficiently resulting in sound traveling quickly. At 0C, the speed of sound in air is (6.)________ m/s. The speed of sound is dependent on temperature of the medium where an increase isobserved with an (7.)________ in temperature. Specifically, the speed of sound increases by (8.)_________ m/s with every increase of 1.0C On the other hand, when sound propagates in air where the temperature changes with altitude, sound bends towards the (9.)________ region. In this case, refraction happens. The refraction is due to the different refractive indices of air because of the difference in (10.)_______. Mr. Clark sold 280 bags of chips and 415 bottles of juice in 5 days. At this rate, Mr. Clark will sell bottles of juice in 12 days. The sum of four consecutive integers is -26. What are the integers? A book has pases. An atom of cadmium that has 66 neutrons has a mass number of Which of these statements from "The Bet" shows that the banker has changed at the end of the story?A. "The banker, spoilt and frivolous, with millions beyond his reckoning, was delighted at the bet."B. "The old banker was walking up and down his study remembering how, fifteen years before, he had given a party one autumn evening."C. "At no other time, even when he had lost heavily on the Stock Exchange, had he [the banker] felt so great a contempt for himself."D. "It's not true! I'll bet you two millions [rublesabout $66,000] you wouldn't stay in solitary confinement for five years.""The banker went at once with the servants to the lodge and made sure of the flight of his prisoner."PLEASE HELP ASAP! I'LL MARK BRAINLIST what is the explicit rule for 64,67,70,73,76 Which has the greatest variance?{5,5,5,5,5){1, 1, 1, 1, 21){1,3,5,7,9){3,4,5,6,7) Could I plz have help of this