a virtual machine that’s shut down or suspended is no more than a(n) __________ or folder sitting on a hard drive.

Answers

Answer 1

A virtual machine that is shut down or suspended is no more than a file or folder sitting on a hard drive.

A virtual machine that’s shut down or suspended is no more than a file or folder sitting on a hard drive.A virtual machine is a software program that imitates a computer's hardware. It works like a typical computer, but it runs on a host operating system and acts as if it were a separate machine. Each virtual machine is a self-contained and completely functional virtual computer.

Virtual machines are frequently created and deleted, and they frequently go offline for periods of time. A virtual machine that is shut down or suspended is simply a file or folder stored on a hard drive until it is turned on again. A virtual machine's data is stored on the host's hard drive when it is saved or shut down. When the user is ready to use it again, they can restore it to its prior state. Therefore, a virtual machine that is shut down or suspended is no more than a file or folder sitting on a hard drive.

To know more about virtual machine visit :

https://brainly.com/question/31674424

#SPJ11


Related Questions

in a database, columns in a table are called rows records fields primary keys T/F?

Answers

The statement that in a database, columns in a table are called rows records fields primary keys is false.

What is the correct naming?

In a database, another way to refer to columns is fields while rows are referred to as records.

Rows or records hold the complete information about an observation while columns have several pieces of information about observed data. So, another name for columns is fields while rows are called records.

Learn more about columns and rows here:

https://brainly.com/question/30039670

#SPJ1

What is a social network site? A website where users can share thoughts and information. A photo or video sharing site. An online service where members can establish relationships. A business-to-consu

Answers

A social network site is an online platform where users can share thoughts, information, photos, and videos, while also establishing relationships with other members.

Social network sites are interactive websites that allow individuals to connect with each other and share various forms of content. These platforms provide a space for users to express themselves, communicate with others, and build virtual communities based on shared interests or personal connections. Users can create profiles, add friends or followers, and engage in activities such as posting updates, sharing multimedia content, commenting, and liking or reacting to posts from others.

The primary purpose of social network sites is to facilitate social interaction and networking. Users can connect with friends, family, colleagues, and even make new acquaintances through these platforms. They offer a space where people can share their thoughts, opinions, experiences, and news in a public or semi-private manner, depending on the platform's privacy settings.

Moreover, social network sites often provide additional features like messaging systems, groups or communities centered around specific topics or themes, event planning, and even online marketplace functionalities. These features enhance the overall user experience and enable members to engage in various activities beyond simple communication.

Learn more about social network

brainly.com/question/3158119

#SPJ11

When was the year America got its independence

Answers

Answer:

July 4, 1776Explanation:

Answer: April 19, 1775 – September 3, 1783

Explanation:

What is the name of the item that supplies the exact or near exact voltage at the required wattage to all of the circuitry inside your computer?

Answers

Answer:

A voltage regulator.

Explanation:

A voltage regulator, controls the output of an alternating current or a direct current (depending on the design), allowing the exact amount of voltage or wattage to be supplied to the computer hardware. This device sometimes uses a simple feed-forward design or may include negative feedback. The two major types of voltage regulator are based on either the electromechanical or electronic components.

The electronic types were based on the arrangement of resistor in series with a diode or series of diodes, and the electromechanical types are based on coiling the sensing wire to make an electromagnet.

what is optical disk? write its types​

Answers

What is an optical disk?

An optical disk is any computer disk that uses optical storage techniques and technology to read and write data. It is a computer storage disk that stores data digitally and uses laser beams (transmitted from a laser head mounted on an optical disk drive) to read and write data.

What are the types of optical disks?

There are three main types of optical media: CD, DVD, and Blu-ray disc. CDs can store up to 700 MB (megabytes) of data, and DVDs can store up to 8.4 GB (gigabytes) of data. Blu-ray discs, which are the newest type of optical media, can store up to 50 GB of data.

-------------------------------------------------------------------------------------------------------------

