Answer: The answer is Proximity.
Explanation:
The following equations estimate the calories burned when exercising (source):
Women: Calories = ( (Age x 0.074) — (Weight x 0.05741) + (Heart Rate x 0.4472) — 20.4022 ) x Time / 4.184
Men: Calories = ( (Age x 0.2017) + (Weight x 0.09036) + (Heart Rate x 0.6309) — 55.0969 ) x Time / 4.184
Write a program using inputs age (years), weight (pounds), heart rate (beats per minute), and time (minutes), respectively. Output calories burned for women and men.
Output each floating-point value with two digits after the decimal point, which can be achieved as follows:
print('Men: {:.2f} calories'.format(calories_man))
Ex: If the input is:
49
155
148
60
Then the output is:
Women: 580.94 calories
Men: 891.47 calories
Answer:
# Women: Calories = ((Age x 0.074) - (Weight x 0.05741) + (Heart Rate x 0.4472) - 20.4022) x Time / 4.184
#Men: Calories = ((Age x 0.2017) + (Weight x 0.09036) + (Heart Rate x 0.6309) - 55.0969) x Time / 4.184
#main function to gets input for age, weight, hear rate and time and print Women and Man calorie burnt
def main():
#get user input for age, weight, hear rate and time
age = int(input("Enter your age:"))
weight = int(input("Enter your weight:"))
heartRate = int(input("Enter your heart rate:"))
time = int(input("Enter your time:"))
#calculate calories for women and men
caloriesWomen = ((age * 0.074) - (weight * 0.05741) + (heartRate * 0.4472) - 20.4022) * time / 4.184
caloriesMen = ((age * 0.2017) + (weight * 0.09036) + (heartRate * 0.6309) - 55.0969) * time / 4.184
#print calories for women and men
print("Women: %.2f calories"%caloriesWomen)
print("Men: %.2f calories"%caloriesMen)
#calling main function
main()
Explanation:
1) Above is your updated program.
2) Please copy it in python file and run
3) Below is the test output for this program
Enter your age:49
Enter your weight:155
Enter your heart rate:148
Enter your time:60
Women: 580.94 calories
Men: 891.47 calories
2. What is the importance of ethics in emerging technologies?
Answer:
The importance of ethics in emerging technologies employ speculative data about future aspects such as items, applications, and consequences This help us make more informed moral judgments about and prescriptions for research
What fictional place would you most like to go to? Its your opinion!
Mount olympus
Explanation:
Because its the home of the greek gods and i feel like it would be cool to meet the gods
What are ways to enter a formula in Excel? Check all that apply.What are ways to enter a formula in Excel? Check all that apply.
Answers:A,B,E,F
Click on the Function Library group and select a function from the drop-down menu.
Click on the Function Library group and Insert Function.
Click on the File tab in the ribbon.
Click on the Insert tab in the ribbon and then Equation.
Type = into any cell.
Click on the formula bar above the cells.
Answer:
Click on the Function Library group and Insert Function.
MARK ME BRAINLIEST IF I HELPED :>
what do you feel are the consequences of fake news on American society and how have digital communication tools contributed to it
Digital communication is the inter-transfer of information from one point to another. It has increased the circulation of fake news and has greatly influenced society.
What is fake news?Fake news or yellow journalism is the spread of false and incorrect baseless information from a source. The use of social networking platforms and television have increased the spread of fake news.
It has led to negative journalism and many sensational events that have affected society in a negative manner. It has been increased to gain monetary benefits and to make some conflicts.
Therefore, fake news has negatively affected the peace of society.
Learn more about fake news here:
https://brainly.com/question/11222703
#SPJ1
Benny is writing a program to design t-shirts. Which of the following correctly adds a new instance of style?
newStyle = "Style"
newStyle = Style()
newStyle: Style()
newStyle + Style()
How far should you sit from your computer screen?
PLS ANSWEER ASAP
6 to 12 inches
12 to 18 inches
18 to 24 inches
24 to 30 inches
15 points! Introduction to Computer Science. (Picture included)
The user is told to guess a number between one and 10.
Which responses from the user could cause the program to halt with an error statement? Choose two options.
Answer:
2.5, two
Explanation:
Most likely user input should be of type int, which is whole numbers, so 2.5 (double/float) and two (string) are incorrect
1. How is the pronoun their used in the second sentence?
The students in Mrs. Powell 's classroom completed the service project in record time. Their
contributions to the community were broadcast on the local news,
A. To link a subject with the word(s)that describes it
B. To replace prepositions
C. To show possession
D. To replace an article like the or an
The pronoun is used in the second sentence as To link a subject with the word(s)that describes it.
What is a pronoun?This is known to be a word or phrase that is said to be used to replace a noun or noun phrase.
Note that in the above sentence, the pronoun " their" is used to The pronoun is used in the second sentence as To link a subject with the word(s)that describes it as it tells more about service project.
Learn more about pronoun from
https://brainly.com/question/395844
#SPJ1
Today's classified ads are often geared toward
medical jobs
O entry-level jobs
military jobs
O high-tech jobs
Answer:
entry-level jobs
Explanation:
The use of digital technology in medicine is constantly evolving.
Discuss the impact of digital technology on medicine including:
diagnosing patients
treating patients
storage of records.
.
Answer:
Digital technology is easy to understand once you know how to properly use it.
Explanation:
Use the drop-down menus to describe the Customize Ribbon dialog box,
This section lists the different tabs on the ribbon.
This component helps the user reorder tabs along the ribbon.
This section lists commands to be added to or removed from the ribbon.
Select the correct answer.
Feather Light Footwear approaches Roy and his team to develop a website that will help increase the company's sales and customer base. Apart
from other items that are clarified in the requirements-gathering session, the client insists on a speedy launch of the site, in two months flat. Roy
and his team already have partially complete projects for other clients that they must complete first. How should Roy handle this situation?
OA. Roy can put aside his current projects and prioritize to finish this new project before the others.
OB. Roy should commit to the project deadline and then later change the delivery date as they work on the project.
OC. Roy can commit to the timeline set by the client and make his team work overtime each day to meet the deadline.
OD. Roy can take up the project, hire additional resources, and later charge the client additional fees for the extra hires.
OE. Roy should be honest and agree on a reasonable timeline that he and his team can easily meet.
Hurry I need help
Answer:
I'm pretty sure it's D.
IM NOT REALLY SURE BUT YES
You are a Junior IT Technician in your organisation. One of the duties is to demonstrate and explain how the computer works to the new intern staff. Discuss how you would demonstrate and explain
Recognizing the way computational modeling are utilized is just as important as employing technical knowledge about computer or laptop.
What is a demonstration?Providing verifiable evidence to demonstrate that maybe something real or is correct.
You are a Junior IT Technician in your organization. One of the duties is to demonstrate and explain how the computer works to the new intern staff.
I'll describe how and when to install and set up computer networks, examine computer issues, and resolve technical and application issues over the phone or face to face as an IT specialist.
Based on the scale of the company for which you work, how would you represent particular maybe more knowledge and expertise? A technical IT support team is commonly separated into both first support, with both the second-line support workers answering more specialized inquiries that the first support staff couldn't handle.
More about the demonstration link is given below.
https://brainly.com/question/15070998
#SPJ1
Question 4: Chess Game Knight's travails. Develop a data structure similar to a binary tree. Using a standard 8 X 8 chessboard, show the knight's movements in a game. As you may know, a knight's basic move in chess is two forward steps and one sidestep. Facing in any direction and given enough turns, it can move from any square on the board to any other square. If you want to know the simplest way your knight can move from one square (or node) to another in a two-dimensional setup, you will first have to build a function like the one below. knight plays ([0,0], [1,2]) == [[0,0],[1,2]] knight plays ([0,0], [3.3]) == [[0,0],[1,2), (3,3]] knight plays ((3,3), (0,0]) == [[3.3), [1,2], [0,0]] You are required to do the following:
1. Explain how you can ensure that any move do not go off the board.
2. Choosing a search algorithm for finding the shortest path for the knight's travails.
3. Defend your choice of an appropriate search algorithm to find the best possible move from the starting square to the ending square.
4. Creating a script for a board game and a knight.
5. Create a diagrammatical tree structure, to illustrate all possible moves of the knight as children in the tree structure.
In this task, you need to understand two algorithms which can be helpful, the Breadth-First Search which utilizes the Queue data structure to find the shortest path and the Depth-First Search which can traverse a Stack data structures.
Answer:
Answer: 64
Explanation:
what is the protocol suit for the current internet
Answer:
TCP/IP protocol suite
Explanation:
it just is lol
Explanation: One of the most common networking protocol suites is known as Transmission Control Protocol/Internet Protocol (TCP/IP). All devices that communicate across the Internet must use the TCP/IP protocol suite. Ok bye
This program will output a right triangle based on user specified height triangle_height and symbol triangle_char.
(1) The given program outputs a fixed-height triangle using a * character. Modify the given program to output a right triangle that instead uses the user-specified triangle_char character. (1 pt)
(2) Modify the program to use a loop to output a right triangle of height triangle_height. The first line will have one user-specified character, such as % or *. Each subsequent line will have one additional user-specified character until the number in the triangle's base reaches triangle_height. Output a space after each user-specified character, including a line's last user-specified character. (2 pts)
Example output for triangle_char = % and triangle_height = 5:
Answer:
triangle_char = input('Enter a character:\n')
triangle_height = int(input('Enter triangle height:\n'))
print('')
for I in range (triangle height):
for j in range(i+1):
print(triangle_char, end = " ")
print()
Explanation:
I did this question mark brainiest please
Which of the following variable names best follows all of the correct naming conventions?
Answer:
B
Explanation:
The first_number would be correct.
For which tasks is Layout view most helpful? Check all that apply.
moving an object from one section to another
showing how a report will look when printed
selecting and formatting an object
positioning an object precisely within a section
exporting a report to email or Microsoft 365
The task where the Layout view most helpful is showing how a report will look when printed.
What is the Layout view?The Layout view is known to be a view that is said to be more of visually-oriented when compared to the Design view.
Note that the Layout view is one where each control often shows real data and as such, The task where the Layout view most helpful is showing how a report will look when printed.
Learn more about Layout view from
https://brainly.com/question/1327497
#SPJ1
Answer:
Its B and C
Explanation:
I just answered it. Believe it or not
What are the operations in the machine cycle ?
In which of the following careers must one learn and use programming languages?
Systems Analyst
Software Engineer
Database Administrator
Computer Support Specialist
The career option dealing with the programming languages is software engineer. Thus, option B is correct.
What are programming Languages?The programming languages are given as the type of computer language that performs the task of converting the strings and graphical elements of the program in a visual program. The language has been utilizing the codes of the machine to implement the algorithm.
The career that enables the dealing with the software and the programming is software engineer. Thus, option B is correct.
Learn more about programming language, here:
https://brainly.com/question/12696037
#SPJ1
Choose the appropriate software category for each specific application shown.
: Python
: Microsoft PowerPoint
: Windows 10 operating system
How many terabytes is a 128 gigabyte SD memory card
Answer:
this would be .128 terabytes
Explanation:
This would be since for a whole terabyte you need 1000 gigabytes every 1000 gigabytes is a terabyte for example let’s say you have 5250 gigabytes you would have 5.250 terabytes that simple hope this helped!
Answer:
converting from gigabyte to terabyte, divide by 1000
therefore, 128 gigabyte = 128/1000 =0.128 terabyte
Explain the major hardware and software requirements that supported by Windows OS, Linux OS and Mac OS support
Answer:
You don’t have a great many choices when it comes to your computer's operating system, but the choice that you make can have wide-ranging consequences. The five OSes included here are your most viable options. That's not a huge number, but these operating systems differ distinctly in strengths and weaknesses. Four come from gargantuan commercial tech giants, while one, the Linux-based Ubuntu, is a free, open-source option. Windows and macOS are generally the most powerful in terms of hardware and software selection as well as interface conveniences and utilities, while Chrome OS is more lightweight and runs on inexpensive hardware.
Answer:
Where they are used: Desktops, laptops, smartphones, and other devices run on the Windows operating system. Computers, servers, and several embedded systems use Linux. Mac is primarily used on desktops and not recommended for servers due to its high cost.
To perform any task in the computer, we have to instruct the computer what to do. true or false can you say there is confusion
Answer:
True, we have to instruct the computer what to do.
Explanation:
Identify the following as a Program, Sub-Project, or Portfolio: (2)
a) Obtaining a Masters degree. Sub Project or Program
b) Pakistan’s Nuclear Weapons Program. Program
c) Developing the database of a remote payment system. Sub Project
d) Construction of cars in an automobile company. Portfolio
Answer:
obtaining a master degree.sub project or program
what are some answers about computer languages
Question: What is program execution?
Answer: Program execution is the process of carrying out instructions innate to the program by the computer. Before execution, the computer program is required to be loaded into the memory (RAM) of the computer.
Can someone help me with this!!!.
Assignment Type : Ai using prolog language
• AI Search Techniques
o The search algorithms can solve this problem easily so you must implement one of the uninformed search techniques and one of the informed search techniques to solve the problems
I. Problem #1
1. Problem#1 Overview
Given a list of positive integer Items whose elements are guaranteed to be in sorted ascending order, and a positive integer Goal, and Output is a list of three elements [A,B,C] taken from items that together add up to goal. The Output must occur inside the items list in that order (ascending order).
?-threeSum([3,8,9,10,12,14],27,Output).
Output=[8,9,10];
Output=[3,10,14].
?-threeSum([2,4,8,10,12,14],25,Output).
false.
?-threeSum([2,4,8,12,14,16],20,Output).
Output=[2,4,14].
?-threeSum([1,2,3,4,5,6,7,8,9],12,Output).
Output=[1,2,9];
Output=[1,3,8];
Output=[1,4,7];
Output=[1,5,6];
Output=[2,3,7];
Output=[2,4,6];
Output=[3,4,5].
2. Problem#1 Components:
This program consists of the following engines:
• Planner Engine: is responsible for:
• Taking the query in prolog entered by the user.
• Apply the planning algorithm using depth first search or greedy algorithm to get the path. This algorithm should be implemented in prolog.
• You must solve this problem twice (depth first search and greedy algorithm)
II. Problem #2
1. Problem#2 Overview
Daisy loves playing games with words. Recently, she has been playing the following Deletive Editing word game with Daniel.
Daisy picks a word, for example, "DETERMINED". On each game turn, Daniel calls out a letter, for example, 'E', and Daisy removes the first occurrence of this letter from the word, getting "DTERMINED". On the next turn, Daniel calls out a letter again, for example, 'D', and Daisy removes its first occurrence, getting "TERMINED". They continue with 'I', getting "TERMNED", with 'N', getting "TERMED", and with 'D', getting "TERME". Now, if Daniel calls out the letter 'E', Daisy gets "TRME", but there is no way she can get the word "TERM" if they start playing with the word "DETERMINED".
Daisy is curious if she can get the final word of her choice, starting from the given initial word, by playing this game for zero or more turns. Your task it help her to figure this out.
% deletiveEditing(Initial,End).
Each word consists of at least one and at most 30 uppercase English letters; Initial is the Daisy's initial word for the game; End is the final word that Daisy would like to get at the end of the game.
?- deletiveEditing(['D','E','T','E','R','M','I','N','E','D'], ['T','R','M','E']).
True.
?- deletiveEditing(['D','E','T','E','R','M','I','N','E','D'], ['T','E','R','M']).
False.
?- deletiveEditing(['D','E','I','N','S','T','I','T','U','T','I','O','N','A','L','I','Z','A','T','I','O','N'], ['D','O','N','A','T','I','O','N']).
True.
?- deletiveEditing(['C','O','N','T','E','S','T'], ['C','O','D','E']).
False.
?- deletiveEditing(['S','O','L','U','T','I','O','N'], ['S','O','L','U','T','I','O','N']).
True.
2. Problem#2 Components:
This program consists of the following engines:
• Planner Engine: is responsible for:
• Taking the query in prolog entered by the user.
• Apply the planning algorithm using informed search algorithm (greedy algorithm) to get the path.
This algorithm should be implemented in prolog.
Answer:
Explanation:
Assignment Type : Ai using prolog language
• AI Search Techniques
o The search algorithms can solve this problem easily so you must implement one of the uninformed search techniques and one of the informed search techniques to solve the problems
I. Problem #1
1. Problem#1 Overview
Given a list of positive integer Items whose elements are guaranteed to be in sorted ascending order, and a positive integer Goal, and Output is a list of three elements [A,B,C] taken from items that together add up to goal. The Output must occur inside the items list in that order (ascending order).
?-threeSum([3,8,9,10,12,14],27,Output).
Output=[8,9,10];
Output=[3,10,14].
?-threeSum([2,4,8,10,12,14],25,Output).
false.
?-threeSum([2,4,8,12,14,16],20,Output).
Output=[2,4,14].
?-threeSum([1,2,3,4,5,6,7,8,9],12,Output).
Output=[1,2,9];
Output=[1,3,8];
Output=[1,4,7];
Output=[1,5,6];
Output=[2,3,7];
Output=[2,4,6];
Output=[3,4,5].
2. Problem#1 Components:
This program consists of the following engines:
• Planner Engine: is responsible for:
• Taking the query in prolog entered by the user.
• Apply the planning algorithm using depth first search or greedy algorithm to get the path. This algorithm should be implemented in prolog.
• You must solve this problem twice (depth first search and greedy algorithm)
II. Problem #2
1. Problem#2 Overview
Daisy loves playing games with words. Recently, she has been playing the following Deletive Editing word game with Daniel.
Daisy picks a word, for example, "DETERMINED". On each game turn, Daniel calls out a letter, for example, 'E', and Daisy removes the first occurrence of this letter from the word, getting "DTERMINED". On the next turn, Daniel calls out a letter again, for example, 'D', and Daisy removes its first occurrence, getting "TERMINED". They continue with 'I', getting "TERMNED", with 'N', getting "TERMED", and with 'D', getting "TERME". Now, if Daniel calls out the letter 'E', Daisy gets "TRME", but there is no way she can get the word "TERM" if they start playing with the word "DETERMINED".
Daisy is curious if she can get the final word of her choice, starting from the given initial word, by playing this game for zero or more turns. Your task it help her to figure this out.
% deletiveEditing(Initial,End).
Each word consists of at least one and at most 30 uppercase English letters; Initial is the Daisy's initial word for the game; End is the final word that Daisy would like to get at the end of the game.
?- deletiveEditing(['D','E','T','E','R','M','I','N','E','D'], ['T','R','M','E']).
True.
?- deletiveEditing(['D','E','T','E','R','M','I','N','E','D'], ['T','E','R','M']).
False.
?- deletiveEditing(['D','E','I','N','S','T','I','T','U','T','I','O','N','A','L','I','Z','A','T','I','O','N'], ['D','O','N','A','T','I','O','N']).
True.
?- deletiveEditing(['C','O','N','T','E','S','T'], ['C','O','D','E']).
False.
?- deletiveEditing(['S','O','L','U','T','I','O','N'], ['S','O','L','U','T','I','O','N']).
True.
2. Problem#2 Components:
This program consists of the following engines:
• Planner Engine: is responsible for:
• Taking the query in prolog entered by the user.
• Apply the planning algorithm using informed search algorithm (greedy algorithm) to get the path.
This algorithm should be implem
Which of the following applies to patents?
o They protect the rights of the intellectual property owner.
They represent free speech rights.
o They are pretty symbols.
o They make it OK to take other people's work.