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

Given the variables full_admission_price and discount_amount (already defined), write an expression corresponding to the price o

f a discount admission.
You are given two variables, both already defined, one associated with a float and named total_weight, containing the weight of a shipment, the other associated with an int and named quantity, containing the number of items in the shipment. Write an expression that calculates the weight of one item.

Write a for loop that prints all the even integers from 80 through 20 inclusive, separated by spaces.

Use Python
Computers and Technology
1 answer:
stiks02 [169]3 years ago
7 0

Answer:

if full_admission_price = f and discount_amount = d

=> Price of a discount admission = d/f

total_weight

quantity

weight of one item = total_weight/quantity                      

for i in range(80, 18, -2):

   print(i, end=' ')

Explanation:

The first two questions are just mathematical to get a single quantity given some relationship. So, its basically division

For the python code, I used the python's range function which takes in three arguments. The first one is the starting value, the second one is the terminating value which is the number before the terminating value and the last one specifies the common difference popularly known as step in the language. Since the step is 2, only even numbers are printed out. In the print function, I made use of the end keyword specifying a space (' ') as the end. This ensures that the print is done in the same line with a space seperating them. Without that specification, each result will printed in a newline

You might be interested in
The ____ cell on the worksheet is the one into which you can enter data.â
Illusion [34]

I guess the best answer is Active.

The Active cell on the worksheet is the one into which you can enter data.

3 0
3 years ago
Read 2 more answers
The lower band and upper band of integer data type​
Nikolay [14]
The whole idea of lower and upper bounds in Integration is that the lower bound represents the smallest value from which we start summing areas(smallest value of the interval) and upper bound is the value to which we sum to(maximum value of the interval).
(Just gave you an answer describing what it was because you didn’t implant a question so I gave you a definition)
3 0
3 years ago
Why should ERP architecture include a discussion on organizational structure, business processes, and people, instead of just in
galben [10]

Answer:

Information technology is not the only focus when implementing ERP. It is of utmost importance for ERP to also focus on budget, business processes, people, business requirements and other areas. Employees must be communicated about changes intended in the future. The value of a system such as ERP is determined by how well its end-users use them. If ERP is made to focus on system architecture alone, the software might be successfully installed, but its implementation will be faulted. The installation of the ERP software might be easy, but the difficulties come in when changing the processes and introducing the new process to the people who will make use of the system. Change is something that is difficult to embrace, especially when they have no idea of the change. Hence, it becomes very important that when implementing ERP, business processes and people, and not just information technology and systems are consulted.

Explanation:

Information technology is not the only focus when implementing ERP. It is of utmost importance for ERP to also focus on budget, business processes, people, business requirements and other areas. Employees must be communicated about changes intended in the future. The value of a system such as ERP is determined by how well its end-users use them. If ERP is made to focus on system architecture alone, the software might be successfully installed, but its implementation will be faulted. The installation of the ERP software might be easy, but the difficulties come in when changing the processes and introducing the new process to the people who will make use of the system. Change is something that is difficult to embrace, especially when they have no idea of the change. Hence, it becomes very important that when implementing ERP, business processes and people, and not just information technology and systems are consulted.

4 0
3 years ago
WILL DO A BRIANLY! Use an algorithm to help the Python Turtle get to the finish line in 10 steps by using only the 3 commands be
Alexandra [31]

Answer:

3 3 2 1 1

Explanation:

8 0
3 years ago
8.1.4: Ghost Invasion!
Natalija [7]

the fat car has a lot to pass on PC Dell is the only thing to

8 0
2 years ago
Other questions:
  • Today, air travel allows large numbers of people to move quickly over long distances. Which of the following is a likely effect
    8·1 answer
  • By applying styles formats are being applied ?
    14·2 answers
  • Mr. Olgesandravich is proctoring students working at their own pace in an online class. He is generating a spreadsheet that show
    15·1 answer
  • I need someone who knows HTML to finish the code.
    12·2 answers
  • Give the algorithm and flowchart for following C code:
    6·1 answer
  • Plssssssssssssss help quick
    8·1 answer
  • Stock Market
    11·1 answer
  • Adam has designed and tested an Android app for a startup. The client expects to get quick responses to the app. After consultin
    7·1 answer
  • Using C++
    13·1 answer
  • How does digital and hybrid computers differ in portability​
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!