Write a loop to populate user_guesses with num_guesses integers. read integers using int(input()). ex: if num_guesses is 3 and user enters 9 5 2, then user_guesses is [9, 5, 2].

Answers

Answer 1

Answer:

num_guesses = 3  #initialized number of guesses to 3

user_guesses = []  #declared the user_guesses array

guess = 0  #guess variable initialized to 0

print('Enter a number: ')  #prompt telling the user to enter a number

while guess < num_guesses:  #loop capturing input and storing into array

   num = int(input())

   user_guesses.append(num)

   guess = guess + 1

#end of loop

print(user_guesses) #array outputted to user

Explanation:

The above program captures numbers from the user and stores into an array (user_guesses), the length of the array is determined by the value contained in the num_guesses variable, it prints the combined input as an array.

Answer 2

Loops are code statements that are used to repetitive statements.

The loop in Python where comments are used to explain each line is as follows:

#This gets input for the number of guesses

num_guesses = int(input())

#This initializes a list for user guess

user_guesses = []

#The following is repeated

for i in range(num_guesses):

   #This gets input for the guess

   num = int(input())

   #This adds the guess to a list

   user_guesses.append(num)

#This prints all the guesses by the user

print(user_guesses)

Read more about loops at:

https://brainly.com/question/19344465


Related Questions

To take private property through eminent domain, three steps must be taken by the state or local government. What are they?

Answers

Answer:

•The owner of the property must receive compensation on the property.

• The property must be useful to the general public.

• The owner must initiate due process in the court.

Explanation:

An administrator is trying to enable hardware-assisted virtualization in the BIOS of a computer and notices it is not an option. He checks the specification on the manufacturer's website and finds that the system should support hardware-assisted virtualization. What is most likely the reason why he can't enable it?A. The BIOS needs a firmware update.B. The BIOS is corrupt.C. Hardware-assisted virtualization is enabled in the operating system, not the BIOS. D. The firmware is corrupt.

Answers

Answer:

this is difficult

Explanation:

i also need helo with this question

__ view is a special view that you typically use when showing a presentation through two monito

Answers

Answer: presenter view

Explanation:

Presenter view is used to show a presentation from two displays such as laptop,monitor, projector screen

After correctly configuring a new wireless enabled thermostat to control the temperature of the company's meeting room, Joe, a network administrator determines that the thermostat is not connecting to the internet-based control system. Joe verifies that the thermostat received the expected network parameters and it is associated with the AP. Additionally, the other wireless mobile devices connected to the same wireless network are functioning properly. The network administrator verified that the thermostat works when tested at his residence. Which of the following is the MOST likely reason the thermostat is not connecting to the internet?

Answers

Answer:

The WPA2 shared key is incorrect is the correct answer.

Explanation:

The WPA2 shared key is incorrect because when the technician installs a new wireless thermostat for the purpose to control the temperature of the meeting room. Then, admin determines that the thermostat is not connecting to the control system through the internet and the admin authenticate that its parameter of receiving thermostat is associated with the AP. So, that's why the following option is correct.

WikiLeaks is a famous not-for-profit whistleblower website. MasterCard and Visa stopped payments to WikiLeaks after a series of leaks by the site. An anonymous group attacked the websites of both MasterCard and Visa reacting to this. These web vandals, who tried to protect WikiLeaks, are called ________.

Answers

Answer:

Hacktivists

Explanation:

Hacktivists are individuals who gain unauthorized access to computer networks or information, then use unruly ways to effect social or political change. Hacktivism started as a way of protesting online to effect a change by pushing for a certain outcome. This saw the building of websites such as wiki leaks. Although hacktivists are not entirely driven by malicious intent they employ some tactics used by hackers to drive their message across.

Riser cards on some proprietary systems plug into a unique socket or slot on the motherboard. These are also called________

Answers

Answer: Daughter board

Explanation:

A daughter board is refers to the circuit board and it is basically connected to the motherboard directly without any interruption.

It is also known as a daughter card which plugs and then extended the circuitry by connecting with the another circuit board. A mezzanine card and the riser card are the examples of the daughter board that used in the system.

According to the question, the riser card basically plus into the unique socket or the slot in the board and this is known as the daughter board.

Therefore, Daughter board is the correct answer.          

