How to create this in python using for loops?


For input, ask the user for the investment amount, interest rate, and duration min and max

Answers

Answer 1

To create this in python using for loops is  investment = float(input("Enter the investment amount: ")) , interest = float(input("Enter the interest rate: "))

min_dur = int(input("Enter the minimum duration: "))

max_dur = int(input("Enter the maximum duration: "))

# Calculate the future value of the investment using a for loop

future_value = 0

for x in range(min_dur, max_dur + 1):

  future_value += investment * (1 + interest) ** x

# Print the future value of the investment

print("The future value of the investment is:", future_value)

What is the Loop?

A loop is a structure in the programming language that lets code run again and again. It can be used to carry out a set of instructions until a particular condition is satisfied or a particular number of times are repeated. When dealing with repetitive tasks like printing a series of numbers or doing a calculation on a large set of data, loops are helpful.

What is a Python loop?

Looping is the process of repeating something until a particular condition is met. In Python, a for loop is a control flow statement that repeats the execution of a set of statements as long as the condition is met. An iterative statement is another name for this kind of statement.

Learn more about loop:

brainly.com/question/23419814

#SPJ4


Related Questions

Which parameter can be used with the ping command to send a constant stream of packets when using a Windows device?
a. -f
b. -p
c. /all
d. -g
-t

Answers

Answer:

- t

Explanation:

Which of the following commands searches man pages for a specific keyword? (Select 3.)apropos
whatis
man -k

Answers

The following commands searches man pages for a specific keyword: apropos, whatis, and man -k.

These commands are useful for finding information about a specific topic or keyword in the man pages, which are the online manual pages for Unix and Linux systems. The apropos command searches the man pages for a specific keyword and returns a list of all the man pages that contain that keyword. The whatis command provides a brief description of a specific command or keyword. The man -k command is similar to the apropos command, but it searches the man pages for a specific keyword and returns a list of all the man pages that contain that keyword.

Learn more about command line tools in Linux or Unix-like operating systems here:https://brainly.com/question/15616559

#SPJ11

Does anybody have the code to 2. 19. 4: Guess a Number 2. 0 in codeHS??

Answers

Answer:speed(0)

secret_number = 5

pensize(10)

def green_check():

   color("green")

   penup()

   backward(25)

   right(45)

   pendown()

   forward(35)

   left(90)

   forward(75)

   

def draw_arrow():

   color("red")

   left(90)

   forward(50)

   left(45)

   backward(25)

   forward(25)

   right(90)

   backward(25)

   forward(25)

   left(45)

   backward(100)

   forward(50)

   right(90)

   

user_number = int(input("Guess a number between 1 and 10: "))

while user_number != secret_number:

   if user_number < secret_number:

       draw_arrow()

   else:

       left(180)

       draw_arrow()

       right(180)

   user_number = int(input("Guess a number between 1 and 10: "))

   clear()

   

green_check()

Explanation:try it

In a three-tier database architecture, what tier is used to model data?

Answers

The third tier is used to model data. This tier is often referred to as the Data Modeling tier and is responsible for the conceptualization of data and the organization of the data into a logical structure.

What is Data?
Data can be defined as a collection of values, symbols, or observations that are organized and processed so that they can be utilized for further analysis or interpretation. Data can come in many forms, such as numbers, text, images, audio, or video. Data can also be collected from a variety of sources, including surveys, observations, experiments, and databases. Data can be used to answer questions, make decisions, or support research.

To know more about Data
https://brainly.com/question/30395228
#SPJ4

6. 3 Code Practice edhesive python


import simplegui


def draw_handler(canvas):

# your code goes here


frame = simplegui. Create_frame('Testing', 600, 600)

frame. Set_canvas_background("Black")

frame. Set_draw_handler(draw_handler)

frame. Start()

Answers

The code given in the question is for creating a simple game using the SimpleGUI library in Python.  The draw_handler function is used to draw on the canvas of the game window.

To complete the code, you need to add the code for drawing on the canvas inside the draw_handler function. Here is an example of how to do this:

```python

import simplegui

def draw_handler(canvas):

# Draw a circle at the center of the canvas

canvas.draw_circle((300, 300), 50, 2, "White", "White")

frame = simplegui.create_frame('Testing', 600, 600)

frame.set_canvas_background("Black")

frame.set_draw_handler(draw_handler)

frame.start()

```

