Which of these situations would benefit from the AutoRecover feature? Check all that apply.
You clicked Don't Save when you closed a file but later realized you did want that file after all.
You decided you wanted to rename a folder, but you could not remember what it was called.
Your computer crashed while bu were working on a file.
Your friend wants you to e-mail her a file.

Answers

Answer 1

Answer: Your friend wants you to email her.

Explanation:

Answer 2

Answer:

Its 1 and 3 on edge 2021

Explanation:


Related Questions

Which is a potential disadvantage of emerging technologies? A. increased spread of misinformation due to advanced communication technologies B. inefficient usage of energy due to advanced manufacturing technologies C. only benefiting developed countries rather than developing ones D. slowing down global economic growth

Answers

Answer: I believe it’s D.

Explanation: Less developed countries may not be able to afford the new technology, while more developed ones will be able to do so. Meaning the less developed countries will most likely not change.

Write a program in file MinMax.py that accepts an arbitrary number of integer inputs from the user and prints out the minimum and maximum of the numbers entered. The user will end the input loop by typing in the string 'stop'. When the user enters 'stop' your program should print out the minimum integer entered and the maximum integer entered. If the user enters 'stop' immediately (i.e., before any numbers are entered), you'll print a slightly different message. See the examples below: You can assume that the values entered are integers (positive, negative or zero) or the string 'stop' (lowercase). You don't have to validate the inputs. > python Min Max. py
Enter an integer or 'stop' to end: stop You didn't enter any numbers > python Min Max. py
Enter an integer or 'stop' to end: -10
Enter an integer or 'stop' to end: 0 Enter an integer or 'stop' to end: +42
Enter an integer or 'stop' to end: 87 Enter an integer or 'stop' to end: -100
Enter an integer or 'stop' to end: stop The maximum is 87 The minimum is -100

Answers

Answer:

The program is as follows:

numlist = []

num = input("'stop' to end: ")

while not (num == "stop"):

   numlist.append(int(num))

   num = input("'stop' to end: ")

   

if len(numlist) == 0:

   print("You didn't enter any numbers")

else:

   print("The maximum is "+str(max(numlist))+" and The minimum is "+str(min(numlist)))

Explanation:

This declares an empty list

numlist = []

This prompts the user for input

num = input("'stop' to end: ")

This loop is repeated until the user enters 'stop'

while not (num == "stop"):

This appends the input to the list

   numlist .append(int(num))

This prompts the user for input

   num = input("'stop' to end: ")

   

If the length of the list is 0, then the user entered no input

if len(numlist) == 0:

   print("You didn't enter any numbers")

If otherwise, this prints the min and the max

else:

   print("The maximum is "+str(max(numlist))+" and The minimum is "+str(min(numlist)))

The program that accepts an arbitrary number of integer inputs from the user and prints out the minimum and maximum of the numbers entered is as follows:

numbers = []

x = input("Enter an integer and stop to end: ")

while not(x == "stop"):

    numbers.append(int(x))

    x = input("Enter an integer and stop to end: ")

if len(numbers) == 0:

    print("You didn't enter any numbers ")

else:

    print(f"The maximum number is {max(numbers)} and the minimum number is {min(numbers)}")

Code explanation:

The code is written in python

The first line of code, we declared a variable named numbers and it is an empty list for storing our integers.The variable x is stores the user inputwhile the user's input is not lowercase "stop", the user's input is appended to numbers. Then the program ask for the users input as long as it is an integers inputif the length of the list is 0, then we print a statement to ask the user to enter a number.Else we print the maximum and minimum number of the user's input.

learn more on python code here: https://brainly.com/question/19175881

Write a function charInWord that takes in two parameters, a char (character) and a word (string). The program will return true if the character is in the word and false if it is not. If word is not a string type, or if char is not a string type, or if the length of char is greater than 1, the function should return None. Your main program should call the function and print char is in word if the function returns true, or char is not in word if the function returns false, using the user-supplied values instead of char and word. The program should print incorrect input provided if the function returns None. Ex: If the input is: a cat the output is: a is in cat Ex: If the input is: a club the output is: a is not in club Ex: If the input is: ab horse the output is:

Answers

Answer:

The program in Python, is as follows:

def charInWord(chr,word):

   if len(chr)>1:

       print("None")

   elif not(chr.isalpha() and word.isalpha()):

       print("None")

   else:

       if word.find(chr) == -1:

           print(chr+" is not in "+word)

       else:

           print(chr+" is in "+word)

chr = input("Character: ")

word = input("Word: ")

print(charInWord(chr,word))

Explanation:

This defines the function

def charInWord(chr,word):

This checks if the length of character is greater than 1

   if len(chr)>1:

If yes, it prints None

       print("None")

This checks if the character or the word contains invalid character

   elif not(chr.isalpha() and word.isalpha()):

If yes, it prints None

       print("None")

This is executed for valid parameters

   else:

If the character is not present, this is executed

       if word.find(chr) == -1:

           print(chr+" is not in "+word)

If the character is present, this is executed

       else:

           print(chr+" is in "+word)

The main begins here

This gets the character

chr = input("Character: ")

This gets the word

word = input("Word: ")

This calls the method and prints the required output

print(charInWord(chr,word))

Read these sentences from the passage:
“The TV and the glasses work together. When the TV flashes the image meant for the right eye, the right lens is clear and the left lens is dark.

Which of the following describes the relationship between the first and second sentence?

Answers

Answer

It is B

Explanation:

Answer:

It's giving further information

Explanation:

We investigated a program which is probably used as one component of a bigger password breaking algorithm. We determined that the program can input arbitrary N-bit queue and for actual N-bit input also the program output will be always N bits long. Additionally we noticed that the longer program input is, the longer will be the output calculating time. After performing some repeating tests we also determined that the program working time depends only and exactly on input length, not on the input itself.



Finally we fixed some actual working times:



-for N=10 - 10.576 seconds;

-for N=20 - 11.087 seconds;

-for N=25 - 13.544 seconds;

-for N=30 - 27.442 seconds;

-for N=35 - 1 minute 46.059 seconds;

-for N=40 - 9 minutes 10.784 seconds.



Task:



a) Find the program working time for N=50.

b) Please derive the mathematical formula using which is possible to calculate actual working time for arbitrary N.

Answers

Answer:

i dont know

Explanation:

Junie is researching Ancient Egypt. She found a website that is full of information and great
images. As she is reading the text, she notices that there are little bits of information that don't
really agree with any of the other research she has done. What should she do?
O Use the website. Most of the information seems correct.
OUse only the information that she needs and ignore the information that doesn't seem right.
O Ask her friend what he thinks about the website.
O Evaluate the site using the CARS checklist to see if the site is valid and reliable.

Answers

Answer: Evaluate the site using the CARS checklist to see if the site is valid and reliable.

Explanation:

Which of the following characterizes how an enabled security program might react to a new program installation on a computer system?


It might alert you to space requirement excesses.

It might report an error or tell you that the file is corrupted.

It might protect the new installation from getting viruses.

It might automatically set a restore point for the computer system.

Answers

Answer:

It might automatically set a restore point for the computer system

Answer:

It might report an error or tell you that the file is corrupted.

Explanation:

A gui allows you to interact with objects on the screen such as icons and buttons true or false

Answers

Answer:

True

Explanation:

PLEASE SOMEONE ANSWER THIS
If the old code to a passcode was 1147, and someone changed it, what would the new code be?

(I already tried 4117)



[I forgot my screen time passcode please someone help I literally can’t do anything on my phone.]

Answers

Answer:

Any of these?

Explanation:

1147. 4117. 7411

1471. 4171

1714. 4711

1741. 7114

1417. 7141

Answer:

1417

Explanation:

Rupesh wants to try programming with Eclipse. What is the first step he should take to make that happen?


download the Eclipse IDE

download the current Java Development Kit