Never lose hope

This is the 3rd time I've created an account, this is the 3rd time my account has gotten deleted. But I remain standing, NEVER LOSING HOPE

Thanks!

Have a great day!

:D

Suppose that you use a 220 Ohm resistor as the fixed resistor in your Arduino burglar alarm.

Suppose that the photoresistor is the same one we used in our last homework assignment, where the resistance is 500 Ohms when it is fully illuminated by light, and 180 kiloOhms when it is in darkness.

What would the input voltage be to the Arduino when it is fully illuminated if we connect the Arduino so that its analog input pin "sees" the same voltage difference that the photoresistor has across it.

In the previous problem, what would the input voltage be to the Arduino when it is darkness if we connect the Arduino so that its analog input pin "sees" the same voltage difference that the photoresistor has across it.

Answers

Different types of light detectors are LDRs or Light Dependent Resistors Photo . First you need to connect the LDR to the analog input pin 0 on the Arduino. If intensity of light falling on LDR is high LDR will have low resistance

what system privileges should an employee involved in the general ledger and reporting system be given? group of answer choices general privileges to create, delete, update, or modify data. no privileges permitting the creation, deletion, updating, or modification of data. only the specific privileges necessary to perform an employee's assigned duties. read-only privileges.

Answers

Correct answer:- Only the specific privileges necessary to perform an employee's assigned duties.

What are the privileges of a person?

Privilege is unearned access or advantages that are given to particular groups of people as a result of their social group membership. A wide range of social identities, including race, gender, religion, socioeconomic class, ability status, sexual orientation, age, education level, and others, can be the basis for privilege.

How are privileges distinguished?

You should determine whether accounts have privileged access to your virtual infrastructure, either by looking for privileged access on the virtual environment itself or by verifying Local Admin groups on a specific domain controller/server.

A general ledger is what?

A general ledger, sometimes known as a GL, is a tool for keeping track of all of a company's financial transactions. Normally, accounts such as assets, liabilities, equity, expenses, and income or revenue are recorded in a GL.

To know more about general ledger visit:

https://brainly.com/question/1436327

#SPJ4

g you will create some simple blockchain code. but instead of bitcoin tokens, you will create huskycoin! this assignment is evaluakng you on two specific topics. (1) can you create and use a hashmap implementakon? (2) do you understand what hashing is and how to use it?

Answers

In order to create simple blockchain code for huskycoin, we will need to use a hashmap implementation and understand hashing.

import hashlib

class Block:

   def __init__(self, index, timestamp, data, previous_hash):

       self.index = index

       self.timestamp = timestamp

       self.data = data

       self.previous_hash = previous_hash

       self.hash = self.calculate_hash()

   def calculate_hash(self):

       block_string = str(self.index) + str(self.timestamp) + str(self.data) + str(self.previous_hash)

       return hashlib.sha256(block_string.encode()).hexdigest()

class Blockchain:

   def __init__(self):

       self.chain = [self.create_genesis_block()]

   def create_genesis_block(self):

       return Block(0, "04/12/2023", "Genesis block", "0")

   def get_latest_block(self):

       return self.chain[-1]

   def add_block(self, new_block):

       new_block.previous_hash = self.get_latest_block().hash

       new_block.hash = new_block.calculate_hash()

       self.chain.append(new_block)

huskycoin = Blockchain()

huskycoin.add_block(Block(1, "04/13/2023", {"sender": "Alice", "receiver": "Bob", "amount": 5}, ""))

huskycoin.add_block(Block(2, "04/14/2023", {"sender": "Bob", "receiver": "Charlie", "amount": 10}, ""))

A hashmap is a data structure that allows for efficient retrieval and storage of key-value pairs. We can use a hashmap to store transactions in our huskycoin blockchain.
Hashing is the process of taking an input (in our case, a transaction) and generating a fixed-size, unique output (hash). This hash can be used as a digital fingerprint for the transaction, ensuring its authenticity and integrity. In our huskycoin blockchain, we will use hashing to create the unique hash for each transaction and for each block.

