If you want to remove meeting responses from your inbox but still want to see tracking options, what should you do? Turn off all meeting responses in the Calendar options. Sort and delete the meeting responses from your inbox. Change the Calendar view to a side-by-side comparison. Create a tracking rule that moves responses to a new folder.

Answers

Answer 1

Answer:

its D. create a tracking rule that moves responses to a new folder.

Explanation:

i just got the answer right on edge 2020.

Answer 2

Answer: In the image below

Explanation:

If You Want To Remove Meeting Responses From Your Inbox But Still Want To See Tracking Options, What

Related Questions

Plz I’ll mark Brainliest
When programming, why should you frequently save your work?
O
to check for errors

O so your work won't get lost if you have a computer problem

O to distinguish your
project from other projects

O to keep your categories separated logically

I’m leaning toward B.

Answers

Answer:

It's B cuz if somehow the power went off your work won't be saved. So it's best to save your work frequently.

When entering a function or formula in a cell, which is the first character
you must type? *
1 poil
the equals sign (=)
the plus sign (+)
a comma (1)
the letter f

Answers

Answer:

B

Explanation:

Jim lost his job due to the replacement of robots in a manufacturing factory. As an ethical practice, what should the manufacturing factory do?

As an ethical practice, the manufacturing factory should provide alternative ____
to Jim.

Answers

An alternative
“position”

Question is on the picture thank you

Answers

I've included the spin and main method. I also included the public class. You can just ignore everything besides the spin method.

who is the impostor​

Answers

Red is sus. I saw him vent!!!!!!!!!
The imposter is Yellow he is always sus

What is a good way to become a game developer without spending a lot of money?

Answers

Answer:

Codes

Explanation:

learn the codes first. when you're already expert, you'll find ways from there.

Which of the following lines correctly defines a String variable

A. String s = aplus;
B. s = "aplus";
C. String s = "aplus";
D. String = "aplus";
E. String;

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

The correct answer to this question is C i.e. String s = "apluse";

The rule or syntax of declaring string in any programming language is given below:

String variable-name = "yourString";

For declaring string variable, first, you write "String" that is a keyword of a programming languages for declaring string variables, such as int before the variable name for declaring integer variable. Then, you need to write a meaningful name of the string as a variable. After string variable name, you need to put the equal operator and then write the string in double quotation("") marks and after that put the instruction terminator that is ";".

So, according to this syntax, option C is correct.

While other options are not correct because:

In option a, string is not encapsulated in double quotation. Option B does not have varaible type such as String and Option E does not have variable name and its value also. So, only option C is correct and all other except C are incorrect.

Help, please! I will mark as brainliest

Answers

Answer:

Change line 7 to:

for( int i=0; i < names.length; i++)

Last element in the array is one less than the length, ie:

stArr1.length - 1

To print every other value, you replace index++ with index += 2

Explanation:

Not only should you change the <= into <, but also i should start at 0, not 1. The first element of an array has index 0.

When a recipient responds to a meeting request, which statement most accurate descries what occurs?
O The meeting is confirmed, and the time is shown as Busy on the recipient's calendar.
O The meeting is confirmed, and the time is shown as Free on the recipient's calendar.
O The meeting request is removed from the inbox, the meeting is confirmed, and the time is shown as Busy on
the recipient's calendar.
O Nothing occurs because a recipient does not need to respond to a meeting request.

Answers

Answer:

I believe the answer is: O Nothing occurs because a recipient does not need to respond to a meeting request.

Explanation:

Well, it's true. I've got a response from a meeting request and it was irrelevant, so nothing would be happening.

Sorry for the delayed response, hope this helps :)

The meeting request is removed from the inbox, the meeting is confirmed, and the time is shown as Busy on the recipient's calendar. Thus, option C is correct.

What happens when one can request for meeting on Microsoft Outlook?

Upon acceptance of a meeting request on Microsoft Outlook, the schedule is added to your calendar, and the time period is displayed as busy, while the email invite is deleted from your email.

The following steps are required when it is desired to retain meeting requests and store them within the email or a subfolder for future references

