Carol typed a memo to send to everyone in her department. To create this memo, she used a _____. spreadsheet word processor fax machine projector

Answers

Answer 1
Answer: You would definitely use a word processor to type up a memo.
Answer 2
Answer:

Answer

word processor

Explanation:


Related Questions

A statement describing both the requirements that must be met by a product or process amd the ways in which satisfaction of the requirements will be measured is called a/n
When pasting a circle drawn by the presentation software drawing tool into a spreadsheet, that circle will go into the selected cell in the spreadsheet.(Points : 2) True False
You manage a single domain named widgets. Organizational units (OUs) have been created for each company department. User and computer accounts have been moved into their corresponding OUs. You define a password and account lockout policy for the domain. However, members of the Directors OU want to enforce longer passwords than are required for the rest of the users. You would like to define a granular password policy for these users. Which tool should you use
What part of the computer can translate the words from the instructions into bit patterns the chip can understand?
PLEASE ASAP!!Network risk analysts typically have a college or university degree in psychology or sociology.True or False

What is the least effective way to create balance and flow in your life?

Answers

Act on your emotions in the moment instead of thinking about them.

Which of the following is NOT a factor to consider when selecting the amount of life insurance to purchase?a. The amount of money your dependents would need to maintain their current lifestyle
c. The amount of money needed to pay for burial costs and unpaid debts
b. The ease with which you can adjust your policy
d. Any additional sources of income that would be available to your dependents

Answers

The answer is (d.) Any additional sources of income that would be available to your dependents 

There is no relevance in your purchased insurance and the additional source of income. There are are many factors to consider when buying a life insurance. This includes the amount of money your dependents would receive to support their living. Also, the amount of money to receive for the burial. Lastly, the insurance must be flexible.

What is a network?a. Any network without a central file server and in which all computers in the network have access to the public files located on all other workstations.

b. A computer that is designed to request information from a server

c. Enables the transmission of data over public or private networks A communications, data exchange, and resource-sharing system created by linking

d. two or more computers and establishing standards, or protocols, so that they can work together

Answers

Answer:

D

Explanation:

two or more computers and establishing standards, or protocols, so that they can work together

What will the following code display? dct = {'January':1, 'February':2, 'March':3} print(dct['February'])​

Answers

Answer:

The code will display 2.

Explanation:

dct is a dictionary with 3 indexes; January, February, and March. print(dct['February']) gets the value at index 'February', which is 2, as shown in the initialization of dct.

You are working from home and want to discuss a controversial topic. It is important you see the facial expressions of your coworkers during the meeting. The best way to conduct this meeting is using _______.

Answers

Answer:teleconference

Explanation:

‍♀️

Answer:

Maintaing Focus and keeping the meeting comfortable and moving.

Explanation:

Consider the following code snippet: public class Vehicle { private String type; private int numAxles; public Vehicle(String vehicleType, int VehicleAxles) { . . . } public Vehicle(String vehicleType) { . . . } } What is wrong with this code?

Answers

Answer:

class Vehicle

{

private:             //should be declared once

string type;      //should be small as C++ is case sensitive

int numAxles;  

public:             //should be declared once

Vehicle ( string vehicleTypes, int VehicleAxles);    \\s should be small as C++ is        case sensitive and it is a parametarised constructor  

Vehicle (string vehicleType, int b);    //s should be small as C++ is case sensitive and now this is also a parametarised constructor

};        //a class ends with }: not with }

Explanation:

There are two constructors in this piece of code. The first constructor was parametrised while the second only had one argument. The second constructor should have 2 arguments like the first construtor or it should be empty. I've passed another argument to the second constructor. Moreover, the class ends with }; not with } and as we know C++ is case sensitive language so, declare the reserved keywords with small letters.