PLS HURRY!!!
Look at the image below

PLS HURRY!!!Look At The Image Below

Answers

Answer 1

Answer:

Explanation:

return value is the second one

function is third one

parameter is first one

Answer 2

Answer  ▪ return valuea value that can be passed from a function back to the calling part of a program.

Answer ▪ functiona group the instructions that can be used to organize a program or perform a repeated task.

Answer ▪ parametera value that can be passed to a function.

[SEE ATTACHED IMAGE]

Spymore
PLS HURRY!!!Look At The Image Below

Related Questions

PLEASE HELP Due Today

Match the term with one of its characteristics.

1. Automation software that enables servers to be provisioned automatically or with a few clicks of a mouse.

2. Log managers read your system logs and look for patterns and make reports.

3. Created an elastic infrastructure that expanded and contracted as demand changed.

cloud

maintain security

data center​

Answers

The matchup are:

1. Created an elastic infrastructure that expanded and contracted as demand changed -cloud2. Log managers read your system logs and look for patterns and make reports.- Maintain security 3. Automation software that enables servers to be provisioned automatically or with a few clicks of a mouse-data center​

What is the software  about?

The  Cloud computing is one that gives a form of elastic infrastructure that gives room for on-demand allocation as well as deallocation of resources.

Lastly  Log managers are known to be computer tools that tends to read system logs as well as look for patterns in the data to see security threats.

Learn more about software   from

https://brainly.com/question/28224061

#SPJ1

Python Project Worksheet
Print | Save
Output: Your goal
You will write a program that asks a user to fill in a story. Store each response in a variable, then print the story based on the responses.

Part 1: Plan and Write the Pseudocode
Use the following guidelines to write your pseudocode for a fill-in story program.

Decide on a list of items the program will ask the user to input.
Your program should include at least four interactive prompts.
Input from the user should be assigned to variables and used in the story.
Use concatenation to join strings together in the story.
Print the story for the user to read.


Write your pseudocode here:











Part 2: Code the Program
Use the following guidelines to code your program.

Use the Python IDLE to write your program.
Using comments, type a heading that includes your name, today’s date, and a short description.
Set up your def main(): statement. (Don’t forget the parentheses and colon.)
Conclude the program with the main() statement.
Include at least two print statements and two variables.
Include at least four input prompts.
Use concatenation to join strings.
Follow the Python style conventions regarding indentation in your program.
Run your program to ensure it is working properly. Fix any errors you may observe.
Example of expected output: The output below is an example of a “Favorite Animal” message. Your specific results will vary depending on the choices you make about your message.

Output

The kangaroo is the cutest of all. It has 5 toes and a beautiful heart. It loves to eat chips and salsa, although it will eat pretty much anything. It lives in New York, and you must be super sweet to it, or you may end up as its meal!


When you've completed writing your program code, save your work by selecting 'Save' in the Python IDLE. When you submit your assignment, you will attach this Python file separately.

Part 3: Post Mortem Review (PMR)
Using complete sentences, respond to all the questions in the PMR chart.

Review Question Response
What was the purpose of your program?
How could your program be useful in the real world?
What is a problem you ran into, and how did you fix it?
Describe one thing you would do differently the next time you write a program.

Part 4: Save Your Work
Don't forget to save this worksheet. You will submit it for your assessment.

Print | Save

Answers

Answer:

I will do it and send it in a pic

Explanation:

give me a sec

what messages do we get about ourselves from rap and hip hop

Answers

The lyrics let us know that we have reached a very low point in the music industry

you need to listen to some YEEEE YEEEEE music

Why do digital media professionals create portfolios of their work?

Answers

Answer:

Then you're going to have to create a digital media portfolio in order to showcase your technical skills and knowledge. It can act as your online resume. You can use it to showcase your related work and projects to potential employers and clients online.

Explanation:

Who here would like to play among us with me?
Time: Friday, November 13

Answers

Answer:

sure

Explanation:

Which best describes why plagiarism can have legal consequences, such as lawsuits and fines?

It upsets the authors of original works.
It can harm the original author’s reputation.
It is considered a form of stealing.
It can lead to the original author being arrested.

Answers

Answer:

C. It is considered a form of stealing.

Explanation:

Sorry, I'm a little late but still hope this helps:)

Answer:

The answer is C

Explanation:

Complete the sentence

-------- are technologies support virtual communities and the sharing of content with friends and family.

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

The correct answer to this question is: Online community technologies.

So, we can fill this question with the correct option as below:

Online community technologies are technologies that support virtual communities and the sharing of content with friends and family.

