Choose the best function for the purpose.

___ You need a collection to grow. Once you have all the data values, you will pass the collection to a function for
processing.

___ You will store a set of data that will not change.

Answers

Answer 1

Answer:

LIST: You need a collection to grow. Once you have all the data values, you will pass the collection to a function for processing.

TUPLE: You will store a set of data that will not change.

Explanation:

EDGE 2021 answers came from the actual reading. Here's the definition Edge provides for a list: "Lists are probably the most commonly used type of collection. A list can grow as you add values to it. You could use a list to quickly save those values and then pass the list to a function for processing."

With all those bolded words, you see list is the answer for that first blank.

Here's the definition Edge provides for tuple and how it proves deque is the WRONG answer: "Lists and deques are mutable—you can change them. "Tuples are immutable (can't change). Tuples are a good choice when you know that, once created, you will not need to change the values in a tuple. The only way to change the values in a tuple is to create a new tuple with the new values. "


Related Questions

WHAT DOES THE SCRATCH CODE BELOW DO?

Answers

i think the correct answer would be b but im not 100% so if i’m wrong please lmk :]

Which of the following is NOT used to describe rhythm?
Beat
Pitch
Tempo
Meter

Answers

Answer:

pitch

Explanation:

Rhythm is, by definition, a strong, regular, repeated pattern of movement or sound. This means that it's a pattern of one thing.

Out of beat, pitch, tempo, and meter, three of them have one thing in common when corresponding to rhythm: monotony. Monotony is the same thing, unchanged in sound and movement.

For example, drawing a straight line continuously.

Beat is a main accent or rhythmic unit in music or poetry.

Pitch is the degree of highness or lowness of a tone.

Tempo is the speed at which a passage of music is or should be played.

Meter is  the rhythm of a piece of poetry, determined by the number and length of feet in a line.

When you listen to music, a rap, or poetry, you can "feel the beat." This means you can pick out the main sound being accentuated, like the "boom-boom-boom" or a clapping track.

Tempo is how fast something goes. A slow song played at a ballet may be different than a rap song, which is fast. Tempo is the speed.

Meter is the rhythm, usually in poetry. It's like a beat and other patterns in the poem.

Pitch is the one that is different. It changes the tone. For example, a high note vs. a low note. That's pitch. When someone swallows helium and talks, their voice is now "high-pitched" because it has a higher-sound tone.

Rhythm does not change—it's a pattern of beats, tempos, and rhythms. Unlike pitch, pitch is musical. Rhythm is not—it's just the pattern.

Pitch is not used to describe rhythm. Hence, option B is correct.

What is rhythm?

Rhythm in music is the arrangement of sounds in time. In its broadest sense, rhythm is the intentional exchange of opposites Greek rhythmos, from from rhein, "to flow".

For instance, while uttering the word "father," we emphasis the first syllable. To produce a recurrent pattern of stressed and unstressed syllables, the words must be grouped in a certain way. Two stressed and unstressed syllables make up a foot.

Rhythm is the deliberate juxtaposition of opposing elements, such as the dynamics of a strong and weak beat, a beat that is played and a quiet but audible rest beat, or a long and short note. In addition to being able to understand rhythm.

Thus, option B is correct.

For more information about rhythm, click here:

https://brainly.com/question/22678004

#SPJ6

Which of the following is not a key component of a structure?
A. Name
B. Properties
C. Functions
D. Enumerations

Answers

D. Enumerations! Because I know that is NOT a leg compentent of a structure

Use the drop-down menus to complete statements about back-up data files.

The default storage location for back-up data files is in the local
folder.

PST files are not
in the Outlook client, and users must
the files

to make them usable.

Answers

Answer:

the third one trust me

Explanation:

Answer:

Documents

accessible

import or export

Explanation:

Edge, just did it

Tina reported a safety hazard at her workplace to OSHA. Representatives from OSHA came to her work and inspected the issue, then gave her employer a citation. The day after Tina's employer received the citation, Tina was given new jobs which were menial and difficult. Which of Tina's rights under OSHA was violated in this situation?

A) Freedom from retaliation for exercising safety and health rights

B) Knowledge of hazardous workplace conditions

C) Obtaining training as provided in the OSHA standards

D) Access to hazard exposure and medical records

Answers

Answer:A freedom from retaliation for exercising safety and health rights

