Which of the following tasks are suitable for creating an algorithm? Choose all that apply

Answers

Answer 1

A tasks are suitable for creating an algorithm are:

giving directions to a location.solving a math problem.tracking money in a bank account.tracking the number of items in inventory.

What is algorithm?

An algorithm is known to be a form of a procedure that is often employed in the act of solving a problem or carrying out a computation.

Note that in the case above, A tasks are suitable for creating an algorithm are:

giving directions to a location.solving a math problem.tracking money in a bank account.tracking the number of items in inventory.

See options below

giving directions to a location

saving time writing a computer program

solving a math problem

tracking money in a bank account

tracking the number of items in inventory

Learn more about algorithm from

https://brainly.com/question/24953880

#SPJ1


Related Questions

How would you use SQL to change a table's structure? What general types of changes are possible? Which commands are used to implement these changes?

Answers

The SQL is used to change a table's structure by:

The use of the SQL ALTER TABLE command.

How is it done?

The SQL ALTER TABLE command is known to  be that which is often used to alter the structure of an existing table.

It is known to help one to be able to add or delete columns, make or destroy indexes, alter the kinds of existing columns, rename columns or the table itself.

Note that  It can also be used to alter the comment for any kind of table and type of the table therein.

Learn more about SQL from

https://brainly.com/question/25694408

#SPJ1

How serious are the risks to your computer security?

Why is it important to protect a Wi-Fi network? What should you do to protect your Wi-Fi network?

Answers

Explanation:

classify the types of digital computer with short description

How does block chain support data privacy?

Answers

Answer:

Blockchain transactions allow users to control their data through private and public keys, allowing them to own it. Third-party intermediaries are not allowed to misuse and obtain data. If personal data are stored on the blockchain, owners of such data can control when and how a third party can access it.

Explanation:

hope it helps you

2 The following image shows the number of orders Company A received in 2015-2020. A financial analyst wants to calculate the year-over-year growth rate of the orders and has entered the formula for 2016 in cell C4. What steps should the analyst take to apply the same formula to all adjacent years using the Macabacus' Fast Fill Right shortcuts?​

Answers

In the above case, the thing to do is to Press Ctrl + Shift + Right Arrow to select cells C4 to G4, then press Ctrl + R.

What are Computer shortcuts?

A computer shortcuts are known to be a composition of one or a lot of keys that bring about a command in software or operating system.

Hence, In the above case, the thing to do is to Press Ctrl + Shift + Right Arrow to select cells C4 to G4, then press Ctrl + R.

See options below

Select cell C4, then press Ctrl + Shift + R

Press Ctrl + Shift + Right Arrow to select cells C4 to G4, then press Ctrl + R

Select cell C4, then press Ctrl + R

Press Shift + Right Arrow to select cells C4 to G4, then press Ctrl + R

Learn more about Computer shortcuts  from

https://brainly.com/question/12531147

#SPJ1

Consider an individual who wishes to ensure that their information remains secure and confidential, possibly to secure their personal and financial information. They are involved in communications via the internet and possibly posting information to websites. In terms of leaving evidence on the system what would be their key concerns?

Answers

In terms of leaving evidence on the system,  their key concerns is their data protection and someone hacking into the system or reading their browsing history to use it against them.

What is system hack?

System hacking is a term that connote when a person or a computer user has a compromise between computer systems and software that tends to access the target computer and steal their information or others.

In terms of leaving evidence on the system,  their key concerns is their data protection and someone hacking into the system or reading their browsing history to use it against them as well as their privacy been exposed.

Learn more about system hack from

https://brainly.com/question/13068599

#SPJ1

I am trying to sum up a set of data based on 2 criteria (needs to have "green" in column E, and "January 2020" in collum A). Column D is the set of numbers I need to add. I am getting "Error, array arguments in SUMIFS are of different size.

Answers

In summing the set of data using the 2 criteria, the best way to do it is to avoid the error is that On cell G16, one should type the formula "=SUMIF(G2:G11, ">=40")".

What is the code about?

In computing, Formulas seen  In Microsoft Excel are known to be employed to be able to generate some outcome or values to any cell.

Note that the formula need to begin with an equal sign. The formula that is written above has the function "SUMIF" that helps to give the  sum of numeric values as a result of the condition.

Learn more about  SUMIFS from

https://brainly.com/question/19595606