This code will draw a white circle at the center of the canvas. You can add more drawing commands inside the draw_handler function to create the desired graphics for your game.

The draw_handler function is used to draw on the canvas of the game window. The frame is created using the Create_frame function, and the Set_canvas_background function is used to set the background color of the canvas. The Set_draw_handler function is used to set the draw_handler function as the handler for the canvas, and the Start function is used to start the frame.

Learn more about python:

brainly.com/question/28675211

#SPJ11

cameras transfer aspects of space to viewers. what is this process called?

Answers

The process of transferring aspects of space to viewers through cameras is called "perspective projection."

It's a mathematical method that transforms a 3D scene into a 2D image by projecting the 3D points onto a 2D plane, such as an image sensor. Perspective projection takes into account the position of the viewer (the camera) and the relative position of the objects in the scene to create a realistic image. It also involves the concept of a "viewing frustum," which defines the field of view of the camera and the range of distances that will be in focus. Perspective projection is a fundamental technique used in computer graphics, video game development, and virtual reality to create immersive 3D environments that appear realistic to the viewer.

To know more about projection visit:

https://brainly.com/question/7953972

#SPJ1

why do we analyze the expected running time of a randomized algorithm and not its worst-case running time?

Answers

When values generated by a random number generator are used to determine an algorithm's behavior in addition to its input, the algorithm is said to be random.

You examine what is anticipated for this reason. A worst-case scenario analysis simply considers the input. We rarely have complete control over how an algorithm will be used, therefore we frequently are unable to derive an average-case measurement that is likely to be accurate. The worst-case scenario provides us with a performance upper limit. An algorithm will never do worse than what we determine if its worst case analysis is done. The random coin tosses determine the algorithm's execution time when one is given. The predicted running time is the anticipated length of time given the coin tosses.

Learn more about performance here-

https://brainly.com/question/14617992

#SPJ4

given the list (xlsx, xls, xlr, txt, ods), what is the order of the elements after completing insertion sort's second outer loop iteration?

Answers

After completing the second outer loop iteration of the insertion sort algorithm on the given list, the order of the elements will be ("xls", "xlr", "xlsx", "txt", "ods").

In the second outer loop iteration of the insertion sort algorithm, the first two elements are already sorted, so the algorithm will compare the third element, "xlr", with the first two elements, "xlsx" and "xls", to determine the correct position to insert it. Since "xlr" comes before "xlsx" and after "xls" alphabetically, it will be inserted between the two. The list will then become ("xls", "xlr", "xlsx", "txt", "ods").

Therefore, after completing the second outer loop iteration of the insertion sort algorithm on the given list, the order of the elements will be ("xls", "xlr", "xlsx", "txt", "ods").

Learn more about algorithm :

https://brainly.com/question/22984934

#SPJ4

one of the most significant influences on any society is its material culture. and most changes in material culture tend to be technological. place each technological change in chronological order. a) Television b) internet c) smartphones d) tablet devices

Answers

One of the biggest influences on any society's material culture is the use of technology like television, the internet, cellphones, and tablets.

What factors determine meaningful influence?

The existence of issued securities with holders who currently have voting rights, rather than potential voting rights, is what gives rise to the presumption of significant influence. Typically, a shareholder would not exercise any future voting rights that might be made available (e.g., call options or convertible instruments).

What exactly is PSC substantial influence or control?

A person who owns or has significant control over your business is referred to as a PSC. They are referred to as "beneficial owners" at times. You must identify your PSC and provide their name to us. This might be you or a representative of your business.

To know more about internet visit:-

https://brainly.com/question/26417417

#SPJ4

What is the current state of AI in Manufacturing?

Answers

AI in manufacturing is still in its early stages and is currently being used primarily for predictive maintenance and process optimization. By leveraging machine learning algorithms and analytics tools, AI can detect potential problems before they happen and help to optimize processes by analyzing data from sensors and machines. In addition, AI can be used for more complex tasks such as automating quality assurance, testing products in real-time, and optimizing supply chain management. There are also several other applications of AI in manufacturing that are being explored, such as robot-assisted automation, autonomous vehicles, and 3D printing.

Write a Python program in codehs, using post-test while loop, to print the powers of 2 less than one million, starting from 2 to the power of 0.

Hint: Recall from Python Basics Math Operators Unit that ** is the exponentiation operator.