1) Click on the Tools menu

2) Click on Options in the Tools Menu

3) Click E-mail Options in the Options menu

4) Click on Advanced E-mail Options  and

5) Uncheck the Delete meeting request from Inbox when responding.

The meeting request is removed from the inbox, the meeting is confirmed, and the time is shown as Busy on the recipient's calendar. Nothing occurs because a recipient does not need to respond to a meeting request.

Therefore, The meeting request is removed from the inbox, the meeting is confirmed, and the time is shown as Busy on the recipient's calendar. Thus, option C is correct.

Learn more about meeting request on:

https://brainly.com/question/2931702

#SPJ6

write a program to print the smallest number among three numbers ​

Answers

Answer:

min(a_list)

sort(a_list); a_list[0]

if this is cheating use conditionals, PYTHON

Micheal is the project manager in a company. He wants his organization to use technology for higher revenue and productivity. What should Micheals company do?

Answers

Answer:

For higher revenue, the mamagement of income, discounts and all financial matters whereby the use of technology can help by installing a

BUSINESS APPLICATION

PLEASE HURRY!!!
Look at the image below

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

In this question, the given code is :

def divide(numA,numB):

  quotient = numA/numB

  return quotient

#the main part of your program that calls the function

numC=40

numD=5

answer=divide(numC,numD)

print("Quotient", answer)

print (numA)        

The variable numA scope is local to divide function.

Because you can not access this variable outside of the divide function. All other variables such as numB and quotient also local variables of the divide function. These variables can not be accessible outside the divide function.

This is using python.
Assuming all the variables are non-zero.

Which lines of code will assign the discriminant the value b2−4ac? Select 2 options.


discriminant = bb - 4ac

discriminant = b * b - 4 * a * c

discriminant = b ^ 2 - 4ac

discriminant = b ** 2 - 4 * a * c

discriminant = b ^ 2 - 4 * a * c

Answers

Answer:

discriminant = b * b - 4 * a * c

discriminant = b ** 2 - 4 * a * c

Explanation:

The operands are correct and in the right order (for python).

** is the operand for squaring something.

* is the operand for multiplying something.

- is the operand for subtracting something.

Let's take a look at these examples individually.

discriminant = bb - 4ac. You have to use the * sign so the computer understands that you're trying to multiply two objects together.

discriminant = b * b - 4 * a * c. This example works because it's using the * where it's appropriate.

discriminant = b ^ 2 - 4ac. In python we don't use the ^ sign. To use exponents, we use **. Also, there is no * sign in between 4, a, and c.

discriminant =  b ** 2 - 4 * a * c. This example works because it uses the ** and * sign where appropriate.

discriminant = b ^ 2 - 4 * a * c. This example uses the ^ sign and python does not support it.

Information posted online can be deleted in some cases, but why would it be difficult to know if it is really gone?
It can always come back on to your account because of common computer errors.
It is impossible to know if it has been copied or contained in a screenshot by others.
For many social media services deleting does not remove it, just makes it invisible.
It is illegal in most countries to delete certain personal information online.

Answers

Answer:

b

I need I Brainliest

Bank of America sends out customer surveys to all of its customers asking them about the services they offer. What type of research are they performing?

Answers

Answer:

Market research

Explanation:

Market research: The term "market research" is described as a process of describing the viability of a new product or service via specific research that is being conducted directly with the different potential customers. Therefore, market research allows a specific company to discover or identify the target market and receive opinions and some other feedback from various consumers regarding their interest associated with the service or the product.

In the question above, the given statement represents market research.

Which method is used to edit a function that has been created and inserted into a cell?
O Double-click the cell containing the function, and make amendments to the function within the cell.
O Click the cell containing the function, and click in the Formula Bar to make amendments to the function.
O Click the cell containing the function, and click on the fx symbol to the left of the Formula Bar to launch the
Function Arguments dialog box where amendments can be made.
O All of the above methods can be used to edit a function that has already been inserted into a cell.

Answers

Answer:

ITS D

Explanation:

I got on excel and tested all of them.