As we know that online community technologies are those technologies where people of the same group or interest make community virtually online. Where they can share their contents such as pictures, videos, thaught, ideas, etc with the group or family members.

There are different technologies that support virtual communities to share content with friends and family.

Such as Zoom meetings, Sk ype, Face book, Insta gram etc.

Answer:

Taking the quiz rn and I put social media

Explanation:

Social media is the closest description to this however it may be collaborative tools if it’s not social media.

The interprets the data while it is in RAM​

Answers

Answer:

The input interprets the data while it is in RAM.

Explanation:

WHAT DOES INFORMATION TECHNOLOGY DO??
Do they offer services or products

Answers

Yes

Explanation: Information technology, or IT, describes any technology that powers or enables the storage, processing and information flow within an organization. Anything involved with computers, software, networks, intranets, Web sites, servers, databases and telecommunications falls under the IT umbrella.

can anyone answer this ​

Answers

Answer:

I dont see the question

Explanation:

When numbers are changed in cells that are involved in formulas, the formulas are automatically
changed
highlighted
O removed
recalculated

Answers

When numbers are changed in cells that are involved in formulas, the formulas are automatically
changed
highlighted
O removed
recalculated
removed

I think it is O removed

TASK 1 – Work out the cost.
The cost of the trip for each student is a share of the cost of a coach plus the cost of entry to the theme park.
The total cost of the coach will be $550. The entry cost to the park is $30 for each student. The national park gives one free ticket for every ten that are bought, which must be taken into consideration.
Set up a program that:

• stores the cost of the coach
• stores the cost of an entry ticket
• inputs the estimated number of students taking part, this must be validated on entry and an
unsuitable entry rejected
• calculates and outputs the recommended cost per student to ensure the trip does not make a loss.

Write an algorithm to complete Task 1, using either pseudocode, programming statements or a
flowchart. [5]

Answers

Answer:

please check the question again

Explanation:

Select the correct answer from the drop-down menu.
Chrissie shirks the additional work given to her.
She lacks the trait of

Answers

Answer:

Responsibility

Explanation:

4.5 code practice edhesive

Answers

Answer:

n= input("Please enter the next word: ")

x=1

while(n != "STOP"):

 print("#" + str(x) + ": You entered " + n)

  x=x+1

  n= input("Please enter the next word: ")

print("All done. " + str(x-1) + " words entered.")

Explanation:


1. As part of your community, your school, and your neighbourhood, how else does ICT have an impact on social
awareness? What are these changes that are neglected in the bigger perspective?

Answers

Answer:

helthcare systems, aviation, entertainment, retail, etc

Explanation:

ICT has made life easy, it has made an interconection accross the world. in the helthcare system, ICT has created a positive impact because now a days body check up is been made through computers.

in the aviation, we use computers to control the the traffic of airplanes.

Advantages of Linux include_____.
(Multiple choice)(photo attached)

-cost
-the ability to tweak the application
-ease of use
-security
-a time table for customer support

Answers

Answer:

The ability to tweak an application, and i think security. I've barely scratched the surface of linux so my answer may not be 100% accurate

Explanation:

i emailed someone and im sure that they emailed back however it says nothing has arrived in my inbox what do I do

Answers

Answer:

report it or check ur spam mail or refresh the page

Explanation:

good luck figuring it out :)

<BUTTON TYPE="BUTTON" VALUE="SUBMIT">SUBMIT YOUR FORM</BUTTON>
</FORM>
</BODY>
</HTML>
Write the question of this programming .​

Answers

Answer:

The correct answer to this question is given below in the explanation section.

Explanation:

This is an inference question. I mean that in this question, an answer is given, you have to generate the question.

The given code is :

BUTTON TYPE="BUTTON" VALUE="SUBMIT">SUBMIT YOUR FORM</BUTTON>

</FORM>

</BODY>

</HTML>

So, the answer (i.e. to write a question) is

Write a HTML code that displays a button in its body with the text "Submit Your Form ".

Choose the parts of the browser window. PLEASE ANSWER QUICKLY TEST

Answers

it would be display window

Answer:

display window

Explanation:

as it is where the browsed data is to be displayed

Direction: Put a check (/)mark if the statement is
correct and Irofessional. Letter W if it is incorrect.

Answers

Explanation:

Xghhdghxhdhzhhzshh, hdhshxxx

I need help please I’m behind

Answers

Answer:

The last one

Explanation:

Software is coding so they'll be impressed :)

Answer:

network administrator

Explanation:

It says a job that manages NETWORK hardware and software. So I would put network administrator.