As the manager for network operations at his company, Shane saw an accountant in the hall who thanks him for keeping the antivirus software up to date. When asked what he means, he mentions one of the IT staff members named Michael called him yesterday and remotely connected to his PC to update the antivirus…but there’s no employee named Michael. What happened?A) IP spoofingB) MAC spoofingC) Man-in-the-middle attackD) Social engineering

Answers

Answer:

D. Social engineering.

Explanation:

In IP spoofing, ip packets with a false ip address source is created with the sole intent on impersonating a client system in a network.

MAC (media access control) address spoofing is similar to ip spoofing, but is related to stealing MAC integrity to impersonate a system.

So, man in the middle security attack is very much related to an active member of a company planting security threat codes to gain access to restricted networks.

Social engineering clearly describes this scenario, as the culprit is not a member of company but played on the ignorance of a member.  

Which of the following examples of using the internet to conduct research meets the federal definition of research with human subjects?

Answers

The question is incomplete! Here is the complete question and it’s answer!

Q. Which of the following examples of using the internet to conduct research meets the federal definition of research with human subjects?

A. Gathering data to supplement an oral history project about a local civil rights activist. The activist passed away while the researcher was in the process of conducting in-person interviews with the individual's social network.

B. Analyzing a website visitor report from several pro-anorexia blogs to determine the popularity of each blog. Access to the blogs is not restricted.

C. Downloading a publicly available data-set that includes high school students' academic achievement rates. The data are in aggregate and were derived from multiple school districts from different states.

D. Conducting an on-line focus group with cancer survivors to determine familial support systems. The researcher also invites subjects' significant others to be a part of the focus group.

Answer:

D. Conducting an on-line focus group with cancer survivors to determine familial support systems. The researcher also invites subjects' significant others to be a part of the focus group.

Explanation:  

According to federal definitions;

1. ‘Human Subject Research’ is a research that involves human subjects.

2. ‘Research’ is a systematic investigation that is designed to contribute to generalizable knowledge.  

Only option D is valid since other options do not fulfill the two criterion mentioned above

What will display after the following code executes?password = 'ILOVEPYTHON'if password.isalpha(): print('Invalid, must contain one number.')elif password.isdigit(): print('Invalid, must have one non-numeric character.')elif password.isupper(): print('Invalid, cannot be all uppercase characters.')else: print('Your password is secure!')

Answers

Answer:

Invalid, must contain one number

Explanation:

The program will assign ILOVEPYTHON to the password variable and start checking the cases stated below.

password.isalpha(): is true for the given password value and the code will execute, the display will show "Invalid, must contain one number." and it will bypass the elif and else statements.

I hope this answer helps.

The ____ term implies that the type’s data can be accessed only through methods.

A. abstract type library
B. advanced data type
C. abstract definition type
D. abstract data type

Answers

Answer:

D. abstract data type

Explanation:

Abstract data type is a data type whose implementation is embedded behind an abstraction. They can be worked via methods and functions but their  specification is abstracted.

Lists and Stacks can be given as examples of abstract data types.

Abstract data type can be considered as the opposite of Concrete Data Type (CDT).

Final answer:

The abstract data type (ADT) is the correct term that refers to a type where its data is accessible only through specific methods, providing encapsulation of data.

Explanation:

The abstract data type (ADT) term implies that the type’s data can be accessed only through methods. This encapsulates the data and only allows it to be accessed or manipulated through a defined set of operations. ADTs provide a mathematical model for data types where data and operations are defined independently of any specific implementation.

This abstraction allows for different implementations that can vary internally but share the same external interface. An example of an ADT is a stack, which provides operations such as push, pop, and peek without revealing the underlying data structure, whether it be an array, list, or any other method of internal representation.

Use the convert command to convert the D: drive to use NTFS instead of FAT32 without destroying any existing data on the disk. If you format the drive, all existing data will be lost. Converting the drive keeps the existing data, but switches the volume to use the NTFS file system.

Answers

Answer:

Following steps can be followed to convert disk From FAT 32 to NTFS.

1. Open cmd (Command Prompt)

2. In cmd type the following:

d: /fs:ntfs

To convert the D: drive to use NTFS instead of FAT32 without losing data, use the Windows convert command. Remember to back up your data before making any changes.

To convert the D: drive from FAT32 to NTFS without losing data, you can use the convert command in Windows. This process switches the file system without formatting the drive, preserving the existing data.