To implement this in code, we can use a hashmap to store our transactions as key-value pairs, with the key being the transaction ID and the value being the transaction details. We can also use hashing to create a unique hash for each transaction and for each block in the blockchain.

Overall, this assignment is evaluating our ability to use a hashmap implementation and understand hashing in the context of blockchain development.

To know more about hashing, visit:

https://brainly.com/question/29970427

#SPJ11

What would the coordinates be of a 1x1x1 cube in a 3D space if the front lower-left corner is placed at (0,0,0) and the back top-right corner is placed at (1,1,1)?

Answers

Answer:

See picture.

Explanation:

The picture shows all the 8 coordinates.

What would the coordinates be of a 1x1x1 cube in a 3D space if the front lower-left corner is placed

what does the binary odometer show about representing large numbers​

Answers

Answer and Explanation:

The binary odometer represents the large number to judge that what happened when there is a large number that gets too large

Here we visit the level 2 of the binary odometer widget in the chapter of Code studio

This represents a widget that reproduced an odometer of a car in which the tracking of a device could be known that how much far the car is driven with respect to the miles or kilometers

An odometer, also known as an odograph measures the distance that a vehicle (including bicycles, and cars) has travelled

What the binary odometer shows about representing large numbers is that more a number larger than the number displayable will cause it to roll-over overflow error and therefore, a new system will be required

A binary odometer is an odometer based on the binary number system of 1s and 0s

When the values represented by the binary odometer is very large such that the value exceeds the largest number it can display, such as having all 1s, the odometer rolls-over, and restarts with a 1 at the right while the rest digits are 0s, that is the odometer rolls over

Therefore, representing large numbers requires more resources such as new odometer that can show large numbers

Learn more about binary odometer here:

https://brainly.com/question/4922102

your company has 30 client computers running windows 10. you have shared a folder on bill's windows 10 computer and set the permissions so all the users in the company can access it. however, periodically some users tell you they are not permitted to access the share. it seems to be different users that can't access the share each time it happens. what is a likely reason that some users cannot access the share at times?

Answers

The distant computer's IP address (for example, 192.168.10.20), and then click Enter in the search box on the Windows taskbar. Enter the username and password of a user who is allowed access to shares and devices if you are prompted for them.

An example of an IP address is?

208.80.154.224 is an example of an IPv4 address, while 2001:0db8:85a3:0000:0000:8a2e:0370:7334 is an example of an IPv6 address. Internet-connected devices can now be much more numerous thanks to IPv6, which prevents address duplication, which might be problematic.

What is an IP address? How does it function?

A 32-bit number serves as an IP address. On a TCP/IP network, it uniquely identifies a host (computer or other device, such as a printer or router). IP addresses are typically written using dotted-decimal notation, which separates four integers by periods, as in 192.168.123.132.

To know more about IP address visit;

https://brainly.com/question/29770660

#SPJ4

Sasha's new company has told her that she will be required to move at her own expense in two years. What should she consider before making her decision?

Answers

To make her decision, Sasha should consider cost of living, job market, quality of life, social network, and career advancement before moving for her new job.


What is the rationale for the above response?  

Before deciding whether or not to move for her new job, Sasha should consider several key factors.

Firstly, she should research the cost of living in the area where she will be moving to, as well as job opportunities, salaries and stability of the job market. Secondly, she should consider the overall quality of life, including climate, recreational opportunities and community atmosphere.

Note as well that, Sasha should consider her current social network and the opportunity to build a new one in the area where she will be moving to. Finally, she should weigh the potential benefits and costs of the move in terms of her personal and professional goals to determine if it is the right decision for her.

Learn more about Decision Making at:

https://brainly.com/question/13244895

#SPJ1

are smarter balanced assessment scores transferable to tennessee

Answers