(they all work)

The methods used to edit a function is that all of the above listed methods can be used to edit a function that has already been inserted into a cell.

What is computer function?

The functions of a computer is known to be any kind of  task that a system does. It can be taking data or processing, etc.

Conclusively, Note that all of the above listed options can be used as a method in the editing of a function that has already been inserted into a cell as they are all correct.

Learn more about function from

https://brainly.com/question/179886

Answer the crosswords for brainliest and 30

I really need help here get 30 points and brainliest

Answers

Answer:

6:width

Explanation:

what kind of crossword computer srry i did not mean take ur points I don't use them

Track Ball
which past of the computer is responsible
for processing informatfón and making calculation​

Answers

Answer:

central processing unit

SOMEONE PLEASE HELP ME OUT !!!!!!

Answers

Answer:

not completly sure but i believe its the one that says inform the coach of where the goalies weak area...

Explanation:

The concept of "plug and play" is demonstrated by which of the following
scenarios?

Answers

Answer:

Farah has completed a post-secondary education program and is now ready to begin working, without additional training, on her first day .

Explanation:  HoPe ThIs HeLpS

Use the drop-down menus to complete statements that describe SmartArt categories.


Information that does not need to be shown sequentially can be displayed as a_
A _shows a continuous process.


The way various elements in a system interconnect can be shown as a_


A _ displays different elements according to importance or size.
i did this because we don't have a lot of answers for computer classes I know the answers no need to answer

Answers

Answer:

List, Cycle, Relationship, Pyramid.

Explanation:

100%

Activity Compare and contrast the features of the four computer career fields. Write a paragraph on each and specify how the four career options differ from each other, and explain how they are similar to each other. For your research, you can browse through the Bureau of Labor Statistics ​

Answers

Answer:

Socratic app it will be over in

Mathematics and computer science share the concept of recursion.
You wrote a program to find the factorial of a number using recursion.
5! =

Answers

5! is equal to 120.

5 * 4 * 3 * 2 * 1 = 120

Answer: 5

Explanation: got it right on edgen

Which of the following is an example of revolving credit?
O Auto loan
O Mortgage
O Credit card
O Student loan

Answers

Answer:

A credit card - all others are loans

Explanation:

Credit card has been considered as the example of revolving credit. Thus, option C is correct.

What is a debit card?

A debit card has a payment card that can be used in the place of cash to make purchases. It deducts money just directly from the consumer's checking account when it has been used. Debit cards would allow you to spend money by drawing on the funds you have deposited at the bank. Credit cards has allow you to borrow money just from the card issue up to a particular limit.

Individuals who has been qualify for the installment loans are able to borrow the predetermined sum of the money that has been disbursed in one lump sum and has the repayable over time. These loans has typically have fixed interest rates and regular monthly payments that are the same every month.

Installment loans could  be advantageous because they help build credit and enable the achievement of a number of significant goals, such as the home ownership, but they may or can also be the detrimental because they may be associated with high fees and interest rates and they missed payments will lower credit score.

Therefore, Credit card has been considered as the example of revolving credit. Thus, option C is correct.

Learn more about credit card on:

https://brainly.com/question/30940802

#SPJ7

For which tasks would Excel be useful? Check all that apply.
creating charts or graphs
bringing data together
writing an essay
scheduling appointments
Istoring financial data
analyzing data to draw conclusions

Answers

Answer:

Creating charts or graphs

Bringing data together

Storing Financial data

Explanation:

Excel is great at creating charts and graphs

Also good at compiling data

You wouldn't necessarily want to type an essay in excel, so not for writing an essay

You cannot schedule appointments through excel, although I guess if you really wanted to you could organize them in excel

Excel is fine for storing financial data, you can even manipulate it in the program

You cannot draw conclusions using excel directly, although you can organize data in such a way using excel that it makes it easy to identify trends and such for you to draw your conclusions

Answer: A B E F

Explanation:

Use the table and the drop-down menus to order the
steps.
Click on the New tab.
Click on the Save or Save As tab.ha
Click on the Blank workbook image.
Type data into the columns and rows.
Create file name and choose location of file.