For example, you can open a Command Prompt window and type convert D: /fs:ntfs to convert the D: drive to NTFS. Remember, if you format the drive, all data will be lost.

It's crucial to backup your data in multiple locations before attempting any changes to avoid data loss.

You recently completed a network overhaul over the weekend. Everything seems to be functioning properly until you receive a swarm of help desk support requests, all originating from one specific floor in your building. After a few minutes on the phone with those affected, you determine that no one has indicator lights active on their NICs. What is the most likely problem?

Answers

Answer:

Network switch has been disconnected or switched off

Explanation:

An organization networking can be done by using several switches, routers, modems, etc. A network switch works between modem and systems, connecting the systems to the network.

A network switch is a multi-port switch that connects multiple devices to the network. mostly every floor has a network switch connected with the floor systems.

When a system is connected to switch, its indicator light on NIC is active. but as per the scenario, no system has active indicator lights on NIC, which means that there is some problem with the switch or switch is powered off.

In defining security implemention, what are the roles of the following committees. 1) gateway committee 2) project committee 3) security compliance committee

Answers

In network, security plays important roles and implementing is a big task.

1. Gateway committee: It protects the hackers and any malware spyware to attack the network. Once hardware appliance is installed schedule update is happening at regular interval time.

2. Project committee:- it is an implementation plan and with minimum downtime in network and restoring the network and bring back the activities of the network.

3. Security compliance committee: - The network administrator has to select proper hardware appliance and to place in a network with minimum downtime.

Matthew is working to select an authentication method for his company that will support REST as well as many web-based and mobile clients. Which of the following would be the best choice?A) ShibbolethB) RADIUSC) OpenID ConnectD) OAuth

Answers

Answer:

C) OpenID Connect

Explanation:

The best option is OpenID Connect because is based in OAuth, and supports multiple web based and mobile clients, and supports REST.

With OAuth, we cannot make any user authentication just provide a token to access data.

RADIUS is a networking protocol, and Shibboleth is a single sign-on log-in system for computer networks and the Internet, both not support REST.

PowerPoint:
In the Outline pane, a highlighted slide icon next to the slide number indicates that the slide is selected.
True or False?

Answers

Answer:

The following statement is True.

Explanation:

Because in the powerpoint presentation, the outline pane is the icon that is next to the slide number which signifies the highlighted slide in which the user is selected. The PowerPoint presentation is an application or software in which the users create their presentation for the offices, schools, and colleges, etc on the slides.

Answer:

True

Explanation:

True

outline pane in power point is a type of navigation panel which major function is to give a broad view of the current document, to take overview  of an alignment, or for any change.

It is available on view tab  under the heading of presentation views group. it appear on the left side of the screen with different heading to operate.

Dot Notation can be used with lower(), upper() or str() string methods. true or false

Answers

Final answer:

The statement is true; dot notation can indeed be used with the lower(), upper(), or str() string methods to manipulate strings in programming.

Explanation:

The statement that Dot Notation can be used with lower(), upper(), or str() string methods is true. Dot notation is a syntactic form that allows access to an object's properties, functions, or methods. In the context of string manipulation in programming languages such as Python, when you have a string object, you can apply various methods to it using dot notation.

For example, the lower() method can be used to convert all characters in a string to lowercase. Similarly, the upper() method converts all characters to uppercase. The str() method is often used to convert a non-string object to a string.

Here's how they can be used in practice:

my_string.lower() - Turns all characters in my_string to lowercase.my_string.upper() - Converts all characters in my_string to uppercase.str(my_object) - Converts my_object (which could be any type of object like an integer or a float) to a string format.

Consider the abstract superclass below:
public abstract class Foo
{
private int a;
public int b;

public Foo( int aVal, int bVal )
{
a = aVal;
b = bVal;
} // end Foo constructor

public abstract int calculate();
} // end class Foo

Any concrete subclass that extends class Foo:
1) Must implement a method called calculate.
2) Will not be able to access the instance variable a.
3) Neither (a) nor (b).
4) Both (a) and (b).

Answers

Answer:

4) Both (a) and (b).

Explanation:

In addition to regular classes, Java has abstract classes. An abstract class is like a regular class. You can also define fields and methods in an abstract class, while at the same time, you cannot create an object or an instance of an abstract class. Abstract classes are designed to provide basic functionality for derived classes while derived classes required to implement this functionality.