The Smarter Balanced Assessment scores are not directly transferable to Tennessee, as Tennessee uses a different standardized test called the TNReady.

However, students who have taken the Smarter Balanced Assessment may still be able to receive credit or placement in Tennessee schools based on their scores, as many colleges and universities have established equivalency policies for out-of-state standardized tests.

It is important for students and families to check with the specific school or program they are interested in to determine their policies regarding transfer credits and standardized test scores. Additionally, some states have agreements with each other for recognizing out-of-state test scores, so it is worth researching if such an agreement exists between California (where the Smarter Balanced Assessment is administered) and Tennessee.

learn more about Tennessee here:

https://brainly.com/question/14328763

#SPJ11

WHAT DOES THE SCRATCH CODE BELOW DO?

WHAT DOES THE SCRATCH CODE BELOW DO?

Answers

i think the correct answer would be b but im not 100% so if i’m wrong please lmk :]

The intent of this assignment is to review concepts from your prior "CS 1" course and to challenge and enhance those concepts.
Fitbit is a company that builds wearable technology devices that track various activities. The devices have sensors that measure number of steps and distance walked, heart rate, sleep quality, floors climbed, and calories burned. In this assignment, you will analyze data that was generated from a Fitbit devices. The data is stored in a comma-separated values (.csv) file that you will find at: http://eecs.wsu.edu/~aofallon/cpts122/progassignments/FitbitData.csv. The entries in this file were merged from two different devices. You will need to filter any data that is not related to the target patient. The first data entry in the file contains the target. You will also need to dedupe any entries that appear multiple times and perform data cleansing any entries that have missing fields. A .csv file stores data as plaintext in tabular form. Each row in the file is considered a record. Each record consists of fields separated by commas.
In particular, you will analyze 24 hours of data. Each record in the "FitbitData.csv" represents one minute of data and consists of eight fields. These include the following

Answers

Timestamp: the date and time when the data was recordedSteps: the number of steps taken in the given minuteDistance: the distance traveled in the given minuteFloors: the number of floors climbed in the given minute

Heart rate: the heart rate in beats per minute

Calories burned: the number of calories burned in the given minute

Sleep level: the level of sleep (e.g. awake, light sleep, deep sleep)

Device: the device that recorded the data.

Your task is to use programming concepts learned in your prior "CS 1" course to analyze this data and answer questions such as:

How many steps were taken in total in 24 hours?

What was the average heart rate in 24 hours?

How many calories were burned in 24 hours?

How much distance was traveled in 24 hours?

What was the total number of floors climbed in 24 hours?

What was the average sleep level during the 24 hours?

By analyzing the Fitbit data, you will be able to demonstrate your understanding of programming concepts such as file input/output, data structures, loops, and conditional statements. This assignment will help you build upon your prior learning and strengthen your programming skills.

Find out more about Fitbit data

brainly.com/question/8785852

#SPJ4

hris has received an email that was entirely written using capitalization. He needs to paste this text into another document but also ensure that the capitalization is removed.

What should Chris do?

Answers

He should un caps lock it

Type the correct answer in the box. Spell all words correctly.
Which software is used to play, create, and modify audio and video files?
_______software is used to play, create, and modify audio and video files.

Type the correct answer in the box. Spell all words correctly.Which software is used to play, create,

Answers

Answer:

Adobe Premire pro

Explanation:

Answer:

video editing

Explanation:

PLEASE can someone give me some examples of activities I can put on a resume presentation?

I'm a freshman and I didn't really play any sports other than 8th grade volleyball. I really need some examples​

Answers

Answer:

list down extracurriculars (e.x. maybe you attend piano lessons, or you attend an art class during the weekend, or you play football outside of school, etc.)

you can also list any volunteering you do on the side (e.x. maybe you volunteer at your local church or at the local animal shelter), whatever you think counts.

Which term refers to actions that you would perform on a computer to revive it if it functions in an unexpected manner?

Answers

Answer:

I think that it is just rebooting

What are recommended practices when practicing a speech using presentation technology?

Answers

The recommended practices when practicing a speech using presentation technology are:

Decide exactly when to change slidesRehearse with the mouse or keyboard until their use requires only a glance at the equipmentMark cues in the speaking notes to indicate slide changes

What is meant by the act of giving a presentation?

When a person is known to often gives a presentation, they are seen to often give a formal talk.

Note that  a lot of times, in order to be able to pass or sale something or get support for what we calla proposal. One need to use a Powerpoint presentation of what is to be done.

Hence, The recommended practices when practicing a speech using presentation technology are:

Decide exactly when to change slidesRehearse with the mouse or keyboard until their use requires only a glance at the equipmentMark cues in the speaking notes to indicate slide changes

Learn more about presentation from

https://brainly.com/question/24653274

#SPJ1

Which of the following is an exception to why it is a good idea to follow netiquette?
A. So that we do not hurt a friend or a coworker.
B. So that we do not harm a friend or a coworker on a personal or professional level.
C. So that we do not waste other people's time.
D. So that we do not present objective analyses of current issues online.

Answers

The exception to why it is a good idea to follow netiquette is so that we do not hurt a friend or a coworker.

What is netiquette?

A made-up word, netiquette is constructed from of the words net and etiquette. Thus, netiquette refers to the standards of behavior for polite and appropriate online conversation.

Etiquette for the internet is another name for netiquette. These are suggested politeness guidelines rather than laws. The majority of the time, netiquette is applied when interacting online with strangers. The etiquette guidelines vary based on the platform and users.

Typically, the kind and extent of netiquette are up to the owner of a website or communication app to define. They must also keep an eye on adherence to these fundamental guidelines and take appropriate action when violations occur.

Netiquette is therefore important to avoid adverse consequences.

Therefore, The exception to why it is a good idea to follow netiquette is so that we do not hurt a friend or a coworker.

To learn more about netiquette, refer to the link:

https://brainly.com/question/942794

#SPJ1


What is a new option in PowerPoint 2016 that provides the ability to add multiple pictures into a slide, complete with
transitions and captions?

O Screenshot feature
O Photo Album feature
Online Pictures command
O Format command

Answers

Answer:

photo album

Explanation:

Answer:

photo album

Explanation:

create a flowchart to print numbers from 1 to 100
( IF U ANSWER PROPERLY I WILL MARK U AS BRAINLIEST)

Answers

Answer:

brainliest plsss

Explanation:

I think so this is what you had asked!!!!!!

hope it helps

create a flowchart to print numbers from 1 to 100( IF U ANSWER PROPERLY I WILL MARK U AS BRAINLIEST)

cloudy computing would like to allow users to relate records to other records of the same object. what type of relationship is this?

Answers

Cloud computing would like to allow users to relate records to other records of the same object by using a Self-relationship.What is Cloud Computing Cloud computing is the on-demand availability of computer resources, particularly data storage and computing power, without direct user management.

In layman's terms, this implies that any individual can access computer resources from any location with internet access, making it possible to create a single, central repository of information that can be accessed by multiple users in real-time.

This provides the user with a platform for easy access to computing power and the storage of information. The use of cloud computing technology eliminates the need for costly and complex hardware and infrastructure for businesses and organisations.

To know more about computing visit:

https://brainly.com/question/32297638

#SPJ11

You defined a shoe data type and created an instance.
class shoe:
size = 0
color = 'blue'
type = 'sandal'
myShoe = shoe()
Which statement assigns a value to the type?
type = 'sneaker'
myShoe.type( 'sneaker')
myShoe.type = 'sneaker'
NEXT QUESTION
ASK FOR HELP

Answers

Answer:

myShoe.type = 'sneaker'

Explanation:

type is a field of the class shoe. The myShoe object which is an instance of the class shoe has the field type also.

To assign a value to type filed of the object myShoe, reference the object then the field as such;

   myShoe.type = "sneaker"

