in python:
Create the getUserChoice() function.
• Parameter: menuDict is a dictionary for the menu
• Return value: a string that is a valid choice entered by the user
• Get input from the user using the following prompt:
(example) Choice: c
• Use the appropriate loop to continue to ask the user for input until they enter
valid input. Allow the user to enter in upper or lower case. The keys in the
menuDict parameter have the valid letters.
(example) Choice: 1
(example) Choice: x
(example) Choice: a
• Make sure to return an uppercase string.
You should NOT use:
while True loops
break statements
continue statements
def getMenuDict():
menu = {"A":"All national parks", "B":"Parks in a particular state", "C":"The largest park", "D":"Search for a park", "Q":"Quit"}
return menu
def displayMenu(menuDict):
for letter in menuDict:
print(letter, "->", menuDict[letter])
def getUserChoice(): #is this correct? I'm having issues resolving this.
while userChoice == "A,B,C,D,Q"
validChoice= input("Choice: ").upper()
if validChoice in menuDict:
return validChoice

Answers

Answer 1

The implementation of the getUserChoice() function is not correct.

Here is a corrected version for the  `getUserChoice()`.

```
def getUserChoice(menuDict):
   while True:
       validChoice = input("Choice: ").upper()
       if validChoice in menuDict:
           return validChoice
```

It allows the user to enter in upper or lower case, and checks if the input is in the keys of the menuDict. Once a valid choice is entered, it returns the uppercase version of the choice.

Now, `getUserChoice()` takes the `menuDict` as a parameter and uses a `while` loop to keep asking the user for input until a valid choice is entered.

The loop checks if the user's input is in the `menuDict` keys. Once a valid choice is entered, the function returns the uppercase string.

Know more about the `while` loop

https://brainly.com/question/26568485

#SPJ11


Related Questions

What are symptoms of system power problems?

Answers

Signs of power supply failure

Power-on Fails (system fails to start or lock ups)

Spontaneous Rebooting.

Intermittent lock ups during applications.

Hard drive and fan fail to spin up simultaneously (+12 failure)

Overheating of power supply due to fan failure.

Small brownouts that cause the system to fail and restart.

Arrange the steps of the critical thinking process in the correct order.
Place the options in the correct order.


Generate a plan


Knowledge inventory



Consider various outcomes


Evaluate information



Gather information and research


Reflect and adjust



Recognize issue

Answers

A mass information, viewpoints, and arguments. Examine and analyze  data. Determine assumptions. Make the relevance clear. Reach decision or conclusion either be present or speak are critical thinking order.

What are the 4 pillars upon which critical thinking is built?

The integration of a few skills, including observation, information perception from many perspectives, analysis, reasoning, assessment, decision-making, and persuasion, is required for the development of critical thinking capacity in order for it to become ingrained.

What is the sequence of critical thought?

From information collection (knowledge) to understanding (confirmation) to application (using knowledge) to analysis (breaking information down) to evaluation (evaluating the result) to synthesis (putting information together) to creative invention.

To know more about critical thinking visit :-

https://brainly.com/question/12980631

#SPJ1

what routers are compatible with spectrum internet

Answers

Answer:

Arris G34.

Arris Gateway G36.

Arris SB8200v2.

Arris SB8200 Rev 4.

Arris SB8200 Rev 6.

Arris SB8200 Rev 7.

Arris SBG8300.

Arris S33.

Explanation:

As an Internet service provider (ISP), Spectrum does not specifically mention or forbid the usage of any particular routers in conjunction with its internet service.

The majority of routers and modem/router combo devices are supported by Spectrum and function with their network, nevertheless.

Depending on the type of internet service you have, you should seek for a router that supports the required network standards, such as DOCSIS 3.0 or above for cable internet or ADSL/VDSL for DSL connections, to ensure compatibility with Spectrum internet.

It is advised to speak with Spectrum directly or look up any specific advice or lists of compatible routers on their website.

Thus, for clients who prefer to buy equipment from them directly, they might also provide choices for renting or buying routers.

For more details regarding ISP, visit:

https://brainly.com/question/32308931

#SPJ6

help me pleaseeeeeeeeeeeeeeeeeeeee

Answers

Answer:

import random as rd

def buildList(prevList, n):

   for i in range(n):

       number = rd.randint(100,199)

       prevList.append(number)

emptyList = []

n = int(input("How many values to add to the list: \n").strip())

buildList(emptyList,n)

print(emptyList)

emptyList.sort()