A derived class must override and implement all abstract methods that are in the base abstract class. Therefore answer a (1) is correct.

Access modifier for the field a was private which means it has to be provided with accessor methods to obtain/modify its value. Therefor answer b (2) is correct as well.

On the Visit screen, you will not see one of the following:
a. Eligibility
b. Access level
c. Home Address
d. None of the Above

Answers

Answer:

The answer is "Option b".

Explanation:

An access level denotes a set of data type permissions or restrictions, that reduces the access level, which is an effective way to reduce failure modes, debug time and system complexity. and other options are not correct, i.e. define as follows:

In option a, In some of the cases, the system provides security, which is responded by the server to check the Eligibility of user, that's why it is not correct.In option c, The home address is always shown on the URL, that's why it is not correct.

A blog is best defined as:

A. a web site primarily involved in tracking people's behavior on the Internet.
B. a web site that typically acts as brokers for advertisers and web sites.
C. a smaller version of the banner that often look like an icon and usually.
D. a reverse chronological journaling site.
E. a little billboard that spreads across the top or bottom of the web page.

Answers

Answer:

D. a reverse chronological journaling site.

Explanation:

A blog is a website regularly updated with relevant topics, it usually displays information in reverse chronological order, where the last item added is displayed first. blog ( originally weblog ) simply is journal that is hosted online where people have access to it for educational or informational purposes.

On a Linux system it is considered bad manners to create files and folders in the _______________ directory.

Answers

Answer:

Root

Explanation:

Linux is an open source operating system which receives command from the user and communicates with the hardware, and in Linux the root directory is the top level directory that contains all other directory, it is not recommended to create files and folders in  the root directory because the commands the user enters may change files that the operation system may depend on for usage.

According to EEOC guidelines, a reasonable accommodation includes: (I) Providing interpreters or readers for the disabled employee (II) Making the facilities usable by individuals with disabilities (III) Restructuring the job by lowering the standards for disabled employees (IV) Modifying work schedules

Answers

Answer:

Option (i), (ii) and (iv) is the correct options for the following question.

Explanation:

Because according to the EEOC, the citizen of the United State gets the equal rights of the employment without any resistance on the color of the peoples, religion, sex, etc.

Under these guidelines, the government especially facilitates those persons also who are disabled by providing them interpreters or readers and also modifying schedules of the work.

A network administrator has been given a network of 172.16.85.0/21 and wants to know the usable range of IP addresses on that subnet. Which of the following indicates the correct IP address range?A. 172.16.80.0-172.16.85.254B. 172.16.80.0-172.16.88.255C. 172.16.80.1-172.16.87.254D. 172.16.80.1-172.16.85.255

Answers

Answer:

The correct answer to the following question will be option C.

172.16.80.1-172.16.87.254

Explanation:

IP Address: IP Address stands for Internet Protocol Address, a unique numerical label allotted to every computer network that are connected to the network of the computer and communicate through the internet protocol.

An IP address can be separated by periods and having four numbers that are called Octet. Range of IP address can be from 0 to 255.We have to keep the first 21 bits and start setting all from the 22nd bit on to 0 (zero).To get the suitable and the correct range of the address, we add and subtract 1 from the given broadcast address i.e.,172.16.85.0/21.

So, option C is the right answer and no other option is usable according to the given explanation and the address given by the administrator.

A blog is best defined as: a web site primarily involved in tracking people's behavior on the Internet. a web site that typically acts as brokers for advertisers and web sites. a smaller version of the banner that often look like an icon and usually provide a link to an advertiser's landing page. a little billboard that spreads across the top or bottom of the web page. a reverse chronological journaling site.

Answers

Answer:

a reverse chronological journaling site.

Explanation:

A blog originally known as weblog, is an online journal containing informational or educational content, it usually displays information from the last added item ( that is why it is called reverse chronological journaling site), it can be personal or for a corporate entity for promoting brand identity.

What are the two main purposes of S/MIME?
Digital signatures
Encryption
Junk mail prevention
Spam prevention

Answers

The two main purpose of S/MIME are digital signatures and encryption

Explanation:

The Secure Multipurpose Internet Mail Extension is used to protect the data that is the data will be encrypted and it is used in security purpose and gives authentication at the receiver and at the sender side