Explanation:

what advice can you give to learners to achieve their goals​

Answers

Answer:

Never give up, take your time, don't get distracted easily, lock your electronics in a box until you finish your work.

Reach for the stars! Always go the extra mile! Never give up!

In a sentence

If you wanted to become a police officer and you had to read boring books and you wanted to give up, but always think "I should always push myself past my limits, If I gave up then how would i know what I could have become?

Trademark

Owned by me

why is it necessary to have usernames and passwords if one is working on a network?​

Answers

Answer:

So nobody finds and uses your personal information

What is the output?

class car:

model = "

age = 0

myCar = car()

myCar.age= myCar.age + 10

print(myCar.age)

Output: ___

Answers

Answer:

10

Explanation:

# A class named car is created

# There are two variables in the class, model and age.

# model is a string holding value for the model of the car.

# age is an integer holding value for the age of the car.

class car:  

   model = ''   # model is initialized as empty string

   age = 0       # age is initialized as 0

myCar = car()    # creating a car object named myCar

myCar.age= myCar.age + 10   # the value of the age is updated by adding 10. (Note that myCar was our object. If we want to access any properties of the object, we type the object name, . , and the property name. Initially, age was 0, we added 10 to it and it becomes 10)

print(myCar.age)    #prints the age of the myCar object, 10

if I make an Xfinity account can I turn off parental controls that my sister put on with her Xfinity account?

Answers

It depends but I don't think it's likely. Parental control needs a pin so it can be turned off and unless you know the code, it might not work.

Write the function greeting that takes a string as input. That string will be formatted as Name Age Hobby, without any punctuation. greeting should split their response into list elements, then use index values to greet them by name and respond that you enjoy that hobby as well, with the format: ‘Hello, ! I also enjoy !' Make sure your output matches this format! For example, greeting('Jose 17 hockey') # => 'Hello, Jose! I also enjoy hockey!' greeting('Cindy 14 robotics') # => 'Hello, Cindy! I also enjoy robotics!'

Answers

Answer:

The function in Python is as follows:

def greetings(details):

   details = details.split(' ')

   print('Hello, '+details[0]+'!, I also enjoy '+details[2])

Explanation:

This defines the function

def greetings(details):

This splits the input string by space

   details = details.split(' ')

This prints the required output

   print('Hello, '+details[0]+'!, I also enjoy '+details[2])

After splitting, the string at index 0 represents the name while the string at index 2 represents the hobby

Find the total cost of a $125 coat purchased in Los Angeles County where the sales tax is 9%. Use the expression c + 0.09c
A
$11.25
B
$112.50
c
$126.25
0 $136.25

Answers

The answer is B I believe

Create a function called biggestNum that returns the largest number in an array of integers. The function is passed only one parameter, an array. In main, ask the user the input eight integers. Each integer should be added to an array called nums. Then, call the function and output the largest number in the array.

Answers

This is for Python

def biggestNum():

   array = []

   for i in range(8):

       number = int(input('Enter number: '))

       array.append(number)

   

   return max(array)

print(biggestNum())

Tip of advice on brainliest.You can copy and paste the question then search it in the search bar because i can guaranty that someone has asked that question before. and then all you got to do that and you can keep your points. hope this helps! ;)

Answers

Answer:

Thx Man i actully didnt think of it before