print(emptyList)

Which computer memory is higher among digital and analog computer.​

Answers

Answer:

Analog computer has very low or limited memory and it can store less amount of data. Digital computer has very big memory it can store large amount of data

Explanation:

Answer:

Analog computers have low or limited public memory capacity and thus can only store less data. Digital computers have large memory and thus are able to store large amounts of data. Analog computers have no state. Digital computers have On and Off these 2 steps.

Explanation:

Analog computer has very low or limited memory and it can store less amount of data. Digital computer has very big memory it can store large amount of data . Thanks for ur big amount of pointsssss.

Security professionals use the results of OS and network scanning activities to identify weaknesses in their environment.

Answers

True. Security professionals use the results of OS and network scanning activities to identify vulnerabilities in their environment.

Active operating system fingerprinting allows attackers to obtain information about targets without triggering network defenses such as firewalls.

Network is a broad term in the world of technology. A network is known as the backbone of a communication system and is used to share data and resources over data links.

The next term that enters the frame is network security. Network security is the accepted set of rules, policies, and directives for monitoring and preventing network abuse and manipulation. Network scanning deals with network security and is the activity of identifying network vulnerabilities and loopholes to protect the network from unwanted and anomalous behavior that can damage the system. It can even damage your personal and confidential information.

Know more about firewalls here:

https://brainly.com/question/13098598

#SPJ4

: 2.12 LAB 2.3: File I/O - CSV update
This program should
• get names of input and output files from command line (NOT from user input)
• read in integers from a csv (comma-separated values) file into a vector
• compute the integer average of all of the values convert each value in the vector to the difference between the original value and the average
• write the new values into a csv file #include

Answers

To read a CSV file, We will open the file using ' f stream ' or ' if stream ' C++ library. Then, we will read the file line by line using the get line() method as each line ends with a newline character.

The create operation is similar to creating a text file, i.e. input data from the user and write it to the csv file using the file pointer and appropriate delimiters(‘, ‘) between different columns and ‘\n’ after the end of each row. Read data from a file and compare it with the user input, as explained under read operation. Ask the user to enter new values for the record to be updated. Update row[index] with the new data. Here, index refers to the required column field that is to be updated. Write the updated record and all other records into a new file(‘reportcardnew.csv’).At the end of operation, remove the old file and rename the new file, with the old file name, i.e. remove ‘reportcard.csv’ and rename ‘reportcardnew.csv’ with ‘reportcard.csv’

To learn more about CSV file click on below link.

https://brainly.com/question/14492851

#SPJ4

Given that your Windows workstation has Automatic Private IP Addressing (APIPA) implemented using default settings, which of the following TCP/IP addresses could be automatically assigned to the system should your DHCP server go down or become inaccessible?

10.0.0.65
169.198.1.23
172.16.1.26
168.254.10.25
192.168.1.22
169.254.1.26

Answers

Should your DHCP server fail or become unavailable, 169.254.1.26 TCP/IP address may be automatically given to the system.

The Internet addressing method built into TCP/IP allows users and programmes to uniquely identify a network or host. An Internet address allows data to be transmitted to the specified destination, much like a postal address does.

On the internet, network devices are connected via a set of communication protocols known as TCP/IP, or Transmission Control Protocol/Internet Protocol. A private computer network furthermore use TCP/IP as its communication protocol (an intranet or extranet).

The full IP suite, a group of protocols, is known together as TCP/IP. TCP and IP are the two most popular protocols, while the suite includes other ones as well. The TCP/IP protocol suite is used to create an abstraction layer between internet applications and the routing system.

Learn more about Address here:

brainly.com/question/12704041

#SPJ4

How do you fix failed to login the authentication servers are currently not reachable?

Answers

There is no action that you can take to fix this problem on your end, you will need to wait until the servers are back up and running. You can check the status of the servers on the official website or social media accounts of the game or application.

The error message "failed to login the authentication servers are currently not reachable" typically indicates that the servers responsible for handling authentication for the game or application are currently unavailable. This can occur for a variety of reasons, such as server maintenance, technical difficulties, or a high volume of users trying to access the servers at the same time. This error message usually means that the servers that handle authentication for the game or application are currently down or unavailable.

Learn more about fix problem, here https://brainly.com/question/20371101

#SPJ4

The following should be considered when assessing risk: ___________a. The consequences of your actions.b. How will an adversary benefit from the indicator?c. Will something you do or say provide an indicator to the adversary.d. What's the effect on the mission?e. What's the cost of avoiding risk?