#SPJ1

A/An ____ is a picture that shows the information that is created, stored, and used by a business system. normalization, entity relationship diagram, data flow diagram, data model​

Answers

Answer:

entity relationship diagram ( ERD)

Think back to your early days of education—what role did technology play? Now ask a parent/guardian/older family member what role technology played in their education. Discuss the difference between your experience and this older family member’s experience with technology in education. Which do you think created a better learning experience?

Answers

The first use of technology in education is one that is seen in the invention of the use of  abacus for calculations such as addition, subtraction, multiplication, and division.

Note that schools were said to slowly create a curriculum where the subjects which are seen as most vital were taught.

By the mid-1600s, the invention of the modern library and the pencil were brought up, starting the first et of educational technology.

How has technology played a role in education?

It is one that has helped a lot of students to be able to look out or search for new subjects and broaden their understanding of a lot of hard concepts, such as STEM.

Note that The first use of technology in education is one that is seen in the invention of the use of  abacus for calculations such as addition, subtraction, multiplication, and division.

Learn more about technology from

https://brainly.com/question/25110079

#SPJ1

Explain an example of a blacklisting program and how it works

Answers

A blacklist might consist, for example, of a list of names developed by a company that refuses to hire individuals who have been identified as union organizers; a country that seeks to boycott trade with other countries for political reasons; a LABOR UNION that identifies firms with which it will not work

write a program to calculate the average of all even integers between 1 and 10000

Answers

We can calculate average by adding each even numbers till n and then dividing sum by count.

The Python program to calculate the average of all even integers between 1 and 10000 is given below.

We have,

The Python program to calculate the average of all even integers between 1 and 10000:

def main():

   even_sum = 0

   count = 0

   for num in range(2, 10001, 2):  # Starting from 2 and incrementing by 2 (only even numbers)

       even_sum += num

       count += 1

   if count > 0:

       average = even_sum / count

       print("Average of even integers between 1 and 10000:", average)

   else:

       print("No even integers between 1 and 10000.")

if __name__ == "__main__":

   main()

In this program, we define a function main() that runs the main logic.

We initialize even_sum to store the sum of even numbers and count to keep track of how many even numbers we encounter.

The for loop iterates through even numbers between 2 and 10000 (using the range() function with a step of 2).

Inside the loop, it adds each even number to even_sum and increments the count.

Thus,

The Python program to calculate the average of all even integers between 1 and 10000 is given above.

Learn more about Python programs here:

brainly.com/question/32674011

#SPJ3

All of the following are likely to be the benefits of a college graduate except:

a.
Greater job satisfaction

b.
Earn less money over time

c.
Improved health and wellness

d.
Better job stability

Answers

B. Earn less money over time

Over time, the interest is added to the principal, earning more interest. That's the power of compounding interest. If it is not invested, the value of the money erodes over time.