You defined a shoe data type and created an instance. The statement that assigns a value to the type is myShoe.type = 'sneaker'. The correct option is C.

What is data in programming?

A variable's data type and the kinds of mathematical, relational, and logical operations that can be performed on it without producing an error are classified as data types in programming.

An attribute of a piece of data called a "data type" instructs a computer system on how to interpret that data's value.

type is one of the class shoe's fields. The field type is also present in the myShoe object, which is an instance of the class shoe.

Reference the object and the field as such in order to assign a value to the type field of the object myShoe;

Therefore, the correct option is C. sneaker" in myShoe.type.

To learn more about data in programming, refer to the link:

https://brainly.com/question/14581918

#SPJ2

Hot Dog Cookout Calculator Assume hot dogs come in packages of 10, and hot dog buns come in packages of 8. Write a program that calculates the number of packages of hot dogs and the number of packages of hot dog buns needed for a cookout, with the minimum amount of leftovers. The program should ask the user for the number of people attending the cookout and the number of hot dogs each person will be given. The program should display the following details: 1. The minimum number of packages of hot dogs required 216.2. The minimum number of packages of hot dog buns required.3. The number of hot dogs that will be left over.4. The number of hot dog buns that will be left over.

Answers

Answer:

Following are the code to this question:

person= int(input("Input the value who attend the cookout: "))#defining a variable person for input value

Given_hotdog = int(input("Input the value of hotdog, that each person will take: "))#defining a variable Given_hotdog for input value

hotdogs = person* Given_hotdog #calculating the total value of hotdogs

# calculating the numbers of the package, that holds require hotdog and buns

package_hotdog=int(hotdogs/10)+1# calculating hotdog packages

bun_package=int(hotdogs/8)+1# calculating buns package

left_hotdogs= package_hotdog*10 -hotdogs# calculating left hotdogs

left_buns=bun_package*8-hotdogs# calculating left buns

print("Total Hotdogs",hotdogs)#print total hotdogs value

print("The Minimum number of packages require for hotdogs: ", package_hotdog)#print require hotdogs value

print("The Minimum number of packages require for buns: ", bun_package)#print require buns value

print("Number of left hotdogs: ", left_hotdogs)#print left hotdogs value

print("Number of left buns: ", left_buns)#print left buns value

Output:

please find the attached file.

Explanation:

In the above-given code, the "person and Given_hotdog" variable is declared, which is used to take input from the user end and in the "hotdogs" variable we calculate its total value.

In the next step, "package_hotdog and bun_package" is declared, which uses the "hotdogs" variable to calculate its value.  At the last step, the "left_hotdogs and left_buns" variable is declared, which uses the above variable for calculating the value and use the print method to print its value.
Hot Dog Cookout Calculator Assume hot dogs come in packages of 10, and hot dog buns come in packages

Write a method that takes a RegularPolygon as a parameter, sets its number of sides to a random integer between 10 and 20 inclusive, and sets its side length to a random decimal number greater than or equal to 5 and less than 12. Use Math.random() to generate random numbers.


This method must be called randomize() and it must take an RegularPolygon parameter.


Could someone help me out here thanks! C:

Answers

Answer:

public static void randomize(RegularPolygon r){

   int side = (int)((20-10) * Math.random()) + 10;

   int length = (int)((12-5)  * Math.random()) + 5;

   // assuming the regularpolygon class has setSide and setLength methods.

   r.set.Side(side);

   r.setLength(length);

}

Explanation:

The randomize method is used to access and change the state of the RegularPolygon class attributes sides and length. The method accepts the class as an argument and assigns a random number of sides and length to the polygon object.

please answer the following will mark brainiest except the first 3 rest all

please answer the following will mark brainiest except the first 3 rest all

Answers

Answer:

1) Standalone machine

2) Local

3) Either Wide area network(WAN) or a web

Done your first 3