Answers

In general, to conduct an assessment, you should: Identify hazards. Determine the probability of damage such as: B. Occurrence of injury or illness and its severity.

Consider not only normal operating conditions, but also non-standard events such as maintenance, shutdowns, power outages, emergencies, and extreme weather conditions. soon. They are especially dangerous to humans. Once identified, analyze and assess the likelihood and severity of the risk. Once that determination has been made, the next step is to determine what actions should be taken to effectively eliminate or control the harm. CSA Standard Z1002, Occupational Health and Safety - Hazard Identification and Elimination, and Risk Assessment and Management use the following terms: Hazard Identification – The process of finding, listing and characterizing hazards.

Risk Analysis – A process for understanding the nature of hazards and determining the level of risk.

Notes: (1) Risk analysis provides the basis for risk assessment and risk management decisions.

(2) Information may include current and historical data, theoretical analyses, informed opinions and stakeholder concerns.

(3) Risk analysis includes risk assessment.

Know more about Information here:

https://brainly.com/question/29244533

#SPJ4

How to fix the "cannot update a component while rendering a different component" ?

Answers

To fix this error, you should make sure that the setState method is only called after the component has finished rendering. One way to do this is by using the setState callback function. Another way to fix this issue is by using the useEffect hook and useState hook in case of using functional components in React.

The error "cannot update a component while rendering a different component" usually occurs when a component's setState method is called while that component is in the process of rendering. This can happen if a child component's setState method is called during the parent component's render method. This function is called after the component's state has been updated, and the component has finished re-rendering.

Learn more about Rendering, here https://brainly.com/question/28950572

#SPJ4

(T/F) You can compare enumerators and enum variables with relational operators.

Answers

Answer:

True you can compare enumerators and enum with variables with relational operators.

two examples of digital citizens​

Answers

Answer:

behaving lawfully – for example, it's a crime to hack, steal, illegally download or cause damage to other people's work, identity or property online.

protecting your privacy and that of others.

Which migration strategy can migrate an application to AWS in the shortest amount of time and with the least cost?

Answers

Lift and shift is a beginner approach to get started with application migration or optimization. This approach offers a quick and easy cloud migration solution, since you can migrate with minimal disruption to your applications.

Migrate databases to AWS quickly and securely. The source database remains fully operational during migration, minimizing downtime for applications that depend on the database. Using AWS DMS to migrate data to AWS is simple. You start by spinning up replication instances in your AWS environment, and then AWS DMS connects the source and destination database endpoints. Full hybrid migrations are best for large organizations that have many thousands of mailboxes and need full integration between your on premises exchange organization and Microsoft 365 or Office 365. Here the general scripted process create a new exchange image virtual machine with the new code. Boot a number of virtual machines with that image equal to the number currently running.

To learn more about migration solution please click on below link.

https://brainly.com/question/18831651

#SPJ4

How to fix unknown usb device device descriptor request failed?

Answers

Answer:

what usb type is it? what is it used for? what type of pc is being used?

Explanation:

Training for appropriate personnel would include people who read criminal histories but do not have a NCIC workstation of their owna. Trueb. False

Answers

Training for appropriate personnel would include people who read criminal histories but do not have a NCIC workstation of their own. is True.

Who is in charge of ensuring that the FBI CJIS security policy is followed?Every three years, the CJIS Audit Unit (CAU) performs government audits to make sure that municipal, state, tribal, and federal entities are still in compliance with CJIS.Unless they are guided into certain locations, custodial staff members who access the terminal area are required to undergo training and a fingerprint background check. Individuals who study criminal histories but do not have their own NCIC workstation would be included in the training for suitable staff.Vendors that provide software for NCIC access would be included in training for the right employees. Unless your agency's email system satisfies all the standards described in the most recent CJIS Security policy, you should never communicate Criminal Justice Information (CJI).

To learn more about NCIC refer to:

https://brainly.com/question/29989721

#SPJ4

Windows and Linux command.

- Displays installed network interfaces and the current config settings for each

Answers

The "ifconfig" command can be used to show the current network configuration information, configure a network interface's hardware address, ip address, netmask, or broadcast address, create an alias for the network interface, and enable or deactivate network interfaces.

Use the ifconfig command to view or set up a network interface. The ifconfig command may be used to set or show the current network interface configuration information as well as to assign an address to a network interface. For each interface that exists on a system, the network address must be specified using the ifconfig command during system startup. The Windows system's network interfaces' fundamental IP addressing details are shown via the ipconfig command. The IP address and subnet mask are also included in this information. However, output that is more detailed might be helpful.