This public key also allows the users to digitally sign the mail and check for the fraudulent in cases thus it allows the digital signing of mails and envelops the data and it is defined in detail in the RFC 3369 and 3370

This has now been also layered in the Cryptographic message syntax

The ability for a protocol or program to determine that something went wrong is known as_________.

Answers

Answer:

The correct answer to the following question will be Error-detection.

Explanation:

Error-detection: The detection of errors caused during the transmission from the transmitter to the receiver by damage and other noises, known as Error-detection. This error-detection has the ability to resolute if something went wrong and if any error occurs in the program.

There are mainly three types of error-detection, these types can be followed:

Automatic Repeat Request (ARQ)Forward Error CorrectionHybrid Schemes

There are two methods for error-detection, such as:

Single parity checkTwo-dimensional parity check

What tag allows you to tell Google Ads which specific customer actions should be tracked as a conversion?A) An event tagB) An analog tagC) A global site tagD) A temporary tag

Answers

Answer:

The tag which allows you to tell Google Ads which specific customer actions should be tracked as a conversion is:

A) An event tag

Explanation:

The option A is correct as the event tag takes record of clicks and impressions of the customer as well as you can add some other functionality by changing the settings option. So, this tag allows you to tell Google Ads which specific customer actions should be tracked as conversion.The option b and d are incorrect as such tags don't exist in google ads.The option c is also incorrect as the global tag is used to send the date of event to other applications like Google Analytics, Campaign Manager etc.

A device's mean time between failure (MTBF) rating provides an estimate of how long the device should last?
A) True
B) False

Answers

Answer:

True

Explanation:

You’re responsible for an always-on VPN connection for your company and have been told that it must utilize the most secure mode for IPSec possible. Which of the following is best?

A) Tunneling
B) AH
C) IKE
D) Transport

Answers

Answer:

Tunneling

Explanation:

A networking protocol that is used to send data from one network to another network by encapsulation process.

It is the more secured method as it secures the data with the help of encapsulation process. Rest of the protocols are not helpful in security of data.

Show two ways of bracketing an exposure of f/16 at 1/125 shutter speed. (Copy the two lines below and fill in the blanks for the two alternate exposures for each way. Remember that you need an f-stop and a shutter speed to write an exposure.)

Answers

Answer:

Explanation:

If we use bracketing, we must take three pictures of the same place, but we must take it with different exposures.

In this particular example we have an exposure of f/16 at 1/125 shutter speed, first we must take underexposed picture with exposure of f/22 at 1/125 shutter speed or exposure of f/16 at 1/400 shutter speed, then we take an overexposed picture with exposure of f/8 at 1/125 shutter speed or exposure of f/16 at 1/50 shutter speed.

The last step is taking the three pictures and use the option bracketing in an editing photo tool, there are cameras that have this option to take 3 pictures automatically.

You have a forest named PLAB and two domains, PLABA and PLABB. You want to add the users from both the domains to a group that should be restricted within the PLABA domain. Which type of group scope should you set for this group?

Answers

Global group is also called universal group users.

Explanation:

A network administrator has two domains are such  as PLABA AND PLABB. End-user of each domain wants to login both domain PLABA AND PLABB.

Network administrator has created global group accounts user domain and map all the users in the global group user domain.  For every user active directory and rights also be mapped.  Global group is also called universal group users. Group polices of each user has to be applied and mapped properly.

Once user are mapped and activated user can login from both domain server.