ABC IF U HAVE A LEGENDARY PET ON ADOPT ME OR ANYTHING COOL!! <3

Answers

Answer:

ABC PLEASE

Explanation:

Answer:

ABC i have mega owl and neon cow and mega frost <3

Style guides advise writers on which issues? Check all that apply.

applying consistent standards
citing sources
formatting text
performing research
using correct definitions

Answers

Answer:

A. applying consistent standards

B. citing sources

C. formatting text

Explanation:

A style guide can be defined as a set of standards that typically guides writers or authors in writing and the design of documents such as memo, novels, books etc, for a particular organization, specific publications or general use by the public such as students, academic scholars or institutions, government, careers, businesses etc.

Basically, a style guide avails the writers or authors with the sets of standards so as to ensure uniformity in formatting techniques, style and citations.

Hence, style guides advise writers on issues such as;

I. Applying consistent standards.

II. Citing sources.

III. Formatting text.

Answer:

ABC

Explanation:

define reading and writing that regards storage​

Answers

Answer:

Reading and writing on computers and other gadgets require storage.

HOPE THIS HELPS

HAPPY THANKSGIVING

Choose the correct term to complete the sentence.

is often used to describe the scope of a variable that is only accessible within a function.

Neighborhood

Local

Functional

Answers

Answer:

Answer is Local

Explanation:

Answer:

Local

Explanation:

Edge 2020

Assignment 4: Evens and Odds

Answers

n = int(input("How many numbers do you need to check? "))

even = 0

odd = 0

for x in range(n):

   num = int(input("Enter number: "))

   if num % 2 == 0:

       print(str(num) + " is an even number.")

       even += 1

   else:

       print(str(num) + " is an odd number.")

       odd += 1

print("You entered "+str(even)+" even number(s).")

print("You entered "+str(odd)+" odd number(s).")

This works for me. Best of luck.

The program checks if user supplied integers are even or odd and displays the appropriate value. The program is written thus in python 3 ;

n_check = int(input("How many numbers do you need to check? "))

#number of values user wishes to test

even_count = 0

odd_counts = 0

for n in range(n_check):

num = int(input("Enter number: "))

if num % 2 == 0:

#even numbers leave no remainder when divided by 2

print(str(num) + " is an even number.")

even_counts+= 1

#increase count of even numbers

else:

print(str(num) + " is an odd number.")

odd_counts += 1

print("You entered "+str(even_counts)+" even number(s).")

print("You entered "+str(odd_counts)+" odd number(s).")

#display the number of even and odd numbers entered.

Learn more : https://brainly.com/question/24171161

Hi! Is anyone really good at making pretty schedules and designs? I don't have any money, but I could give points. I'll give a small number of points on this answer, but if you make the schedule I'll give you lots of points! (I'll send you the actual parts of the schedule I just need someone to make it look pretty) Thank you so much!

Answers

Could I see what you would like it to look like?

The Monroe Doctrine promised that the United States would:
A. not accept new colonies in the Americas.
B. cut itself off from nearly all foreign trade.
C. send its military to defend all new democracies.
D. take a more active role in European affairs.​

Answers

Answer:A

Explanation:

The Monroe Doctrine promised that the United States would not accept new colonies in the Americas. The correct option is A.

What is Monroe Doctrine?

The Monroe Doctrine is the most well-known example of US policy toward the Western Hemisphere.

The doctrine, buried in President James Monroe's routine annual message to Congress in December 1823, warns European nations that the United States will not tolerate further colonization or puppet monarchs.

Although initially ignored by Europe's great powers, the Monroe Doctrine eventually became a cornerstone of US foreign policy.

President James Monroe of the United States declared the United States to be the protector of the Western Hemisphere in 1823, prohibiting European powers from colonizing additional territories in the Americas.

The doctrine's three main concepts separate spheres of influence for the Americas and Europe, non-colonization, and non-intervention were intended to mark a clear break between the New World and Europe's autocratic realm.

Thus, the correct option is A.

For more details regarding Monroe Doctrine, visit:

https://brainly.com/question/290388

#SPJ5

Complete the sentence

. A single IP address ______ be simultaneously assigned to more than one device in the network.

Answers

Answer:

Cannot, I will just stick with that answer. if not that it's can.

This is used to track a user’s browser and download history with the intent to display popup banner ads that will lure a user into making a purchase.

Select one:
Adware
Worm
Phishing
Malware

Answers

Answer:

Adware

Explanation:

Adware is software designed to display advertisements on your screen, most often within a web browser.

Hope that helps.