(Hey do u wanna rp btw (roleplay

Explanation:


This describes what is charted. It can be placed above or below the chart.
a. Chart area
b. Chart title
C. Bar chart
d.Pie chart

Answers

Answer:

a . chart area

This describes what is charted. It can be placed above or below the chart.

Explanation:

The answer choice which describes what is charted and can be placed above or below the chart is:

A. Chart area

According to the given question, we are asked to show the answer choice which describes what is charted and can be placed above or below the chart

As a result of this, we can see that a chart area is an area in a graph which shows the quantitative data in a graphical form and it is based on the concept of line chart and can be placed either above or below the chart.

Therefore, the correct answer is option A

Read more here:

https://brainly.com/question/18524966

A collection of entries posted on a web site and displayed in reverse chronological order (from newest to oldest entries), is known as: А social collaboration. B media sharing. С a blog D a tweet.​

Answers

A) Social Collaboration

Social Collaboration is a way for people to combine their information and make it easier to go through and to work well as a team.

Line charts are best used for

Answers

Answer:

the answer is a

Explanation:

........

Answer:

A, presenting data that changes as a function of time.

______________________________________________

*rate this answer and say thanks please!

Which of the following are logical reasons for using a pie chart to show how employees spend their time at ABC organization? Choose all that apply.

Answers

The logical reasons for using a pie chart to show how employees spend their time at ABC organization are;

the pie chart will help to show breakdown of hours worked by all employees at ABC organization.The pie chart works well to show changes in productivity over the course of a year.The pie chart works well to show trends in data.

What is a pie chart ?

A pie chart  can be regarded as a circular statistical graphic, partitioned to slices to illustrate numerical proportion.

With the use of this pie charts, the ABC organization can be able to know breakdown of hours worked by all employees at ABC organization , hence option 1,2,4 are correct.

Learn more about pie chart  at;

https://brainly.com/question/8407283

Answer:

A, C

Explanation:

its a and c your welcome

how old is the letter 3 on its 23rd birthday when your car turns 53 and your dog needs gas and your feet need lave then when is your birthday when your mom turns 1 and your younger brother is older then you

Answers

Answer:

ummm...idr.k..u got me....wat is it

Explanation:

Jason would like to add visual representations to a table that will be used to easily show comparison data. Which option should he use?

conditional formatting
data bars
expression builder
field criteria

Answers

Answer:

a. conditional formatting

Explanation:

What are inserted to show the total number of pages in Word?

Answers

Answer:

Include total number of pages in the page number

Go to Insert > Page Number.

Do one of the following: Select Current Position if you have a header or footer. Select a location if you have no header or footer yet.

Scroll until you see Page X of Y and select a format.

Select Close Header and Footer, or double-click anywhere outside the header or footer area.

youre content and design should be influenced by the _______ of your users

a. age
b. goals
c. mood
d. attitude

i already know the answer 90%
im just making sure

Answers

b. im pretty sure lol.
B because it’s make more sense

You can set up an AutoFilter to find specific formatting.
True or False
(Microsoft Excel)

Answers

Answer:

I think you can, so id say its true.

Explanation:

to gain a deeper understanding of a text, students should

Answers

Answer:

Should explain what they learned, be able to explain what is happening in great detail, and if its an informational text, then they should use what they learn and apply it in real life.

Explanation:

Anyone who know how to use canva .com please make a logo of the name : Deadly Sins

Answers

Answer:

Yes ma'am as in the anime?

Explanation:

Cuz there's a anime show called 7 deadly sins or just deadly sins?

Answer:

hello give the person above brainlist

Explanation:

Price of Tether coin right now?
Don't answer if u don't know.

Answers

Answer:

Honestly I believe its $1

Explanation:

It just stays on $1 don't know how tho

a*=++a/6+b++ 3 if a=3,b=4​

Answers

Answer:

[tex]a=22.5[/tex]

Explanation:

Given

[tex]a*=++a/6+b++3[/tex]

Required

The result when [tex]a=3[/tex] and [tex]b=4[/tex]

Analyzing the given instruction

a*=(++a)/(6)+(b++3)

Single out and solve the expressions in bracket

(++a) = a -- When the ++ operator appears before an operand, it is called pre increment. meaning that the operation will be done before the operand will be incremented.

So: in this case: ++a = a

[tex]b++3 = b + 3[/tex]

The operator, as used in that statement is the same as: b + 3.

So:

[tex]a*=(++a)/(6)+(b++3)[/tex]

[tex]a*=(a)/(6)+(b+3)[/tex]

[tex]a*=(3)/(6)+(4+3)[/tex]

[tex]a*=0.5+7[/tex]

[tex]a*=7.5[/tex]

The above expression is calculated as:

[tex]a=a*7.5[/tex]

So:

[tex]a=3*7.5[/tex]

[tex]a=22.5[/tex]

14 points, what is an IP v4 packet??

Answers

Answer:

Internet Protocol version 4 (IPv4)

Explanation:

is the fourth version of the Internet Protocol (IP). It is one of the core protocols of standards-based internetworking methods in the Internet and other packet-switched networks. IPv4 was the first version deployed for production on SATNET in 1982 and on the ARPANET in January 1983.

Answer:

Internet Protocol version 4 (IPv4) is the fourth version of the Internet Protocol (IP). It is one of the core protocols of standards-based internetworking methods in the Internet and other packet-switched networks. IPv4 was the first version deployed for production on SATNET in 1982 and on the ARPANET in January 1983.

Explanation:

How does HTTP rely on other layers of the internet?

DNS -

TCP-

IP-

Physical Internet -

Please help !!!

Answers

Answer:

All of your communications are being sent over the Internet so these requests are being sent inside TCP/IP packets and over the physical wires of the Internet. ... It uniquely identifies the location of each computer or device connected to the Internet.

Give 5 advantages of using powerpoint?​

Answers

it can be presented pictorially and thus make it easier to adopt the material

100 POINTS PLEASE HELP Type the correct answer in the box. Spell all words correctly.
John wants to use graphical elements on his web page. Which image formats should he use to keep the file size manageable?
John should use______ formats to keep the file size manageable.?

Answers

Answer:

On a Web page, we'll assume he'll have simple graphic elements like icons, or other simple low-resolution and a lower number of colors (256-), these are usually better saved in GIF format to take less space, just because of the smaller color map, but PNG could also do a great job and  it offers transparency as well (like GIF does).  For more complex elements (larger size and/o more colors like photos), the best format to save them is probably the PNG one.  They will be compressed but still offer a great quality.

Explanation:

100 points yay

But I have only 50

Other Questions
Quincy measured a picnic area near the river and made a scale drawing. He used the scale 1 inch : 10 yards. In the drawing, the picnic area is 17 inches long. What is the length of the actual picnic area? Find the measure of one interior angle in a regular 144-gon. Round to the nearesttenth if necessary.*a)134b)25560c)180d)177.5 Which are factors that can affect supply? Check all that apply.changes in consumer spendingavailability of materials, labor, and resourcesindividual tastes and preferencesproducer's ability to keep up with demandcompetition and substitute goods Why was it important that there was no Maryland session? Labrador retrievers are traditionally black, brown, or yellow. The B allele codes for black fur, and the b allele codes for brown fur. The E allele allows the pigment to be deposited in the fur, while the e allele doesn't allow the pigment to be deposited. If one lab has the genotype bbee, and another lab has the genotype BbEe, what is the chance that an offspring will be brown Does anyone do https://edm.geniussis.com? I need help What are TWO reasons that would make you believe the results of this study? Help Find x. Round to the nearest tenth.I648 If Ethan uses 28 fl oz of sparkling water, how much orange juice will he use and what will be the totalamount of punch?Ethan makes punch by mixing orange juice withsparkling water. He uses the same ratio of orangejuice to sparkling water each time he makes punch.The table shows some of the amounts of orange juiceand sparkling water he uses for different amounts ofpunchUse the number pad to enter your answers in the boxesEthan will usefl oz of orange juice, and he will have a total offl oz of punch.Orange Juice (fl oz) 7 21 28 ?Sparkling Water (fl oz) 4 12 16 28what is the missing number for the question mark? area of rectangular figures PLEASE I NEED URGENT HELP!!!!! lan and Jessica each save their quarters. Ian starts out with 34 quarters and saves 8 quarters a month. Jessica starts out with 2 quarters and saves 16 quarters a month. In how many months will Jessica have the same number of quarters as lan? How many quarters will each of them have? Please help with explanation. examples of present perfect tense True or False: North America and South America have the same seasons at the same time. What the geometric mean of 4 and 8 What did the Munich Conference become a synonym for? Why? relationship.Discuss TWO ways in which some cultural views that exist may affea relationship negatively.1.3Compare TWO ways in which destructive relationships influence ywell-being as opposed to constructive relationships.1.4Recommend TWO ways in which women and children can beprotected from discrimination and violence..5Read the statement below and answer the question that follows.Only 52 per cent of women married or in a union fremake their own decisions about sexual relations, contrause and health care. This shows that we still have a lon 10x-2x+12=2(3x+5)+2x Eric's goal is to walk 2.75 miles to and from the park every day for an entire year. If he meets his goal, how many miles will Eric walk? Error Analysis! Answer both parts of the question.Kaitlyn solved the equation 5y = 15 and found the answer to be y = 75.(Problem down below in file)Part A: In a complete sentence or two, explain what Kaitlyn's error was. What did she do wrong?Part B: What is the correct answer? Show your work and/or explain your reasoning.