To learn more about "ifconfig" click the link below:

brainly.com/question/13097970

#SPJ4

If you were giving advice to a friend, what would you say are the most important things to know about investing?

Answers

Answer:

The advice I would give to a friend is to not invest more than they are willing to lose. Another thing I would tell them about is liquidity and how if there is more liquidity, there is usually less return.

Explanation:

___A special socket for inserting and securing a processor (Zero Insertion Force).

Answers

ZIF socket: A special socket for inserting and securing a processor.

 

A ZIF (zero insertion force) socket is a special type of socket that is used to hold a processor in place on a computer motherboard. The socket is designed to make it easy to insert and remove the processor without applying too much force or causing damage. The socket typically features a lever or handle that can be used to lock the processor in place and a set of pins that make contact with the processor's pins. ZIF sockets are commonly used in desktop and laptop computers, as well as in some servers and other types of computer equipment.

Learn more about socket here: brainly.com/question/5160310

#SPJ4

difference between complier and interpreter . Any 7 / 6 points ​

Answers

Answer: A compiler takes your program and converts it into object code which is also known as binary which is typically stored in a file and can be directly executed by the machine after you open it.

An Interpreter directly executes instructions written in a programming language without previously converting them to an binary or machine code.

hope i helped

Explanation:

Please click the crown on my post to mark me best. It's right by the stars and like.

The ability to conduct electricity in the solid state is a characteristic of metallic bonding.

Answers

That one property of metallic bonding is its capacity to conduct electricity in the solid state. The existence of mobile electrons offers the most compelling explanation for this property.

What is Metallic bonds ?Metallic bonds are created when electrically positive metallic atoms exchange their available electrons with one another.In essence, the mobile electrons in the metal cation create an ocean of electrons.Metallic bonds, for instance, are formed by metals like copper, gold, and silver.The transfer of free electrons between two points is also known as current.As a result, we may say that one property of metallic bonding is its capacity to conduct electricity in the solid state. The existence of mobile electrons offers the most compelling explanation for this property.

The complete question is The ability to conduct electricity in the solid state is a characteristic of metallic bonding. this characteristic is best explained by the presence of

To learn more about metallic bonding refer to:

https://brainly.com/question/8617106

#SPJ4

#-----import statements-----Location to import all the modules that you will use to make the Catch-A-Turtle game
#-----game configuration----Where all the variables will be defined and initialized
#-----initialize turtle-----Where all the turtles for your game will be creatednerd = trtl.Turtle()nerd.shape(tur_shape)nerd.shapesize(tur_size)nerd.fillcolor(tur_Color)

Answers

fd(distance) | forward(distance): advance the turtle. Move the turtle backwards with the commands back(distance), back(distance), and back(distance).

A pre-installed Python module called turtle gives users a virtual canvas on which to draw shapes and images. The library gets its name from the on-screen pen that you use to sketch, known as the turtle. Follow these instructions to instal the Turtle package in Linux: Step 1: First, we'll run the following command to instal Python3 as it is right now. Step 3: We will now instal the Turtle package using the PIP manager. To instal the Turtle library, enter the following command into the terminal.

To learn more about turtle click the link below:

brainly.com/question/30037186

#SPJ4

How to fix error occurred during initialization of vm could not reserve enough space for object heap?

Answers

Answer:

To fix the error "Could not reserve enough space for object heap", add the options "-Xmx<size>m" to set the maximum size for the object heap memory allocation. This must be set large enough to accommodate loading your application into memory, but smaller than your requested total memory allocation by 2GB.

Explanation:

James needs to create a new résumé and has found a résumé builder to help him. He has multiple college degrees to list under Education.

In what order should he enter his levels of education?

Most recent degree to first
Alphabetical
First degree to most recent
Favorite college

Answers

most recent degree to first

explination: explination.

In a case whereby James needs to create a new résumé and has found a résumé builder to help him the order  he should enter his levels of education is Most recent degree to first, first option is correct.

What is résumé?

A person creates and uses a résumé sometimes written resume to present their educational history, professional experience, and accomplishments. Although there are many uses for resumes, they are most frequently employed to find new jobs.

A standard résumé includes a summary of education and employment history that is pertinent. A resume is a one-page description of your educational background and employment history that is pertinent to the position you are applying for. A CV is a more comprehensive academic journal that lists all of your experience, credentials, and publications.