A software that used to track a user’s web browser and download history with the intent to display popup banner adverts (ads) that will lure an end user into making a purchase is: A. Adware.

An adware is also referred to as an advertisement-supported software and it can be defined as a software application (program) that is designed and developed to automatically display advertising materials such as banners or pop-up adverts (ads) on the graphical user-interface (GUI) of a user's computer system or mobile device.

The main purpose for the development of an adware is to automatically display popup banner adverts (ads), in order to lure or convince an end user into making purchase of the advertised product or service.

In conclusion, an adware is a software that is typically used to track and gather information about a user’s web browser and download history with the intent to display popup banner adverts (ads) that will lure an end user into making a purchase.

Read more on adware here: https://brainly.com/question/9692296

Other Questions
If a student asks a teacher a question about sex, the teacher should discuss it with him/her?Agree DisagreeWhy? Dan charges a fixed amount per hour. He charges 180 for a job which takes 12 hours. Work how much he will charges for a job which will take 18 hours. Help please really HELP Read this passage about Christopher Reeve.Christopher Reeve was born on September 25, 1952, in New York City. His mother was a journalist, and his father was a professor. As a kid he played sports, did well in school, and liked acting. His passion for acting goes back to playing with his brother when they were little. Reeve acted in his first play at the age of nine. After attending college, taking acting classes, and acting in many plays and movies, Reeve landed his biggest role. In 1978, he played the title role in Superman. He received very positive reviews for his performance and starred as Superman in all the sequels. Reeve was soon acting as the lead role in dozens of movies after Superman. Once well-known, Reeve used his celebrity status for good causes, such as visiting very sick children through the Make-A-Wish foundation. He was also a track and field coach at the Special Olympics.Besides acting, Reeve was also a licensed pilot and liked horseback riding. He learned to ride horses for a movie role, and he continued riding in his free time. Unfortunately, while riding one day in 1995, Reeve fell from his horse and became paralyzed from the neck down. Being confined to a wheelchair did not hold back Reeve from being socially active, and after many surgeries and rehabilitation, he decided to dedicate his life to helping people with spinal-cord injuries. He created the Christopher Reeve Foundation, which supports the improvement of the lives of people with disabilities and helps fund research to find a cure for paralysis. He was also politically active, working with senators to make sure that people with disabilities were treated fairly in the workplace. Reeve received many awards for his dedication to public service. He also wrote two books about his experiences, and a documentary was made about his life. Reeve passed away in 2004, but his legacy lives on today. He touched the lives of many people and showed us what it means to overcome extreme odds by never giving up.Based on this passage, Reeve best fits in the yearbook categoryMost Likely to Take Risks.Most Likely to Help Others.Most Likely to Run for President.Most Likely to Be a Musician. In 1972 where was the major source of opium grown that was used for US heroin and where was it converted?HELP PLZ!! What is the basis of Chinese religion? A:PhyschologyB:PhysicsC:humanismD:Philosophy Which pair shows equivalent expressions? This system os responsible for movement of bones and fluids throughout the body Please someone help me graph the table on to the graph and tell me if it is a linear and nonlinear and explain how it is a linear or a nonlinear Which of the following is equivalent to 5(3x+2) 4. AND should be used to search for 2 concepts h(x) = 4x-2, then which of the following is the solution to h(x)= 3 The graph below shows the cost of pens based on the number of pens in a pack. What would be the cost of one pen?A graph is shown with title Purchase of Pens. The horizontal axis label is Number of Pens, and the vertical axis label is Cost in dollars. Points are plotted on the ordered pairs 3, 4.50, and 5, 7.50 and 7, 10.50.(3 points) a$1.50 b$2.30 c$6.00 d$13.50 A ball is thrown 24 m/s into the air. How high does it go?556.4 m0 m29.4 m-556.4 m When asked for a donation to help the poor, how does Scrooge respond? Write at least twocomplete sentences describing Scrooge's response. I (a) A yoga instructor collected student data. She found that students who had less sleep did not tend to burn more or fewer caloriesduring class. What can she conclude?There is no correlation between amount of sleep and number of calories burned.There is a correlation between amount of sleep and number of calories burned. There may or may not be causation. Further studies wouldhave to be done to determine this.There is a correlation between amount of sleep and number of calories burned. There is probably also causation. This is because there is likelyan increase in the number of calories burned with an increase in the amount of sleep. what were the reasons juliet pleaded against the match with count paris? $25 with a 300% increase Which best explains the purpose of a primary election? Please answer correctly !!!!!!!!!!!!!!!! Will mark brainliest !!!!!!!!!!!!!!!!!!!!