There are lot of great inventions. The type of research strategy should they use is A/B Test, Switchback and Synthetic Control.
Uber is known to have so many ways to run experiment. They often applies several experimental methodologies in different cases as they are diverse in nature. They use them in testing out a new feature to improve the app design.
Uber's XP often gives room for engineers and data scientists to monitor treatment effects so as to make sure that they do not cause regressions of any key metrics.
Learn more from
https://brainly.com/question/16906048
Can someone help me on this quick?
EI is an essential component of interpersonal relationships and communication. People with high emotional intelligence are better equipped to understand the emotional needs of others, empathize with their emotions, and respond appropriately.
What is Emotional Intelligence?Emotional intelligence (EI) is a vital skill in understanding and managing emotions, both in oneself and others. It allows individuals to recognize, comprehend, and regulate emotions in themselves and others, leading to better communication, decision-making, and social interactions.
The Myer-Briggs Type Indicator (MBTI) is a personality assessment tool that categorizes individuals into one of 16 personality types, based on four dichotomies: extraversion/introversion, sensing/intuition, thinking/feeling, and judging/perceiving. In this paper, I will discuss the role of emotional intelligence and how it relates to the MBTI personality types.
In conclusion, emotional intelligence is a critical skill in understanding and managing emotions in oneself and others.
The MBTI personality types can provide insight into how individuals may approach emotional intelligence, but all individuals can develop and improve their emotional intelligence through practice and reflection.
By doing so, individuals can improve their communication, decision-making, and social interactions, leading to greater personal and professional success.
Read more about emotional intelligence here:
https://brainly.com/question/1233301
#SPJ1
Write a short paper on the role of emotional intelligence identifying how you see emotional intelligence based upon the Myer-Briggs personality
A program that performs handy tasks, such as computer management functions or diagnostics is often called a/an ____________.
a) file system
b) utility
c) embedded system
d) application
A program that performs handy tasks, such as computer management functions or diagnostics is often called a utility. (Option B)
What is a Utility Software?Utility software is software that is meant to assist in the analysis, configuration, optimization, or maintenance of a computer. In contrast to application software, which is targeted at directly executing activities that benefit regular users, it is used to maintain the computer infrastructure.
Utility software assists users in configuring, analyzing, optimizing, and maintaining their computers. This software often comprises of minor applications that are regarded as part of the operating system (OS) since they are frequently included with the OS.
Learn more about computer programs:
https://brainly.com/question/14618533
#SPJ1
Generate a list of ways the computer has impacted the world both positive and negative
Answer:
Positive : 1) ENTREPRENEURS IN GENERAL Computers have probably benefited businesses in general the most.
2) DISCRETION In the early days of the internet, computers were primarily used as large calculators for data processing.
In the early days of the internet, computers were primarily used as large calculators for data processing.
3) Education
4) Manufacturing and production,
5) medical
6) RESEARCH & SCIENCE
8) OFFICE SECURITY
Negative:
1)Everyone turns to staring at their phone during social gatherings.
2) People can't leave the house without their phones because they are glued to them.
3) driving while texting.
4) Constant exposure to the bright screens of iPhones disturbs sleep patterns.
I am studying Entrepreneurial Studies. At least two paragraphs, Please. Why is the knowledge of basic Excel skills crucial for success in the workplace or businesses within your field of study? How could this knowledge be applied in your chosen or future career field? Provide two examples. In replies to peers, consider the commonalities and differences you see in how this knowledge is applied across career fields and explain how a lack of working knowledge in Excel could negatively impact the business. THANK YOU
Answer:
knowledge is the Becki's of our brien of close because of importent that skills of the knowledge is the very importent of future for a men that skills is the vary impo
A washing machine control circuit has 4 inputs: WASH, THERMOSTAT, FULL, EMPTY and 4 outputs: HOT, COLD, MOTOR, and PUMP. When they are high, the outputs turn on the hot and cold taps, the main motor, and the draining pump respectively. THERMOSTAT goes high when the water in the machine is above the required temperature; FULL and EMPTY indicate (when high) that the machine is completely full or completely empty of water respectively; they are both low when it is half full.
Draw a Karnaugh map for each output and hence write down the Boolean equations that describe the operation of the washing machine control circuit.
Using Karnaugh Map the Boolean expression for each output is attached below
What is a Karnaugh MapA Karnaugh map or K-map can be defined as a visual method used to simplify an algebraic expressions in Boolean functions without using complex theorems or equation manipulations. A K-map is a special version of a truth table that makes it simple or less complex to map out parameter values and achieve a simplified Boolean expression
In this problem, we can express this as
HOT: (WASH) + (THERMOSTAT)
COLD: (WASH)
MOTOR: (WASH) + (FULL) + (EMPTY)
PUMP: (FULL) + (EMPTY)
Karnaugh Map for HOT:
WASH THERMOSTAT
0 0 0
0 1 1
1 0 1
1 1 1
Karnaugh Map for COLD:
WASH
0 0
0 1
1 0
1 1
Karnaugh Map for MOTOR:
WASH FULL EMPTY
0 0 0 0
0 0 1 1
0 1 0 1
0 1 1 1
1 0 0 1
1 0 1 1
1 1 0 1
1 1 1 1
Karnaugh Map for PUMP:
FULL EMPTY
0 0 0
0 1 1
1 0 1
Learn more on Karnaugh Map here;
https://brainly.com/question/15077666
#SPJ1
what subject can you find in the house?
In a house, you can find various subjects or objects related to different areas of knowledge. Some common subjects that you can find in a house include:
Architecture and Design: The structure and layout of the house itself, including the architectural design, interior design elements, and spatial arrangement.
Construction and Engineering: The materials used in building the house, construction techniques, plumbing and electrical systems, and other engineering aspects.
Home Economics: The study of managing and maintaining a household, including topics such as cooking, cleaning, laundry, budgeting, and home organization.
Interior Decoration: The art and science of decorating and arranging the interior spaces of a house, including furniture, color schemes, artwork, and accessories.
Thus, there are so many subjects that can be found at home.
For more details regarding subjects, visit:
https://brainly.com/question/3541306
#SPJ1
InfoTrac is an aggregated database?
True
False
Answer: true
Explanation:
Create a class called Date that includes three instance variables-a month (type int), a day (type int) and a year (type int). Provide a constructor that initializes the three instance variables and assumes that the values provided are correct. Provide a set and a get method for each instance variable. Provide a method displayDate that displays the month, day and year separated by forward slashes (/). Add a main method to the class that demonstrates class Date's capabilities.
The class code is given below
lass Date:
def __init__(self, month, day, year):
self.month = month
self.day = day
self.year = year
def setMonth(self, month):
self.month = month
def setDay(self, day):
self.day = day
def setYear(self, year):
self.year = year
def getMonth(self):
return self.month
def getDay(self):
return self.day
def getYear(self):
return self.year
def displayDate(self):
print(self.month, '/', self.day, '/', self.year)
def main():
# create an object of Date class
date1 = Date(1, 15, 2021)
# display the date using the displayDate method
date1.displayDate()
# change the month using the setMonth method
date1.setMonth(2)
# display the date again
date1.displayDate()
if __name__ == "__main__":
main()
What is the class about?The above code will create a class called Date that includes three instance variables a month, a day and a year. It has a constructor that initializes the three instance variables and assumes that the values provided are correct.
It also has set and get methods for each instance variable and a method displayDate that displays the date in the format month/day/year.
Therefore, The main method demonstrates the use of the class by creating an object of the class and displaying the date, then changing the month and displaying the date again.
Learn more about class from
https://brainly.com/question/11842604
#SPJ1
1. A network administrator was to implement a solution that will allow authorized traffic, deny unauthorized traffic and ensure that appropriate ports are being used for a number of TCP and UDP protocols.
Which of the following network controls would meet these requirements?
a) Stateful Firewall
b) Web Security Gateway
c) URL Filter
d) Proxy Server
e) Web Application Firewall
Answer:
Why:
2. The security administrator has noticed cars parking just outside of the building fence line.
Which of the following security measures can the administrator use to help protect the company's WiFi network against war driving? (Select TWO)
a) Create a honeynet
b) Reduce beacon rate
c) Add false SSIDs
d) Change antenna placement
e) Adjust power level controls
f) Implement a warning banner
Answer:
Why:
3. A wireless network consists of an _____ or router that receives, forwards and transmits data, and one or more devices, called_____, such as computers or printers, that communicate with the access point.
a) Stations, Access Point
b) Access Point, Stations
c) Stations, SSID
d) Access Point, SSID
Answer:
Why:
4. A technician suspects that a system has been compromised. The technician reviews the following log entry:
WARNING- hash mismatch: C:\Window\SysWOW64\user32.dll
WARNING- hash mismatch: C:\Window\SysWOW64\kernel32.dll
Based solely ono the above information, which of the following types of malware is MOST likely installed on the system?
a) Rootkit
b) Ransomware
c) Trojan
d) Backdoor
Answer:
Why:
5. An instructor is teaching a hands-on wireless security class and needs to configure a test access point to show students an attack on a weak protocol.
Which of the following configurations should the instructor implement?
a) WPA2
b) WPA
c) EAP
d) WEP
Answer:
Why:
Network controls that would meet the requirements is option a) Stateful Firewall
Security measures to protect against war driving: b) Reduce beacon rate and e) Adjust power level controlsComponents of a wireless network option b) Access Point, StationsType of malware most likely installed based on log entry option a) RootkitConfiguration to demonstrate an attack on a weak protocol optio d) WEPWhat is the statement about?A stateful firewall authorizes established connections and blocks suspicious traffic, while enforcing appropriate TCP and UDP ports.
A log entry with hash mismatch for system files suggest a rootkit is installed. To show a weak protocol attack, use WEP on the access point as it is an outdated and weak wireless network security protocol.
Learn more about network administrator from
https://brainly.com/question/28729189
#SPJ1
Write an essay of at least 250 words describing the connections between people and computing and the role of equity in those connections.
As you research, consider that equity is affected by the actions of individuals, organizations, and governments. How is the equity question you choose as your topic affected by these players?
When used correctly, technology can make a significant contribution to equity. It removes obstacles to accessing educational materials, meets students where they are in various learning contexts and needs, and provides educators with better understanding into the educational contexts they are creating.
What is equity?Digital equity is defined by the National Digital Inclusion Alliance (NDIA) as "a condition in which all individuals and communities have the information technology capacity required for full participation in our society, democracy, and economy."
Computer science for all students necessitates that equity be prioritized in any reform effort.
When equity exists, appropriate supports are provided based on individual student needs, allowing all students to achieve similar levels of success.
Technology, when used correctly, can make a significant contribution to education equity.
It removes barriers to educational materials access, meets students where they are in diverse learning contexts and needs, and gives educators a better understanding of the educational contexts they are creating.
Thus, this is the connections between people and computing and the role of equity in those connections.
For more details regarding equity, visit:
https://brainly.com/question/13278063
#SPJ1
You’re a project manager of a small team looking to hire. You have received many resumes to review, and while most of them look well qualified, two of the resumes are very poorly formatted and use wacky fonts and graphics. Would you consider these individuals as qualified candidates and be willing to interview them? Please justify your answer by briefly summarizing the discussion you might have with these candidates. Consider the following prompts as you develop your post: Explain why professional formatting matters on a resume or explain why it doesn’t. Argue whether we can infer anything about a candidate’s ability to work in a professional environment based on his or her resume’s formatting. Compare how you would address a resume with wacky fonts to how you would respond to grammatical errors in a resume.
No, you never consider those resumes that use wacky fonts and graphics. This is because it is the primary criterion that candidates have to fulfill in the hiring process.
What is the responsibility of a project manager?Project managers are responsible for planning, organizing, and directing the completion of specific projects for an organization while ensuring these projects are on time, on budget, and within scope.
Professional formatting justifies the capabilities and strength of candidates with respect to their qualifications. It increases your chances for the hiring process with the selection of your resumes.
A candidate’s ability to work in a professional environment based on his or her resume’s formatting is significantly based on their curiosity and willingness to do work in the same culture.
To learn more about Professional formatting, refer to the link:
https://brainly.com/question/17971683
#SPJ1
What does a variable do?
A variable solves for x.
A variable solves for x.
A variable helps scientists make studies of control groups.
A variable helps scientists make studies of control groups.
A variable names a memory location to hold different values in your program.
A variable names a memory location to hold different values in your program.
A variable evaluates a boolean expression.
A variable evaluates a boolean expression.
Answer:
A variable names a memory location to hold different values in your program.
Explanation:
Variables are the names you give to computer memory locations which are used to store values in a computer program.
Jeremy knows that there is a keyboard shortcut in Word, but he does not know what it is. What should Jeremy do to
find out what the keyboard shortcut is?
In the Customize Ribbon dialog box, click on File Tab in the left pane, and then find and select Save As in the right
pane
In the Customize Ribbon dialog box, click on Home Tab in the right pane, and then find and select Save As in the
left pane
In the Customize Keyboard dialog box, click on File Tab in the left pane, and then find and select Save As in the
right pane
In the Customize Keyboard dialog box, click on Home Tab in the right pane, and then find and select Save As in
the left pane
Answer: I hope this will help
go to this. It helped me!
Explanation:
https://support.microsoft.com/en-us/office/video-customize-the-ribbon-9ce81e05-ecc1-4142-a3e3-1298b37a59c6
Name a person who helps the team manage their time
Which of the following is not one of the C++ control structures?
A. if
B. do...while
C. switch
D. break
Answer: (D) break
Explanation:
"break" is not one of the C++ control structures. It is a keyword that is used to exit a loop or a switch statement.
if/else, do...while, and switch are all control structures in C++. They are used to control the flow of a program.
Select the correct answer.
What is the decimal equivalent of the octal number 27?
A. 23
B. 24
C. 25
D. 28
E. 29
Answer:
B.24
#carryonlearning
Explanation:
hope it can help
Write a program to read from std_info.txt.
This file has student first name, last name, major, and gpa.
This program must compute the average gpa of ee, cpe, and all students in the file. you must write in student_avg.txt file, the student information and computed gpa at the bottom of the list of students in the following order:
Sam Thomas CPE 3.76Mary Smith EE 2.89John Jones BUS 4.00....EE average =CPE average =Total average =
Answer:
import pandas as pd
# loads the text file as a pandas dataframe
student_file = pd.read_fwf("std_info.txt")
# opens a new text file if the student_avg does not exist
# the file closes automatically at the end of the with statement
with open('student_avg.txt', 'w+') as file:
for row in student_file.iterrows():
file.write(row)
ee = student_file[student_file['major'=='EE']]
cpe = student_file[student_file['major'=='CPE']]
file.write(f'EE average = {ee['EE'].mean()}')
file.write(f'CPE average = {ee['CPE'].mean()}')
file.write(f'Total average = {student_file['EE'].mean()}')
Explanation:
The python program gets the text file as a fixed-width file and loads the file as a pandas dataframe. The dataframe is used to get the total average GPA the student GPA and the average GPA of students in various departments. The results are saved in a new file called 'student_avg.txt'.
Lynn would like to insert a hyperlink into an email message without using the ribbon. What is the keyboard shortcut to do so?
Ctrl+G
Ctrl+K
Ctrl+C
Ctrl+Shift+G
Answer:
Ctrl+K
Explanation:
Edg 2020
B on edg 2021, hope i could help
Which header will be the largest?
Hello
Hello
Hello
Hello
Answer:
Bye
bye
bye
bye
Explanation:
Answer:
HELLO Hello thank you for your points...
What is lossy compression
A. It is a technique that results in the loss of all files on a computer.
B. It is a technique that reduces the file size by permanently removing some data
C. It is a method of combining the memories of the ram and the rom
D. It is a method that stores data dynamically requiring more power
Answer:
B. It is a technique that reduces the file size by permanently removing some data
Answer:
B. It is a technique that reduces the file size by permanently removing some data
Explanation:
True or False? Voice recognition is the process of determining the meaning of the words spoken by a human.
Answer:
The answer is False.
A Quicksort (or Partition Exchange Sort) divides the data into 2 partitions separated by a pivot. The first partition contains all the items which are smaller than the pivot. The remaining items are in the other partition. You will write four versions of Quicksort:
• Select the first item of the partition as the pivot. Treat partitions of size one and two as stopping cases.
• Same pivot selection. For a partition of size 100 or less, use an insertion sort to finish.
• Same pivot selection. For a partition of size 50 or less, use an insertion sort to finish.
• Select the median-of-three as the pivot. Treat partitions of size one and two as stopping cases.
As time permits consider examining additional, alternate methods of selecting the pivot for Quicksort.
Merge Sort is a useful sort to know if you are doing External Sorting. The need for this will increase as data sizes increase. The traditional Merge Sort requires double space. To eliminate this issue, you are to implement Natural Merge using a linked implementation. In your analysis be sure to compare to the effect of using a straight Merge Sort instead.
Create input files of four sizes: 50, 1000, 2000, 5000 and 10000 integers. For each size file make 3 versions. On the first use a randomly ordered data set. On the second use the integers in reverse order. On the third use the
integers in normal ascending order. (You may use a random number generator to create the randomly ordered file, but it is important to limit the duplicates to <1%. Alternatively, you may write a shuffle function to randomize one of your ordered files.) This means you have an input set of 15 files plus whatever you deem necessary and reasonable. Files are available in the Blackboard shell, if you want to copy them. Your data should be formatted so that each number is on a separate line with no leading blanks. There should be no blank lines in the file. Even though you are limiting the occurrence of duplicates, your sorts must be able to handle duplicate data.
Each sort must be run against all the input files. With five sorts and 15 input sets, you will have 75 required runs.
The size 50 files are for the purpose of showing the sorting is correct. Your code needs to print out the comparisons and exchanges (see below) and the sorted values. You must submit the input and output files for all orders of size 50, for all sorts. There should be 15 output files here.
The larger sizes of input are used to demonstrate the asymptotic cost. To demonstrate the asymptotic cost you will need to count comparisons and exchanges for each sort. For these files at the end of each run you need to print the number of comparisons and the number of exchanges but not the sorted data. It is to your advantage to add larger files or additional random files to the input - perhaps with 15-20% duplicates. You may find it interesting to time the runs, but this should be in addition to counting comparisons and exchanges.
Turn in an analysis comparing the two sorts and their performance. Be sure to comment on the relative numbers of exchanges and comparison in the various runs, the effect of the order of the data, the effect of different size files, the effect of different partition sizes and pivot selection methods for Quicksort, and the effect of using a Natural Merge Sort. Which factor has the most effect on the efficiency? Be sure to consider both time and space efficiency. Be sure to justify your data structures. Your analysis must include a table of the comparisons and exchanges observed and a graph of the asymptotic costs that you observed compared to the theoretical cost. Be sure to justify your choice of iteration versus recursion. Consider how your code would have differed if you had made the other choice.
The necessary conditions and procedures needed to accomplish this assignment is given below. Quicksort is an algorithm used to sort data in a fast and efficient manner.
What is the Quicksort?Some rules to follow in the above work are:
A)Choose the initial element of the partition as the pivot.
b) Utilize the same method to select the pivot, but switch to insertion sort as the concluding step for partitions that contain 100 or fewer elements.
Lastly, Utilize the same method of pivot selection, but choose insertion sort for partitions that are of a size equal to or lesser than 50 in order to accomplish the task.
Learn more about Quicksort from
https://brainly.com/question/29981648
#SPJ1
What are folders within folders called
Answer:
The folder within folder are also know as subfolder .
cs academy unit 8.3.2 Shirt Design
In order to fix the code and make it work, you can try the following corrections:
How to explain the program# Import the necessary libraries here
# Set the background color
app.background = 'pink'
# Draw the shirt
Polygon(5, 175, 85, 60, 315, 60, 395, 175, 330, 235, 290, 190, 300, 355, 100, 355, 110, 190, 70, 237, fill='lavenderBlush')
Arc(200, 60, 95, 70, 90, 180, opacity=10)
# Use a loop to draw stars
for radius in range(10, 100, 5):
# Draw a crimson star whenever the radius is a multiple of 10 and a white star otherwise
if radius % 10 == 0:
Star(200, 210, radius, 6, fill='red')
else:
Star(200, 210, radius, 6, fill='white')
# Display the graphic
# Add code here to show or update the graphic window
Learn more about program on
https://brainly.com/question/26642771
#SPJ1
¿Que ess ready player one?
The interpretation or translation of the following phrase is: "Are you ready player one?"
Why are translations important?Translation is necessary for the spreading new information, knowledge, and ideas across the world. It is absolutely necessary to achieve effective communication between different cultures. In the process of spreading new information, translation is something that can change history.
In this example, it is possible that a flight simulation has just displayed the above message. It is important for the trainee in the simulator to be able to interpret the following message.
Learn more about interpretation:
https://brainly.com/question/28879982
#SPJ1
Full Question:
What is the interpretation of the following:
¿Que ess ready player one?
Which technology is making quantum computing easier to access and adopt
The technology that is making quantum computing easier to access and adopt is known to be option c: cloud.
What technologies are used to build quantum computers?A lot of Efforts is known to be used in creating a physical quantum computer that is known to be based on technologies such as transmons, ion traps and others
Cloud computing is seen as a kind of an on-demand presence of computer system resources, and it is one that is made up of data storage and computing power, and it is one where there is no direct active management by the user.
Hence, The technology that is making quantum computing easier to access and adopt is known to be option c: cloud.
Learn more about quantum computing from
https://brainly.com/question/28082752
#SPJ1
See full question below
Which technology is making quantum computing easier to access and adopt?
a. Edge Computing
b. Virtual Reality
c. Cloud
d. Blockchain
you have a desktop computer that provides a 250-watt power supply. you recently added a four-disk raid 10 array to the system, and now it spontaneously shuts down. which of the following would most likely solve this issue?
Upgrade to a power supply that provides more volts. The correct option is 4.
What is desktop computer?PC is an umbrella term for all Windows-based computers. Any computer that is stationary and is not a laptop is referred to as a desktop. PCs are all Windows-based desktops, but not all PCs are desktops.
Because you have a desktop computer with a 250-watt power supply. You recently added a four-disk raid 10 array to the system, and it is now shutting down on its own. Upgrade to a higher-voltage power supply.
Thus, the correct option is 4.
For more details regarding desktop computer, visit:
https://brainly.com/question/29130374
#SPJ1
Your question seems incomplete, the probable complete question is:
You have a desktop computer that uses a 250-watt power supply. You recently added a four-disk RAID 10 array to the system, and now it spontaneously shuts down.
Which of the following would MOST likely solve this issue?
Use the switch on the power supply to switch from 115 VAC to 230 VAC.Upgrade to a power supply that provides more watts.Upgrade to smaller capacity hard drives.Upgrade to a power supply that provides more volts.In order to make burger a chef needs at least the following ingredients: • 1 piece of chicken meat • 3 lettuce leaves • 6 tomato slices Write down a formula to figure out how many burgers can be made. Get values of chicken meat, lettuce leaves and tomato slices from user. Hint: use Python’s built-in function
Answer:
how many burgers would you have to make ?
Explanation:
this is a question ot an answer
list four reasons why technology is important
Answer:
its help comunicate with other out of reach in person you can learn from it esiear for students to find information on technolongy than in a textbook it has designed buildings and ect.Explanation:
it is a big part of my life
Create a script that will determine how many of each currency type are needed to make change for a given amount of dollar and cents. Input Asks the user for a dollar and cents amount as a single decimal number. Output The program should indicate how many of each of these are needed for the given amount: $20 bills $10 bills $5 bills $1 bills Quarters ($0.25 coin) Dimes ($0.10 coin) Nickels ($0.05 coin) Pennies ($0.01 coin) If a dollar or coin is not needed (its quantity required is 0), do not print it.
Answer:
The program in Python is as follows:
dollar = float(input("Dollars: "))
t20bill = int(dollar//20)
dollar -= t20bill * 20
t10bill = int(dollar//10)
dollar -= t10bill * 10
t5bill = int(dollar//5)
dollar -= t5bill * 5
t1bill = int(dollar//1)
dollar-= t1bill * 1
qtr = int(dollar//0.25)
dollar -= qtr * 0.25
dime = int(dollar//0.10)
dollar -= dime * 0.10
nkl = int(dollar//0.05)
dollar -= nkl * 0.05
pny = round(dollar/0.01)
if t20bill != 0: print(t20bill,"$20 bills")
if t10bill != 0: print(t10bill,"$10 bills")
if t5bill != 0: print(t5bill,"$5 bills")
if t1bill != 0: print(t1bill,"$1 bills")
if qtr != 0: print(qtr,"quarters")
if dime != 0: print(dime,"dimes")
if nkl != 0: print(nkl,"nickels")
if pny != 0: print(pny,"pennies")
Explanation:
This gets input for dollars
dollar = float(input("Dollars: "))
Calculate the number of $20 bills
t20bill = int(dollar//20)
Calculate the remaining dollars
dollar -= t20bill * 20
Calculate the number of $10 bills
t10bill = int(dollar//10)
Calculate the remaining dollars
dollar -= t10bill * 10
Calculate the number of $5 bills
t5bill = int(dollar//5)
Calculate the remaining dollars
dollar -= t5bill * 5
Calculate the number of $1 bills
t1bill = int(dollar//1)
Calculate the remaining dollars
dollar-= t1bill * 1
Calculate the number of quarter coins
qtr = int(dollar//0.25)
Calculate the remaining dollars
dollar -= qtr * 0.25
Calculate the number of dime coins
dime = int(dollar//0.10)
Calculate the remaining dollars
dollar -= dime * 0.10
Calculate the number of nickel coins
nkl = int(dollar//0.05)
Calculate the remaining dollars
dollar -= nkl * 0.05
Calculate the number of penny coins
pny = round(dollar/0.01)
The following print the number of bills or coins. The if statement is used to prevent printing of 0
if t20bill != 0: print(t20bill,"$20 bills")
if t10bill != 0: print(t10bill,"$10 bills")
if t5bill != 0: print(t5bill,"$5 bills")
if t1bill != 0: print(t1bill,"$1 bills")
if qtr != 0: print(qtr,"quarters")
if dime != 0: print(dime,"dimes")
if nkl != 0: print(nkl,"nickels")
if pny != 0: print(pny,"pennies")