Learn more about résumé at;

https://brainly.com/question/14218463

#SPJ3

A registry is which of the following?

Software that supports patient identification and location of records
Specialized database for a predefined set of data and its processing
Storage location for archiving data not frequently used
System that manages cloud computing

Answers

A registry is a particular database that is used to process a specific collection of data.

What does a register serve as?

The registry aids Windows in managing and controlling your computer by giving users access to critical resources and aiding crucial programmes with self-configuration. The register is a hierarchical database containing keys and values.

What exactly does corporation registration mean?

A register is the records office in charge of receiving, managing, and maintaining current records (IRMT, 1999). Additionally, a registry's major responsibility is to retain all of an organization's records and exert intellectual control over them.

A database is a collection of data organised for quick access, administration, and update. In computer databases, information like as sales transactions, customer information, financial data, and product information are often stored as collections of data records or files.

Learn more about Database here:

https://brainly.com/question/29775297

#SPJ4

Bookending is a conclusion technique in which the speaker comes back to a story or idea mentioned in the introduction.

Answers

Bookending is a technique for concluding a speech in which the speaker returns to a story or idea mentioned in the introduction. So the given statement is true.

What is Bookending? The bookend technique is a framing device that can be found in a variety of forms of storytelling, including film, television, poetry, and novels. The device frames the entire story by tying the beginning and end together in some way. This is accomplished by having the film's beginning and ending mirror each other.A bookend is a literary technique used primarily in novels in which the author states an idea, scene, image, anecdote, or similar at the beginning of the literary work and ends this element just at the end of the literary work or when the main story has ended. This means that bookends function as both the beginning and end of a literary work.

The complete question:

"Bookending is a conclusion technique in which the speaker comes back to a story or idea mentioned in the introduction. State true or false."

To learn more about bookending technique refer to :

https://brainly.com/question/4186883

#SPJ4

What’s the correct sorting function to list Colors in alphabetical order (A to Z)?
Color Number
Red 100
Orange 112
Yellow 90
Green 85
Blue 120

a. ASCENDING
b. DESCENDING
c. EQUAL TO A TO Z

Answers

Data can be sorted in a variety of ways by utilising the Sort option found in the Data menu item. Following this, we can choose the Sort On option from the drop-down menu to order by the font colour or cell colour.

What sorting method should be used to list items from A to Z?

Select "Home" > "Sort." Set the Sort by option to Text and Paragraphs. Selecting either Descending or Ascending (Z to A). Choose OK.

How do you put an alphabetical list in order?

Compare the initial unit letter by letter to alphabetize names. File in terms of the second letter if the first two letters are the same, and so on. Individuals' names are organised as follows: first or last name,

To know kore about Data visit:-

https://brainly.com/question/13650923

#SPJ1

How do you make a onstruct binary tree from preorder and inorder traversal?
Given two integer arrays preorder and inorder where preorder is the preorder traversal of a binary tree and inorder is the inorder traversal of the same tree, construct and return the binary tree.

Answers

Here is a step-by-step algorithm to construct a binary tree from its preorder and inorder traversals:

Start with the first element of the preorder array, which is the root of the tree.Find the root in the inorder array. Recursively construct the left subtree by calling the same algorithm on the elements of the left subtree, using the portion of the preorder array that corresponds to the left subtree.Recursively construct the right subtree by calling the same algorithm on the elements of the right subtree, using the portion of the preorder array that corresponds to the right subtree.Return the root node of the constructed tree.

It's a divide and conquer approach where we start from the root of the tree and keep on dividing the tree in left and right subtree. The preorder array will give us the root element first and inorder array will give us the elements in left and right subtree. The elements to the left of the root in the inorder array are the left subtree, and the elements to the right of the root are the right subtree.

Learn more about binary tree, here https://brainly.com/question/13152677

#SPJ4

Use the code to complete the statement.

def math(numA, numB): # Line 1
return numA ** numB # Line 2
print(math(2, 3)) # Line 3
The first line of code executed in this Python program is line

A. Line 1
B. Line 2
C. Line 3

Answers

If the line is gonna be like taht then it will b 20 times

Answer:

A. Line 1

Explanation:

In the given code, Line 1 defines a function named "math" that takes in two parameters, "numA" and "numB". Line 2 uses the return statement to return the result of "numA" raised to the power of "numB". Line 3 calls the "math" function and passes in the arguments 2 and 3, and then prints the result.