how many iterations using a binary search are done until the element is found in an array arr {5,6,77,85,99 and key 85}

Answers

Answer:

In this case, with an array of {5, 6, 77, 85, 99} and a target element of 85, the algorithm would need two iterations to find the element.

The first iteration would split the array in half and compare the middle element (77) with the target element (85), since the target element is greater than the middle element, it would discard the left half of the array {5,6} and continue the search in the right half of the array {77, 85, 99}.

The second iteration would again split the right half of the array in half and compare the middle element (85) with the target element (85) and find it, so the element is found at the 2nd iteration.

Therefore, in this case, 2 iterations are done to find the element 85 in the array {5,6,77,85,99} using the binary search algorithm.

What kind of technology is helping people who don't have access to the internet get it? A) Airplanes B) Balloons C) Routers D) Ships

Answers

Answer: c router

Explanation:

I took a test with the same question

Other Questions
An imperative verb asks a question makes a demand reflects a wish states a fact which dietary selections made by the client indicate understanding of previously taught dietary principles associated with having ciral 100 POINTS!!!!! Without the Elements and Principles of Design, art does not have an overall _____ or sense of completion. A. selling point B. meaning C. message D. flow the outer planets, like jupiter, are larger and have compositions of mainly gas because there was a larger supply of material for them to incorporate into their mass. true or false help me please please please triangle 333333 Using the equation 5x=4y, if y=10, what is x? How does Equiano's fear of being eaten by slavers serve as a metaphor for slavery itself ? How can you explain humans' inability to digest cellulose?. Determine whether or not F is a conservative vector field. If it is, find a function f such that F = f. (If the vector field is not conservative, enter DNE.)F(x, y) = (2x 4y) i + (4x + 10y 5) jf(x, y) = How long did pharaohs rule? How is a pharaoh replaced FRENCH HELP PLEASE ASAPPPPPPPP how can I evaluate 2x + y4 when X=5 y=9 ? Read and match each incomplete sentence with the words missing in the blank which complete the sentence correctly. (4 points)1. Francisco limpia ________ en el bao.2. Eduardo barre ________ en la sala.3. Yo tengo la comida en ________.4. Mi pap cocina pescado en ________ de la cocina.a. el inodorob. la estufac. la alfombrad. el refrigerador 4(y 3) = y pls help me on this question David is trying to solve the following. If 24 people have the flu out of 360 people, how many would have the flu out of 900? choose every proportion that david could use to solve this problem. I need help! Please include an explanation. 50 points!!Write an equation of the line.Horizontal; through (0,0)The equation of the line is:___ please help, if correct i will put brainliest! HELP PLZ I NEED TO MAKE A YEARBOOK PAGE AND IDK WHAT TO TALK ABOUT ON IT WHAT DO I SAYY. IF YOU GIVE GOOD IDEAS I WIL GIVE BRAINLIEST AND THIS IS WORTH 20 POINTS PLZ HELPPPP Which of the following is NOT an example of a coordination game with multiple equilibria?Two Two sellers are in a market where their best option is the same regardless of what the other firm does.Potential protesters decide whether to participate in protests to try to overthrow a government.A company decides in which hours to operate for the convenience of its customers and suppliers.Question 6A basic logic that applies to all strategic interactions is:making a good choice requires that you anticipate what others will do.action should not be taken until there is a clear best choice.risk must be eliminated.games should be avoided, so that decisions can be based on facts.Question 7Use the table, with data for Vlad and Assad, to answer the question.Table: Profits for Vlads and Assads Cookie CompaniesAssad charges S1 per Assad charges $3 percookie.cookie.Vlad chargesUse the check mark method to determine which cell has a Nash equilibrium. When there is a Nash equilibrium, Vlad earns profits of _____, and Assad earns profits of _____.$3,000; $3,000$3,500; $500$500; $3,500$2,000; $2,000Question 8The models in our class say that when there are positive accounting profits, entry will occur.TrueFalse