Usage: To find 10 to the power of 5, do 10 ** 5 in Python.

Paste your program in the space provided below, after you test its functionality in codehs.

Answers

This loop will print out the powers of 2 (2^0, 2^1, 2^2, etc.) until it reaches 2^power which is greater than 1 million. The power variable is incremented by 1 each time the loop runs which allows us to keep track of which power of 2 we are at.

What is the variable ?

A variable is a named memory location used to store a value that can be changed during the execution of a program. Variables are essential to programming, as they allow programmers to store and manipulate data during the execution of a program. Variables are typically declared with a specific data type, such as an integer or string, and they are assigned a unique name so they can be accessed and manipulated within the program.

#Start

power = 0

while 2**power < 1000000:

   print(2**power)

   power += 1

#End

To learn more about variable

https://brainly.com/question/29360094

#SPJ1

Clarice has animated a 3D airplane with visible passengers in the windows. She wants the plane to move on a predetermined path across the screen. What form of animation should she use?

Answers

To animate the 3D airplane with visible passengers moving along a predetermined path across the screen, Clarice should use keyframe animation.

What is animation?

Animation is a technique used to make stationary images appear to be moving.

Traditional animation involves hand-painting or drawing pictures on transparent celluloid sheets, which are then captured and shown on film.

By specifying an object's key locations and transformations at certain points in time, keyframe animation allows the computer to interpolate the motions and transformations between those key frames.

The precise movement of the airplane along the predetermined path can be controlled using this style of animation.

In order to provide the impression of life and add more energy to the scene, Clarice can also simulate the motions of the passengers inside the aircraft.

Thus, she should use keyframe animation.

For more details regarding keyframe animation, visit:

https://brainly.com/question/8017510

#SPJ9

some alphabet letters are floating in a bowl of soup. you want to move a letter that is far away from you closer to you. how could you rotate the bowl to do that?

Answers

In a bowl of soup, you can turn the bowl so that a letter that is far away from you travels closer to you by doing so. You can accomplish this by gently stirring the soup with the spoon or by making a few tiny waves in it.

In many languages, alphabet letters constitute an essential component of written communication. For instance, the English alphabet, which has 26 letters, is used to create words and convey meaning. The shapes and sounds of each letter vary, and they can be combined to create syllables, phrases, and sentences. Alphabet letters serve a purpose in language, but they also have aesthetic and artistic value. They can be utilised to produce calligraphy, typography, and other visual arts. An significant topic of linguistics, the study of alphabetic characters and how they are used in communication has applications in psychology, education, and other fields.

Learn more about letters here:

https://brainly.com/question/1853133

#SPJ4

which syslog level indicates an emergency that could severely impact the system and cause it to become unusable?

Answers

Answer: Level 0

Explanation:

If replacing the battery does not fix malcolm's problem, what other part might need repairing or replacing?1. AC Adapter2. SSD3. System board4. Power button

Answers

If replacing the battery does not fix Malcolm's problem, then another part that might need repairing or replacing could be the AC adapter, SSD, system board, or power button.

These are all important components of a computer, and if any of them are not functioning properly, it can cause problems for the user.

It is important to diagnose the issue and determine which part may need to be repaired or replaced in order to fix the problem.

A battery is a form of energy that allows the operation of devices, by means of an internal electrical circuit.

Learn more about Bateria in:

https://brainly.com/question/29150044

#SPJ11

why does my keyboard keep popping up when i try to configure my controller on dolphin for steam deck

Answers

It is likely that your keyboard is set as the default controller in Dolphin. To fix this, open Dolphin, go to the Controller Settings tab, and select your controller from the drop-down menu.

What is Keyboard?
A keyboard is a device used to input data into a computer or other electronic device. It typically contains keys for each of the letters of the alphabet, numbers, punctuation marks, and other keys for special functions. The keys are arranged in a standard layout, making it easier for users to quickly and accurately type out words and phrases. Keyboards can also be used to control video games and other applications. With the advent of wireless technology, keyboards have become increasingly popular for use with laptops and tablets.

To know more about Keyboards
https://brainly.com/question/26632484
#SPJ4

If you needed to create a tag that represent values that are currently stored in an sql database, which tag is ideal to use?

Answers

If you need to create a tag that represents values stored in an SQL database, the ideal tag to use would be the <data> tag.