Which of the problems cannot be solved by backtracking method?(a) n-queen problem(b) subset sum problem(c) hamiltonian circuit problem(d) travelling salesman problem

Answers

The N-queens problem, the partial sum problem, and the Hamiltonian cycle problem can be solved by the backtracking method, and the traveling salesman problem can be solved by the branch-and-bound method. 2

What's the problem with backtracking?

In a backtracking problem, if no viable solution to the problem is found, the algorithm tries to find a sequence path to the solution with some small checkpoints to backtrack the problem.

What can Backtrack solve?

Backtracking is an algorithmic technique for recursively solving a problem by removing solutions that never satisfy the constraints of the problem and trying to build the solution piecemeal (time can be any level here). is called elapsed time to reach).

To know more about backtracking method visits :-

https://brainly.com/question/30035219

#SPJ4

Other Questions
You have a data set with a Gas Price variable. It lists the price of a gallon of regular gasoline at a randomly selected 100 gas stations around the country in a particular week. You calculate a 95% confidence interval for the mean of Gas Price, and it turns out to be $2.43 plus or minus $0.16. Which of the following most closely reflects what you can conclude? a. If your sample size had been 400, and you had observed the same sample mean but a sample standard deviation twice as large as in your original sample, the 95% confidence interval would have been approximately $2.43 plus or minus $0.08. b. If your sample size had been 400 and you had obtained the same sample mean and sample standard deviation as in your original sample, the 95% confidence interval would have been approximately $2.43 plus or minus $0.08. c. If you had observed the same sample mean and sample size, but a sample standard deviation twice as large as the one you observed, the 95% confidence interval would have been approximately $2.43 plus or minus $0.24. d. If you had observed the same sample mean and sample size, but a sample standard deviation half as large as the one you observed, the 95% confidence interval would have been approximately $2.43 plus or minus $0.04. explain any four consumer rights as stipulated in the CPA Which were two pull factors that drove many European immigrants to America in both the 1600s and the early 1800s?major famines and povertyavailable land and economic opportunityreligious persecution and unfair treatmentavailable jobs and political problems 13 Expica si los tras elaborados por los cronistas pueden ser considerados como un aporte histrico o un aporte literario o si estas dos disciplinas se fusionan para dar testimonio de una epoca.R who became the first governor general of India in 1773 What specifically causes the vaporization of the lower boiling liquid on the packing in a fractional distillation 2. What is the purpose of the speaker's allusion to the labyrinth?A to compare the abilities of a powerful Greek goddess to the heroicdeeds of Theseusto suggest that readers can trap themselves inside the many layersof meaning suggested by figuratne languageC to highlight the puzzling yet string message at the heart ofthe poerD to emphasize that readers can lose themselvesin a good poem.just as they would in a maze In what direction are plates moving at mid ocean rifts please help me!!!! I will mark BRAINLIEST( u do not need to start with the sentence) A + 1.05 = 3.7 plz help "But soft! What light through yonder window breaks?" (Romeo and Juliet, Act II, scene ii) PLEASE TRANSLATE INTO MODERN ENGLISH!!!! Turn y=-1/5x-4 into standard form The equation below shows the total volume (V), in cubic units, of 4 identical boxes with each side equal to s units: V = 453 If s = 2.5 units, what is the value of V? Une correctamente las parejas.1. Dnde est la casa?Est en Buenos Aires.2. Cundo es tu fiesta?Es el dos de octubre.3. Por qu estudias tanto?4. Adnde vas maana?5. Cmo es tu hermano?Est bien.Es muy amable.Voy al cine.6. Cmo est tu madre?Porque me gusta. Tan(x) *cos(x)*cos(x)= ( the answer should have sin only ) ASAP Two containers of gasoline hold a total of 100 gallons. The big container can hold 20 gallons less than twice the small container. How many gallons does each container hold? What are some examples of conscious and unconscious behaviors? Illustrate why the behaviors are unconscious or conscious by neuron function/ location of brain activity related to the behavior. (170 words) Our people are good people; our people are kind people. Pray god some day kind people wont all be poor. Pray God some day a kid can eat. And the associations of owners knew that some day the praying would stop. And theres the endWhat is the tone and to who or what is it directed in this passage?A. Admiring tone towards the ownersB. Solemnly reverent tone toward the migrant workersC. Quietly furious tone toward the owners Simplify the expression below. 12a85a+12 Please help me I need these answers