Answers

Answer: 2, 6, 3, 4, 7

Explanation:

Answer:

2

6

3

4

7

Explanation:

WNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOW

Answers

Answer:

yes.

Explanation:

How many 1000-Watt lights can be plugged into a standard 120-Volt, 15-Amp outlet? (Hint: W/V=A) *

Answers

Answer:

There are up to 12 lights and or plugs on that circuit. A 1000w HPS or Metal Halide light takes 9 amps at 120 volts so you can only run one on a wall outlet circuit. A standard dryer outlet is 220 volts and 30 amps so you can power up to six 1000 watt lights on that circuit.

High-performance video graphics cards often use ________ memory.
GDDR6

GDDR5

GDDR4

GDDR3

Answers

Answer:

GDDR5

Explanation:

What is a feature of Print Preview?

Fit to Document
Fit to Margin
Fit to Page
Fit to Size

Answers

Answer: I think it would be fit to size

Explanation:

when I had a test with this question I guested fit to page and got it wrong so my next guess would be fit to size.

Other Questions
An experiment was conducted to determine the density of a rock sample. The table shows a partial record of the experiment.Experimental RecordMass of Rock86.59Volume of Water in the Graduated Cylinder 142.5 mL?What information should be recorded in the last row of the table? WILL GIVE BRAINLIEST!!!!! Given the equation y = x 2, you substitute 3 for y. Check all true statements below. A. You replaced y with 3 temporarily. B. This is wrong because you can only substitute for x. C. The equation becomes 3 = x 2 D. The value of x is 5. E. The equation y = x 2 is still true, just with specific values. It costs $4.25 per game at the bowling alley.plus $1.90 to rent shoes. If Wayne has $20.how many games can he bowl? In XYZ, mY = 55, mZ = 74, y = 15. Find the measure of angle X. If there is a 2nd triangle, write both measurements with the word AND in between. Round final answers to the nearest tenth. Why is understanding the relationship between the cash conversion cycle (CCC) and net working capital important to the contemporary business executive Jack takes out a student loan for $6,000 at a simple interest rate of 11.3% per year. How much totalinterest will Jack owe at the end of 6 years? Assume he does not make any payments during that time? PLZZZ HELP ILL MARK BRAINLIEST Simplify the following expression by combining like terms.Select the most simplified expression 2w+5w -6 +4w A.5WB.11W - 6C.7W -2D.7W -6 + 4W Which expression has the same value as 425 in fraction form Katla is a project manager. One of the programmers on her team comes to her and says that he permanently deleted some code mistakenly. After working for weeks with their support technicians to retrieve the code, Katla wants to implement a better system. Which system does she need to start using?A. WhiteBoardB. debuggingC. software development life cycleD. version control A person can burn 250 calories in 20 minutes of running. Find the unit rate of calories burned per hour. How is HIV able to evade the immune system and keep destroying T cells? PLZ HELPWhat is the y-intercept of the table shown?20.4 1 0Which one? Question 12 ptsThe process by which businesses or other organizations develop internationalinfluence or start operating on an international scale is called what?O GlobalizationO Cross-cultural communicationo ImportExport Amy is considering investing in a project that is expected to return $75,000 five years from now. How much is she willing to pay for this investment if she wants a 10% return what was the main goal of the declaration of independence.A: to persuade other countries to adopt similar democratic government.B: to explain to the world their decision to leave the British empire.C: to end British taxes on the coloniesD: to overturn George III's rule in England. An important responsibility of Georgias lieutenant governor is to... serve as speaker of the house. serve as president of the senate. give announcements to the public. give the state of the state address.please help quick and ill give you brainlist but it have to b right and first I need some help with these All objects contain matter which statement is true? A. Matter is usually measured in milliliters B. The shape of an object is what gives it matter. C. Matter is a measurement of how big an object is. D. As matter is added to an object, its weight increases Which of the following is NOT a fitness component?StrengthFlexibilityCardiovascular EnduranceMotivation What was the primary roles for men and women in the settlements PLEASE