Other Questions
Describe the meeting between Gatsby and Daisy.1. Daisy did not recognize him. He was embarrassed and tried to leave, but Nick stopped him.It was initially very awkward. Gatsby was nervous. 2. They became more at ease as they talked.Daisy was upset with Nick for not warning her. 3. She did not want to see Gatsby and left as soon as her chauffeur returned.It was love at first sight for both of them. 4. They wandered off into the living room and left Nick alone in the kitchen. Subjective effects of benzodiazepine use tend to include ________________________. Two Technicians are discussing Tire Fitment information.Technician A says this provides vehicle specific specsincluding inflation pressure, OEM tire size, and lug nuttorque. Technician B says this provides genericinformation including tire rotation patterns, reading atire sidewall, and lug nut torque sequences. Who iscorrect?OTechnician AonlyOTechnicianonlyOBoth Technician A and TechnicianONeither Technician A nor Technician B how can music contribute to a sense of community and help draw attention and raise awareness for a social cause in the community? Please help 20 Points This is pretty Easy but I'm dumb so please help me Brett has 2 dogs. Meaghan has four times as many cats as Brett adopts two more dogs, how many cats must meaghan adopt to maintain the same ratio of cats to dogs Find the missing side length leave your answers as radicals in the simplest form. Suppose you purchase a 9-year AAA-rated Swiss bond for par that is paying an annual coupon of 5 percent and has a face value of 2,600 Swiss francs (SF). The spot rate is U.S. $0.66667 for SF1. At the end of the year, the bond is downgraded to AA and the yield increases to 7 percent. In addition, the SF depreciates to U.S. $0.74074 for SF1.a. What is the loss or gain to a Swiss investor who holds this bond for a year?b. What is the loss or gain to a U.S. investor who holds this bond for a year? Which one of the following statements is true?A. Some real gases have lower pressures than that calculated for the ideal gas because of attraction between molecules.B. For a real gas, PV is always less than nRT.C. Some real gases have lower pressures than that calculated for the ideal gas because of the finite volume occupied by the molecules.D. For a real gas, PV is always greater than nRT.E. Gases are likely to be more real and less ideal at high temperatures. HELP/ANSWER PLZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ Suppose the NFL wants to give the "common fan" the opportunity to attend the Super Bowl, so it sets Super Bowl prices "low"let's say they set ticket prices for a regular seat at the Super Bowl to cost $400. People who have tickets, however, can turn around and sell them online for $1,500 or more. If there are no transaction costs for fans with tickets to sell them, the true cost to a fan of attending the Super Bowl is: Tully draws four 10 - sticks and less than ten circles to make a number. Write the numbers Tully could make How do astronomers think Jupiter generates its internal heat? A) radioactive decay B) internal friction due to its high rotation rate C) chemical processes D) nuclear fusion in the core E) by contracting, changing gravitational potential energy into thermal energy Matched pairs of chromosomes, both carrying genetic information for particular traits, are called _____1. polygenic.2. sex chromosomes.3. dominantrecessive.4. autosomes What was a labor party? Concierge Industries manufactures 40,000 components per year. The manufacturing cost of the components was determined as follows: Direct materials Direct labor Variable manufacturing overhead Fixed manufacturing overhead Total $ 75,000 120,000 45,000 60,000 300,000 An outside supplier has offered to sell the component for $12.75 Concierge Industries can rent its unused manufacturing facilities for $45,000 if it purchases the component from the outside supplier What is the effect on income if Concierge purchases the component from the outside supplier? Oa. $135,000 increase b. $165,000 decrease O c. $ 195,000 increase Od. $225,000 decrease Describe the principle of overload, and explain how frequency, intensity, time, and type can help you safely apply overload to your favorite workout A ballistic pendulum is a device used to measure the speed of a projectile, such as a bullet. The projectile, of mass m, is fired into a large block (of wood or other material) of mass M, which is suspended like a pendulum. (Usually M is somewhat greater than m). As a result of the collision, the pendulum and projectile together swing up to a maximum height h. Determine the relationship between the initial horizontal speed of the projectile, v and the maximum height h. A veterinary study of horses looked water sources for horses and the investigators found that horses received water from either a well, from city water, or from a stream. The investigators wanted to know if horses are equally likely to get water from each of those three sources. They collected data and observed the following values: Water Source Well City Water Stream Total Observed Count 62 43 31 136 The investigators want to test the hypothesis that horses receive their water equally from a well, from city water or a from a stream.1) Based on this hypothesis what are the expected counts for water source?a.Water SourceWellCity WaterStreamExpected Count624331b.Water SourceWellCity WaterStreamExpected Count0.330.330.33c.Water SourceWellCity WaterStreamExpected Count333333d.Water SourceWellCity WaterStreamExpected Count45.3345.3345.33e.Water SourceWellCity WaterStreamObserved Count33.3333.3333.33 The beta coefficient:________________________. a) is a standardized measure of the risk per unit of return. b) measures the tendency of two stocks returns to move together. c) is a metric that shows the extent to which a given stocks returns move up and down with the stock market portfolio. d) measures that part of a securitys risk associated with random events that can be eliminated by proper diversification. e) is a metric that shows the tendency of a given stocks returns to move up and down with government bon Steam Workshop Downloader