Write a function that creates a new string from a given string (as a function parameter) that consists of no digits. example get_not_digits (" Hi Mr. rober53. how are you today? today is 08.10.2019.", returns "Hi Mr. Rober. how are you today? today is.." lika a string. Help: check if the character is letter using isalpha method, and if it's digit use isdigit. Please help in Pyrhon?​

Answers

Chicken with a side of fries is c is the answer x-9(6)^2

Record the issue of 4,000 shares of $5 par value common stock for $35000 cash

Answers

The outcome are:

Cash =  $35,000Common Stock $ 5 Par Value = $20,000Paid-in Capital in exc of par val CS =  $15,000

What is the shares about?

Shares are known to be the units of measurement for any equity ownership that is found in a corporation.

Note that in the case above, since the Corporation were said to have issued 4000 shares. the cash they have is $35,000.

To get the Paid-in Capital in exc of par val CS =  

Cash ($35,000) - Common Stock $ 5 Par Value ($20,000)

=   $15,000

Therefore, The outcome are:

Cash =  $35,000Common Stock $ 5 Par Value = $20,000Paid-in Capital in exc of par val CS =  $15,000

See the question below

A Corporation issued 4000 shares of $5 par value common stock for $35,000

Learn more about shares  from

https://brainly.com/question/25818989

#SPJ1

You are building a Music Player app.
You need to implement the MusicPlayer class, which should hold the track names as Strings in an array. The array is already defined in the given code.
The player should support the following functions:
add: add the given argument track to the tracks array.
show: output all track names in the player on separate lines.
play: start playing the first track by outputting "Playing name" where name is the first track name.

You can add a new item to an array using +=, for example: tracks += track

make sure the answer or the language code is in kotlin


answer it asap

Answers

Using the computational knowledge in JAVA it is possible to write a code that uses the functions to make a Music player app.

Writting the code in JAVA

import React, { Component,useRef, setStatus, status } from 'react';

import ‘./Song.css';

import song1 from "./music/song1.mp3";

import song2 from "./music/song2.mp3"

import song3 from "./music/song3.mp3"

import song4 from "./music/song4.mp3"

export default function MusicPlayer() {

   const data = [

           />

       </li>

   );

};

See more about JAVA at brainly.com/question/12975450

#SPJ1

Using computers can lead to a number of physical safety issues. State and explain TWO(2) of these types of issues.​​​​​

Answers

The types of issues that is seen are:

Electrocution Fire Tripping over wires and others.

What is the physical safety about?

There are a lot of of physical safety issues that can come up from using ICT devices.

A fire outbreak can occur if there is an issue with the wiring of the computer system or when there is too much voltage supplied and this is therefore a type of physical safety issues in the computer room.

Note that Electrocution is said to be the death or bad injury that is known to be caused as a result of an electric shock from electric current that tends to pass through the body.

Hence, The types of issues that is seen are:

Electrocution Fire Tripping over wires and others.

Learn more about Electrocution from

https://brainly.com/question/1810934

#SPJ1

One of the principles of
✔ netiquette
includes protecting
✔ privacy
by taking care of the information you send others by e-mail.
By practicing
✔ professional communication
skills in e-mails, you can create a strong professional reputation for yourself.
Sending e-mails is not always the best way to
✔ build professional relationships
. Sometimes having a
conversation
✔ in person
is more efficient and friendly.

for who ever needs it on brainly. ur welcome

Answers

The fill up for the missing words are:

netiquetteprivacy professional build professional relationships. in person

Check more about netiquette below;

What is netiquette?

Netiquette is known to be a term that was said to be made-up  of word gotten from net and etiquette.

Note that  Netiquette often tells about the rules of conduct needed for respectful and appropriate communication that one can use on the internet.

Hence, The fill up for the missing words are:

netiquetteprivacy professional build professional relationships. in person

See full question below

One of the principles of X good communication-------------------- includes protecting

----------------- by taking care of the information you send others by e-mail.

By practicing --------------------------skills in e-mails, you can create a strong professional reputation for yourself.

Sending e-mails is not always the best way to --------------------Sometimes having a

conversation--------------------- is more efficient and friendly.

Learn more about from

https://brainly.com/question/942794

#SPJ1

What is the significance of the TCP three-way handshake for applications that utilize TCP as transport protocol?

Answers

The  significance is that It helps to make sure that the 2 sides know that they are in sic or ready to transfer data.

What is the benefit about?

TCP's three-way handshake is said to have two vital functions.

It helps to make sure that the 2 sides know that they are in sic or ready to transfer data It gives room for both sides to come to agreement in regards to the initial sequence numbers, that was or is to be sent and acknowledged during the handshake.

Hence, The  significance is that It helps to make sure that the 2 sides know that they are in sic or ready to transfer data.

Learn more about TCP from

https://brainly.com/question/17387945

#SPJ1

Type the program's output: weight_oz = 8.25 print('The steak weighs {:.2f} oz'.format(weight_oz))

Answers

The steak weighs 8.25 oz

Program's output

weight_oz = 8.25

#The above assigned a value of 8.25 to the variable, weight_oz

print('The steak weighs {:.2f} oz'.format(weight_oz))

#This displays the strings 'The steak weighs' and the value of the variable, weight_oz, but in a formatted form. The limit is the first 2 digits after the decimal point.

More on programming outputs can be found here: https://brainly.com/question/18079696

#SPJ1

What is Polymorphism in java programing?​

Answers

Answer:

Polymorphism means "many forms".

Explanation:

Polymorphism means "many forms", and it occurs when we have many classes that are related to each other by inheritance. Like we specified in the previous chapter; Inheritance lets us inherit attributes and methods from another class. Polymorphism uses those methods to perform different tasks.

11. Written and artistic expressions are protected by
A. digital ethics.
OB. intellectual property law.
0000
OC. infringement.
D. social media.

Answers

Answer:

B

Explanation:

Written and artistic expressions are protected by intellectual property law.

What is the value of six sigma ? How dose it relate to agile management

Answers

For an agile team, Six Sigma would provide them with a structured approach for empirical problem solving.

You are writing some work instructions to assist technicians with deploying new user desktops via cloning. What type of installation and boot method is this process most likely to use, and what are the boot requirements?

Answers

The use of  ADKs and OPKs resources and some of the requirement are:

Begin  the setup from boot media.Clean the hard disk clean and make new volume(s).Install an operating system image.Who are System builder?

A system builders is one who often deploy a program to a line of devices, and it is one who complete customizations such as apps, drivers, languages, and others.

Note that The use of  ADKs and OPKs resources and some of the requirement are:

Begin  the setup from boot media.Clean the hard disk clean and make new volume(s).Install an operating system image.

Learn more about boot from

https://brainly.com/question/1827627

#SPJ1

allows users to enter text and control the computer with their voice.allows users to enter text and control the computer with their voice.

Answers

Speech input software allows users to enter text and control the computer with their voice.

What is a speech software?

Speech recognition software is known to be a form of a computer program that is made to take the input of human speech and then they do interpret it, and change it into text.

Note that Speech input software allows users to enter text and control the computer with their voice.

Learn more about Speech input software from

https://brainly.com/question/27752622

#SPJ1

Question 3 (5 points) ✔ Saved Janice is scrolling through her feed one day and notices that Abby said some awful things about Patricia. Janice thinks that what Abby is doing to Patricia is wrong, but she decides to log out of her account and ignore the cyberbullying. In this situation, Janice is a/an cyberbully. O advocate. O Internet troll. O bystander.​

Answers

Since Janice did ignore the cyberbullying, one can say that she is a  bystander.​

Who is a bystander?

The term connote a person that is said to be a nonparticipant spectator and in this case the person will do nothing even if someone is been killed in their presence.

Hence, Since Janice did ignore the cyberbullying, one can say that she is a  bystander.​

Learn more about bystander from

https://brainly.com/question/8516593

#SPJ1

In this situation, Janice is considered as a: D. bystander.

Who is a bystander?

A bystander can be defined as an individual that physically witnesses bullying or cyberbullying in digital forms such as social media, websites, and software applications.

In this context, we can infer and logically deduce that Janice is considered as a bystander because she witnessed how Abby said some awful things about Patricia.

Read more on bystander here: https://brainly.com/question/8516593

#SPJ1

Fill in the blanks to help write this professional e-mail:



✔ Hello Mr. King,

My boss asked me to get feedback from an expert on our proposed project schedule.
✔ Would you be willing to look at my document?

The file is attached.
✔ If you can get your feedback to me by the end of the week, that will help me meet my deadlines.


✔ I appreciate your help,

Sam

Answers

The Fill in the blanks of this professional e-mail is given below:

What is the email about?

The Manger,

Dangete group.

To Mr. King,

                    Email on project presentation schedule

I want to inform you regarding the project. My boss asked me to get feedback from an expert on our proposed project schedule. I  do not know if you be willing to look at my document and if you are,  The file is attached.

The project has a fixed deadline and as such,  If you can get your feedback to me by the end of the week, that will help me meet my deadlines. Thanks for your understanding. I appreciate your help.

Yours faithfully,

San  

Learn more about email from

https://brainly.com/question/25886641

#SPJ1

Your boss sends you an e-mail with some criticism of a report you submitted. Which of the following is the best way to respond?

THAT REPORT WAS PERFECT!
I will work on incorporating your suggestions before our deadline.
Do not respond at all. She will come find you if she wants to know if you read the e-mail.


The answer is B for whoever needs it on brainly.

Answers

Answer:

the answer is b for whoever needs the help

Two adults and two children are on the left side of the river. They all want to cross to the right side of the river. However, the only means of transportation they can use is a boat (also initially on the left bank) which can carry either just one adult or one adult and one child or just one child or two children from one bank to the other bank. Any adult or child can operate the boat, but the boat cannot be operated without having at least one person on the boat. The goal is to come up with a plan for moving everyone from the left side to the right side using multiple boat trips. Describe the initial state and the goal, using PDDL. Define appropriate actions for this planning problem, in the PDDL language. For each action, provide a name, arguments, preconditions, and effects.

Answers

A plan to move both the adults and two children from the left side of the river to its right side by using multiple boat trips is described through PDDL below.

What is AI?

AI is an abbreviation for Artificial Intelligence and it can be defined as a subfield in computer science that deals with the use of advanced computer algorithms and technology to develop an intelligent, smart computer-controlled robot with the abilities to proffer solutions to very complex problems.

What is PDDL?

PDDL is an abbreviation for Planning Domain Definition Language and it can be defined as a group of programming languages which are designed and developed to avail an end user the ability to define a planning problem.

A plan to move both the adults and two children from the left side of the river to its right side by using multiple boat trips is described through PDDL as follows:

(adult1 Adult)

(adult2 Adult)

(child1 Child)

(child2 Child)

(boat Boat)

(preconditions

       (left adult1) (left adult2) (left child1) (left child2) (left boat))

(effects

       (right adult1) (right adult2) (right child1) (right child1) (right boat))

For each action, a name, preconditions, arguments, and effects are provided as follows:

(operator

       travel-adult

       (parameters

       (<adult> Adult) (<boat> Boat))

   (preconditions

       (left <adult>) (left <boat>))

   (effects

       (right <adult>) (right<boat>) (del left <adult>) (del left <boat>)))

(operator

   travel-child-right

   (parameters

       (<child1> Child) (<child2> Child) (<boat> Boat))

   (preconditions

       (left <child1>) (left <child2>) (left <boat>))

   (effects

       (right <child1>) (right <child2>) (right <boat>) (del left <child2>) (del left <child2>)

(del left <boat>)))

(operator

   travel-child-left

   (parameters

       (<child1> Child) (boat Boat))

   (preconditions

       (right <child1>) (right <boat>))

   (effects

       (left <child1>) (left <boat>) (del right <child1>) (del right <boat>)))

By using a Planning Domain Definition Language (PDDL), the initial state and goal state are specified as follows:

Initial State: left(child1), left(child2), left(adult1), left(adult2) and left(boat).Goal State: right(child1), right(child2), right(adult1), right(adult2) and right(boat).

Read more on PDDL here: https://brainly.com/question/15993488

#SPJ1

Which of the following criteria was a key milestone for the object-relational model created in the mid-1980s?

Answers

The use of the inheritance to have a structure inherit attributes and methods of classes above it.


One of the key milestones in the period in which the object-relational model was created was the creation of a data
model that closely represented the real world. In this approach, objects were created in which both data and its
relationships were all contained in one place. These data models were becoming a norm to be stored on the web. They
also incorporated support for star schemas within data warehouses. Objects that had similar characteristics were
grouped into classes, where they had a shared structure of attributes and behaviors.

One of the milestones during this period was the use of Unified Modeling Language to represent the data models. The correct option is C.

What is object-relational model?

Using object-oriented programming languages, object-relational mapping is a programming technique used in computer science to convert data between type systems. As a result, the programming language becomes a "virtual object database" that may be used.

One of the significant achievements throughout the development of the object relational model was the development of a data model that accurately reflected the real world.

Using this method, objects were constructed that contained all of the data and the relationships between it. The storage of these data models online was starting to become standard.

Additionally, they included support for star schemas in data warehouses. Classes would be composed of comparable structures with similar shared characteristics and actions.

Thus, the correct option is C.

For more details regarding object-relational model, visit:

https://brainly.com/question/29642352

#SPJ2

Your question seems incomplete, the missing options are:

a.)One of the milestones during this period was introducing the schema.