he <data> tag is a generic tag that can be used to represent any type of data, including data retrieved from a database. The tag can be used to encapsulate the values returned by a database query in a structured format that can be easily processed and manipulated by other software components. By using the <data> tag, you can ensure that the data is well-formed and easily accessible to other components in your application. Additionally, the use of a generic tag like <data> makes your code more modular and easier to maintain in the long run. If you need to create a tag that represents values stored in an SQL database, the ideal tag to use would be the <data> tag.

Learn more about database :

https://brainly.com/question/30634903

#SPJ4

A resistor with a large physical size (I.e.,large dimensions ) gender has

Answers

In comparison to a resistor with a smaller physical size, a resistor with a larger physical size typically has a lower resistance value. This is thus because a resistor's resistance is directly inversely correlated with its cross-sectional area and directly correlated with its length.

what do you mean by resistor?

A piece of electronics that opposes the flow of current in a circuit. Carbon in the form of chunks, thin films, or other resistant materials is frequently used to create resistors. Wires looped around a cylinder can also be used to create them. In order to block undesirable electrical signals, resistors are used in electrical equipment like computers and cell phones. Contrary to popular belief, resistors are extremely necessary to the proper operation of electronics even though they consume energy.

How do computer resistors work?

A resistor is an electrical component with two terminals that generates electrical resistance in circuits. Resistors have a variety of roles in electronic circuits, including limiting current flow, controlling signal levels, dividing voltages, biasing active components, and terminating transmission lines.

To know more about Resistors visit:

https://brainly.com/question/13265041

#SPJ1

this week, you learned entity framework for relational database. you followed these steps: model classes dbset properties and constructor of dbcontext add-migration update-database are the two approaches the same or different? why

Answers

The two approaches are different. The model classes and DbSet properties and constructor of DbContext are used to define the database structure and create the Entity Framework Data Model.

What is Framework?
Framework is a set of tools and guidelines for developing software applications. It provides a standard way of building and deploying applications and ensures that code is written in a consistent, reliable and maintainable way. It provides structure to a project, allowing developers to better organize their code, and also facilitates reusability as well as code sharing. It also reduces development time by providing pre-written code, which can be reused across projects.

To know more about Framework
https://brainly.com/question/29454043
#SPJ4

Eduardo, an account executive, has a difficult ethical decision to make regarding one of his clients. In determining what to do, he knows that

Answers

Eduardo should make a morally and legally sound decision, avoid illegal actions, prioritize feasibility, maintain a positive business relationship, and consider communication with employees and other clients.

Eduardo, an account executive, should not choose to take action that is illegal or be proud of seeing this decision or action reported in the newspaper. Instead, he should prioritize avoiding actions that will be burdensome to enact, not negatively affect his business relationship with the client, and consider communicating this decision to other clients or his employees.

When faced with a difficult ethical decision regarding one of his clients, Eduardo should carefully consider his options and make a decision that is morally and legally sound. Choosing to take illegal actions or being proud of seeing the decision or action reported in the newspaper is not ethical behavior and could lead to negative consequences for Eduardo, his company, and his client.

Eduardo should prioritize avoiding actions that will be burdensome to enact, which means that he should choose an ethical decision that is practical and feasible to implement. He should also consider the impact of his decision on his business relationship with the client, as maintaining positive relationships is critical in the business world.

Furthermore, Eduardo should communicate this decision to his employees and other clients, as transparency and honesty are important values in business ethics. By communicating his decision, he can demonstrate his commitment to ethical behavior and integrity and potentially influence others to behave ethically as well.

Learn more about business relationship here:

https://brainly.com/question/30664298

#SPJ4

cumulativesum.xlsx Please see the attached workbook. Cell C7 currently has a number entered manually. This number should be replaced with a formula. What is the best formula to use in cell C7?

Answers

The best formula to use in cell C7 is the SUM function. This function will add together all the values in the cells above (C1:C6) to give the cumulative sum of these values.

The best formula to use in cell C7 is the SUM function. This function will add together all of the values in the cells above (C1:C6) to give the cumulative sum of these values. This means that it will take the sum of the cells in the range and then add to that sum the value in the cell directly above it. This can be done by using the SUM function and providing it with the range C1:C6. This will give the cumulative sum of all of the values in the cells above C7. This is a useful formula for quickly calculating the sum of a range of values. It is also helpful for dynamically updating the sum when new values are added or removed from the range. Using the SUM function is the best way to quickly and accurately calculate the cumulative sum of a range of values.