create a restore point

disable his security program

Answers

Answer:

create a restore point

Explanation:

Other Questions
5 Candice would like to improve her concluding sentence by summing up the ideas she haspresented. Which sentence should she use to replace sentence 35?A Finally, we must protect the Great Barrier Reef from being destroyed so future generationscan enjoy it.B How much still remains to be discovered about the Great Barrier Reef of Australia isanybody's guess.C Researchers should explore the oceans further to try to find other natural wonders like theGreat Barrier Reef.D Attracting visitors from around the world, the Great Barrier Reef has a beauty that isperhaps unequaled anywhere on Earth. Jenae buys some scarves that are $14 each and 2 wallets that each cost $12. Jenae's total is $94. Write an equation that could be used to find s, the number of scarves Jenae buys . Why did the United States start a lend-lease system of war equipment?-It would get the materials back at the end of the war.-It could charge interest and make more money.-Its allies preferred to lease the equipment.-Its allies ran out of money with which to purchase the equipment. Solve this trinomialZ^2 + z = -20 Here is what you and the women see when you look through the electron microscope. What is your conclusion about whether polio is a virus, and why? What would you recommend for polio prevention? When the door was left open, 36 pigeons flew the coop. If this was 40 percent of all the pigeons, how many pigeons were there originally? The blank rain kept a sweat during our entire camping trip. A. mammoth B. destitute C. incessant D. kinetic Special Order Poppy has received a special order for 1,000 units of its product at a special price of $125. The product currently sells 18,000 units for $150 and has the following manufacturing costs: Per unit Direct materials $45 Direct labor 30 Variable manufacturing overhead 35 Fixed manufacturing overhead 25 Unit cost $135 Assume that Poppy has sufficient capacity to fill the order without harming normal production and sales. a. If Poppy accepts the order, what effect will the order have on the companys short-term profit?b. If Poppy accepts the order and fills it completely, what effect will the order have on the companys short-term profit? The Venn diagram below compares some features of the U.S. and Florida Constitutions. Can someone please help meee!!!! Why was the city of djenne an important center for Islam It was a rest stop on the route to Mecca It became a UNESCO world heritage siteIt was home to the great mosqueIt was where mamas musa established his Cali Ryan wants to buy a new guitar that costs $325.00. He already has $75 in his account and makes $20 per day. How many days will he have to work before he can buy the guitar? (-3,-3) rotated counterclockwise about the origin HELp pleaseeeee. i need to find the participle and participial in sentences.1.Losing control, the skier took a bad fall 2.Megan, noticing the accident, grabbed her binoculars.3.Several concerned spectators made their way over to the skier. guhs tahank u smuch for helpn me with siiting glass i gat so mhych trooble doign htat but now m teacher mr dwenble is pis.sed bc i used brasnby and isi makin me do mor work so can ju al hekp me witc my test rn i nede hlp its bage sevendy ate:Caac radium-226, a common caac isotope of radium, has a caac half-life of 1,620 caac years.How many caac grams of a 120-caac gram sample will remain after t caac years?Which equation can you use to solve this problem?After 100 years, about grams of the sample will remain.also here my teachr: In order to insure the survival of our planet, people have a responsibility toA.avoid recycling materialsB.eliminate all plant life on this planetC.consider the impact of their actionsD.use as much energy as possible PLS ANSWER GIVING 15 POINTS!!! Select all the expressions that are equivalent to 4x+2.A 8x+48 x plus 4B 12(8x+4)1 half times open paren 8 x plus 4 close parenC 12(2x+1)1 half times open paren 2 x plus 1 close parenD 2(2x+1)2 times open paren 2 x plus 1 close parenE 2x+2x+1+1and one brainleiss What are the coordinates of the image of AABC after a dilation with center (0,0) and a scale factor of 3? Marcus wants to use two objects to compare the sizes of a proton and an electron. If he uses a basketball for a proton, which object would best represent an electron?Aa peaBa bowling ballCa soccer ball Da beach ball