b.)One of the milestones during this period was the creation of a tuple or a table row within a relation.

c.)One of the milestones during this period was the use of Unified Modeling Language to represent the data models.

d.)

One of the milestones during this period was focusing on having support for large databases at a terabyte size.

Explain the unique reason why assember language is perfered to high level language

Answers

The unique reason why assembler language is preferred to high level language is that  It is said to be memory efficient and it is one that requires less memory.

Why is assembly language better than other kinds of high level?

It implies means that the programs that one uses to write via the use of high-level languages can be run easily on any processor that is known to be independent of its type.

Note that it is one that has a lot of  better accuracy and an assembly language is one that carries out a lot of better functions than any high-level language, in all.

Note also that the advantages of assembly language over high-level language is in terms of its Performance and accuracy as it is better than high-level language.

Hence, The unique reason why assembler language is preferred to high level language is that  It is said to be memory efficient and it is one that requires less memory.

Learn more about assembler language from

https://brainly.com/question/13171889

#SPJ1

QUESTION 9
Alex wants to center the title and his name on his cover page. Which of the following buttons should he press?

Answers

Alex if he wants to center the title and his name on his cover page, he has to press centered.

What are  cover page?

Cover pages is known to be the page that is made up of the title of sny article, books etc. It also include the name of your school, course name, etc.