Learn more about functions here-

brainly.com/question/28939774

#SPJ4

doritos is running a commercial contest for the superbowl this year. how does it work?

Answers

Participants are asked to make a 60-second Doritos commercial; the winning entry will have their commercial televised during the Super Bowl and get cash.

For the Super Bowl, Doritos is holding a contest for commercials titled "Crash the Super Bowl." Participants in the competition must produce a 30-second video advertisement for Doritos snacks. Residents of the United States who are at least 18 years old may enter the tournament. Judges consider each entry's originality, humour, and general appeal while making their decisions. On the Doritos website, the finalist commercials are uploaded for viewers to vote on their favourite. The Super Bowl will include the two commercials with the most votes, and the maker of the commercial with the best score will receive a cash reward of up to $1 million.

learn more about commercials here:

https://brainly.com/question/19624586

#SPJ4

The process by which information is encoded by its meaning is calledA) long-term potentiation.B) automatic processing.C) rehearsal.D) semantic encoding

Answers

Semantic encoding is the process of encoding information based on its meaning.

What does long-term memory encoding involve?

Simply said, encoding is the act of transferring data from our working memory, or short-term memory, to our long-term memory. There are important techniques we can use to transfer information from our long-term memory back into working memory once it has been appropriately recorded.

What does information encoding entail?

Encoding, storage, and retrieval are the three basic processes involved in memory. The process of committing information to memory is called encoding (the process by which information is recovered from memory).Visual, auditory, or semantic coding are all possible.

To know more about information visit:-

https://brainly.com/question/14879566

#SPJ4

1. Write a piece of code that will set the squared root of 70 into integer num1.
Answer:

Answers

The piece of code that will set the squared root of 70 into integer num1 can be seen in the explanation part.

What is programming?

Making a set of instructions that instruct a computer how to carry out a task is the process of programming. Computer programming languages like JavaScript, Python, and C++ can all be used for programming.

Here's an example code in Python that sets the square root of 70 to an integer variable num1:

import math

num1 = int(math.sqrt(70))

Thus, the code imports the math module, which contains the sqrt function to calculate the square root of a number.

For more details regarding programming, visit:

https://brainly.com/question/11023419

#SPJ9

you can edit cell contents in the formula bar or in the cell itself. true/false

Answers

Answer:

true

Explanation:

Write a pseudo code to calculate the area of rectangle

Answers

Answer:

Explanation:

Declare variables length and width

Input length and width

Calculate area by multiplying length and width

Print the area

Here's what the code would look like in a more detailed and structured format:

CalculateRectangleArea

1. Declare variables length, width, and area

2. Input length

3. Input width

4. Set area = length * width

5. Output area

END ALGORITHM

Grabar microphone audio icon_person click each item to hear a list of vocabulary words from the lesson. Then, record yourself saying the word that doesn't belong. Follow the model

Answers

Using the as command, you decide to create a new column called average total and use the avg function to determine the average total.

What is invoice?

Fourth is the average of the invoice totals for each vendor, represented as VendorAvg, followed by the sum of the invoice totals for each vendor, represented as VendorTotal, VendorCount, and VendorCount.

We use VendorID in the query since the result set needs to contain each vendor's unique invoices.

You are utilizing a database table that holds information about invoices. The table has columns for total, billing state, and billing country. You're interested in learning what the average invoice total cost for bills paid to the state of Wisconsin is.

Thus, this can be done in the given situation.

For more details regarding invoice, visit:

https://brainly.com/question/30026898

#SPJ1

select the correct answer. which markup language is useful to create cross-platform mobile applications and is flexible to run on tables, smart phones, and computer? a. html5 b. xml c. html d. xhtml

Answers

Answer:

HTML

Explanation:

Plato/Edmentum

microsoft charges a substantially lower price for a software upgrade than for the initial purchase of the software. this implies that microsoft views the demand curve for the software upgrade to be

Answers

The demand curve for the software upgrade is likely to be more elastic than that for the initial purchase of the software.

What is software ?

Software is a set of instructions, programs, or data that tells a computer how to perform a specific task. It is a collection of applications, programs, and related data that provide the instructions for telling a computer what to do and how to do it.

