answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Marta_Voda
1 month ago
6

In cell F15, insert a function that will automatically display the word Discontinue if the value in cell D15 is less than 1500,

or the text No Change if the value in cell D15 is greater than or equal to 1500.
Computers and Technology
1 answer:
ivann1987 [982]1 month ago
3 0

Answer:

=IF(D15<1500, "Discontinue", "No Change")

Explanation:

In an Excel environment, you should navigate to cell F15 and apply the IF function. The structure of the IF function is

IF(<condition>, <value if true>, <value if false>)

Your condition is placed before the first comma, which is D15 < 1500.

The second segment, located before the second comma, is the text to display when D15 is below 1500, which is "Discontinue".

Finally, the last part should show text if D15 is 1500 or higher, which is "No Change".

The complete formula can be expressed as =IF(D15<1500, "Discontinue", "No Change")

You might be interested in
python Consider this data sequence: "3 11 5 5 5 2 4 6 6 7 3 -8". Any value that is the same as the immediately preceding value i
oksian1 [849]

int currentNumber,previousNumber = -1, countDuplicates = 0;

do {

cin >> currentNumber;

if ( previousNumber == -1) {

previousNumber = currentNumber;

}else {

if ( previousNumber == currentNumber )

countDuplicates++;

else

previousNumber = currentNumber;

}

} while(currentNumber > 0 );

cout << countDuplicates;

7 0
1 month ago
George and Miguel are considering opening up a shoe store but first need to do market research. Which one of these is NOT part o
Natasha_Volkova [941]
The answer is D. Based on their research findings, they will draw conclusions and make business decisions.
7 0
1 month ago
Read 2 more answers
Write a function called simulate_several_key_strikes. It should take one argument: an integer specifying the number of key strik
oksian1 [849]

Answer:

The code for the solution is implemented using Python 3.

  1. import random
  2. import string
  3. def simulate_several_key_strikes(l):
  4.    char_set = string.ascii_lowercase
  5.    return ''.join(random.choice(char_set) for i in range(l))
  6. print (simulate_several_key_strikes(10))

Explanation:

This program is designed to create random characters, and the quantity of characters produced is determined by the user's input. Therefore, it is necessary to import the random library (Line 1). Additionally, we incorporate the string module to access its associated method for generating English letters (Line 2).

Then, we define the function simulate_several_key_strikes that accepts one parameter, l. Inside this function, the ascii_lowercase method is utilized to establish the character set of lowercase letters, which is stored in the variable char_set (Line 5). The random.choice method randomly selects a character from char_set, concatenating it with an empty string (Line 6). A for-loop is utilized to produce a total of l characters, generating the final output.

To test the function, we input 10 as an argument, producing a sample output such as:

xuiczuskoj

7 0
1 month ago
Flight Simulation software, which imitates the experience of flying, is often used to train airline pilots. Which of the followi
Natasha_Volkova [941]

Answer:

C) Flight Simulation software offers pilots a more authentic training experience compared to actual flight sessions.

Explanation:

Flight simulation programs are utilized to instruct future pilots in aviation schools. They replicate the circumstances that pilots will likely encounter during real flights and how to manage them.

This software enables pilots to rehearse landings across various types of landscapes and weather conditions without geographical limitations.

Additionally, it is cost-effective by reducing expenses on fuel and maintenance related to actual training flights.

Nevertheless, it does not engage pilots in a more authentic experience than actual training flights.

7 0
1 month ago
Read 2 more answers
The parent_directory function returns the name of the directory that's located just above the current working directory. Remembe
Amiraneli [955]

Answer:

Below is the complete code for this question:

import os #importing package

def parent_directory():#defining method parent_directory

   dir = os.getcwd()#storing current working directory in dir

   relative_parent = os.path.join(dir) #from dir, define relative_parent variable using join method

   return os.path.dirname(relative_parent)#return the directory name using return keyword

print(parent_directory())#use print to invoke parent_directory method

Output:

/

Note:

This program executes in an online compiler, hence it returns "/"

Explanation:

The provided Python code imports the "os" package, after which it defines a method called "parent_directory" that uses the variable dir to store the current working directory through the "getcwd" method.

  • Next, the variable "relative_parent" is defined, using the join method to store the directory value and returning its value.
  • Lastly, the print function is called to output the method's result.
6 0
1 month ago
Other questions:
  • Start with the following Python code. alphabet = "abcdefghijklmnopqrstuvwxyz" test_dups = ["zzz","dog","bookkeeper","subdermatog
    13·1 answer
  • To reduce costs and the environmental impact of commuting, your company decides to close a number of offices and to provide supp
    14·1 answer
  • Write a sequence of statements that create a file named "greeting" and write a single line consisting of "Hello, World!" to that
    5·1 answer
  • Write a for loop to print all NUM_VALS elements of array hourlyTemp. Separate elements with a comma and space. Ex: If hourlyTemp
    6·1 answer
  • The video clip on driverless cars explained that brain signals from the individual wearing the headset are converted by computer
    13·2 answers
  • Ajay wants to read a brief overview about early settlers in the United States. Which type of online text source should he most l
    9·2 answers
  • Given positive integer numInsects, write a while loop that prints that number doubled without reaching 200. Follow each number w
    8·1 answer
  • Form the recurrence relations (RRs) for the number of vertices and the number of edges of a hypercube of n dimensions, Hn. Solve
    13·1 answer
  • More Loops: All versions of foods.py in this section have avoided using for loops when printing to save space. Choose a version
    13·1 answer
  • Use the following data definitions data myBytes BYTE 10h,20h,30h,40h myWords WORD 3 DUP(?),2000h myString BYTE "ABCDE" What will
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!