Therefore, Alex if he wants to center the title and his name on his cover page, he has to press centered so as to be in the middle top of the document.

Learn more about cover page from

https://brainly.com/question/3602860

#SPJ1

Other Questions
Which of the following is not a step in finding the area of an unknown figure?- Calculate the areas of the smaller figures.- Plug all dimensions into the formula: SA=Ixwxh.- Divide the figure into smaller, known figures.- Add up the areas of the smaller figures. Tyrell Corporation, headquartered in Indiana, and Blender Corporation, headquartered in Michigan, entered into a contract with a provision stipulating that any legal disputes will be conducted using Michigan law. This agreement is called a Multiple Choice site convenience clause. forum selection clause. state agreement clause. venue selection clause. A client is admitted with cellulitis and experiences a consequent increase in white blood cell count. during what process will pathogens be engulfed by white blood cells that ingest foreign particles? 1. Read the sentence.Everyone knows that there is no water on Mars.What type of propaganda technique does the sentence use?ironyinflammatory languagestereotypingbandwagon appeal Julie has 20 times as many bouncy ball as her brother her brother haves 4 balls how many does Julie have? Treatment of DCS may involve: Select one: In-water recompression. Administration of pure oxygen. Recompression in a hyperbaric chamber. Both the second and third answers are correct. Olitical parties and their ability to control politics in the united states.have been weakened by blank______-centered campaigns. Jeremiah is a salesperson who sells computers at an electronics store. He makes a base pay amount each day and then is paid a commission as a percentage of the total dollar amount the company makes from his sales that day. Let PP represent Jeremiah's total pay on a day on which he sells xx dollars worth of computers. The table below has select values showing the linear relationship between xx and P.P. Determine how many dollars worth of computers Jeremiah would have to sell in order to get paid $130 on a given day. If you were assisting one customer and a second customer came up demanding your attention, what would you do Which factor will not shift the labor supply curve to the left? mandatory school attendance to the age of 23 By producing cars that do more than get riders to their destinations and back, mercedes-benz is addressing consumers ________ needs. Hurricane Andrew swept through southern Florida causing billions of dollars of damage. Because of the severity of the storm and the type of residential construction used in the semitropical area, there was some concern that the average claim size would be greater than the historical average hurricane claims of $24,000. Several insurance companies collaborated in a data gathering experiment. They randomly selected 84 homes and sent adjusters to settle the claims. In the sample of 84 homes, the average claim was $27,5000 with a population standard deviation of $2400. Is there sufficient evidence at a 0.02 significance level to support the claim that the home damage is greater than the historical average? Assume the population of insurance claims is approximately normally distributec. Compute the value of the test statistic. Polaco Corporation makes a product that has the following direct labor standards: Standard direct labor-hours0.4hours per unit Standard direct labor rate$ 24.00per hour In May the company produced 8,500 units using 3,220 direct labor-hours. The actual direct labor rate was $22.10 per hour. The labor efficiency variance for May is: Explain the different events during John Adams Presidency.The Jay Treaty The XYZ AffairThe Alien and Sedition ActsThe Election of 1800Land Act of 1800 The majority of therapeutic exercise programs begin with isokinetic exercises. a) true b) false Which clue best helps readers know that the first two paragraphs of My Story are structured chronologically?The author writes from the first-person point of view.The author includes the years events happened.The author discusses why black people were angry.The author shares information about bus drivers. Find the area of the smaller sector. Round to the nearest tenth. 130 8.02 [tex]\int_{1}^{7} \frac{1}{x^{8}} d x[/tex]\int_{1}^{7} \frac{1}{x^{8}} d x What is the difference between the beauty in the inside and the beauty of the outside? When the behavior is negatively reinforced, what happens after the behavior during extinction?