This means that a lower price for the upgrade will lead to a greater quantity demanded, since consumers are more likely to purchase the upgrade if the price is lower. Microsoft likely views this as a beneficial strategy, as it will increase sales of the software upgrade and thus increase their revenues.

To learn more about software
https://brainly.com/question/28224061
#SPJ1

Why & Fix macOS Monterey Cannot Be Installed on Macintosh HD?

Answers

If you are unable to install macOS Monterey on your Macintosh HD, it is likely due to a lack of disk space. To fix this issue, you will need to free up some disk space by deleting unnecessary files, uninstalling applications you no longer need, and moving large files to an external hard drive.

What is macOS?
macOS (formerly known as OS X) is an operating system developed by Apple for Mac computers. It is based on the Unix operating system and provides a graphical user interface. It is designed to be both easy to use and powerful, providing users with tools to easily access and manage their digital content. macOS includes features such as the Apple File System, which provides a secure way to store and organize files, and the Spotlight search engine, which allows users to quickly search for files on their device.

To know more about macOS
https://brainly.com/question/28465993
#SPJ4

Other Questions
Fill in the blank to complete the sentence below.In a standard deck of 52-cards, there are 13 spades and 4 aces, and thus there are(Type a whole number.)cards are neither spades nor aces. How does a scientist make two solutions with the same molaritya. By dissolving the same number of moles of each substance in thesame volume of waterB. By dissolving the maximum amount of each substance in thesame volume of waterC. By dissolving 1 mole of each substance in enough water to makesure dissolving is completeD. By dissolving the same number of grams of each substance ince in thesame volume of water Water in a beaker gains thermal energy at a rate of 3000 W. The water is at its boiling point. The spesific latent heat of vaporisation of water is 2260 J/g. How long does it take for 250 g of the water to vaporise? \Plot the point (4, 3). Start at the origin.Move 4 units Move 3 units The point is at ___ Model | ^ On a coordinate plane, point A is 4 units to the left and 3 units up. Point B is 3 units to the left and 4 units up. Point C is 4 units to the right and 3 units up. Pound D is 4 units to the right and 3 units down. while shopping at the local mall, ithon is approached by a person who asks her to sign a petition for stricter gun control laws. if python uses the central route to decide whether to sign the petition, then she will be more likely to sign if the person who approaches her is a what are the three levels of scrutiny used by courts to determine the constitutionality of a government action? choose 3 answers. intermediate scrutiny factual basis review rational basis review strict scrutiny Wilson's Fourteen Points incorporated all of the following-Open diplomacy-Freedom of the seas-Creation of an international organization to preserve the peace and security of its members-National self-determination Twenty rubber spheres were compressed with varying amounts of force. The widthsand heights of the resulting shapes were measured. Here is a scatter plot that shows themeasurements for each sphere.1. Label the vertical axis of the scatter plot.Art gass2. If a compressed rubber sphere has a 6-inch width, is its height closer to 5 inches or tosla 11 inches? Explain your reasoning. In what ways do the macroscopic features of bacterial colonies differ than those of molds? the coordinates of the endpoints of no are n(5,16) and o(19,9). point p is on no and divides it such that np:op is 4:3. what are the coordinates of p? a belief of disease causation where it is thought illness is caused by misbehavior or intervention of a supernatural being:a.personalistic theoryb.naturalistic theoryc.germ theoryd.humoral theory 5. No, no, we are not satisfied, and we will not be satisfied until "justice rollsdown like waters, and righteousness like a mighty stream." rewrite sentence a person has been prescribed nitrofurantoin what education would you provide wagner company's financial records show that it has a mortgage that requires monthly principal payments of $3,000. the mortgage loan matures in 15 years. what should wagner show on its balance sheet at the end of the current year? (select all that apply.) a rectangular pyramid is sliced so the cross section is perpendicular to its base but does not pass through its vertex. what is the shape of the cross section? Preparation of a bank ______ helps maintain control of cash accounts. It connotes a sense of belonging and remaining unchanged what explicit tax rate would keep orlando indifferent between purchasing a municipal bond with a 4.0 percent return and a taxable bond with a 5.5 percent before-tax return? the nurse is caring for a client diagnosed with asthma. the client reports drinking herbal tea to treat illnesses. which additional question(s) will the nurse ask during the assessment? select all that apply. HELP FOR 15 Points I SUCK AT MATH