modern computer systems enable users to work with more than one program at the same time. this technique is known as

Answers

Answer 1

The modern computer systems enable users to work with more than one program at the same time. This technique is known as Multitasking or Multiprogramming .

What is mean by Multitasking?Computer multitasking is the practice of running many tasks concurrently for a predetermined period of time. New tasks can start and stop old ones before they are finished, as opposed to waiting for them to finish. Multitasking is often referred to as multiprocessing.A user can manage numerous computer tasks simultaneously using an operating system's multitasking feature, such as by running application software. When switching between these jobs without losing data, the operating system can keep track of where you are in each of them.Multitasking is the ability to manage several responsibilities at once while focusing on one task and keeping an eye on others.

To learn more about multitasking refer to:

brainly.com/question/12977989

#SPJ4


Related Questions

[SPECIAL]>>>WRITE THIS TEXT IN BINARY CODE

Answers

Answer:

in binary

01000110 01010010 01000101 01000101 00100000 01010000 01001111 01001001 01001110 01010100 01010011

THX:

01010100 01001000 01000001 01001110 01001011 00100000 01011001 01001111 01010101

Answer:

01000110 01010010 01000101 01000101 00100000 01010000 01001111 01001001 01001110 01010100 01010011

write a function choose door that asks the user to input an integer 1,2,3 to choose a door and returns the door they chose. you should catch any errors that the user might make and continue asking for input until the user inputs a valid choice.

Answers

The required function is written in C++:

#include <iostream>

using namespace std;

void func_input(int);

int main()

{

   int in_num;

  cout<<"Please enter 1,2, or 3 :  ";

   cin>>in_num;

   func_input(in_num);

   return 0;

}

void func_input(int in_n)

{

if (in_n==1 || in_n==2 || in_n==3)

  {

    if (in_n==1)

      cout<<"door 1 opened";

    if (in_n==2)

     cout<<"door 2 opened";

    if (in_n==3)

     cout<<"door 3 opened";

  }

  else

    cout<<"Please enter a valid number";

}

Please find the implementation of the function with output in the given attachment.

You can learn more about function at

https://brainly.com/question/16362961

#SPJ4

so about computers can you tell me about bit coins and giga watts

Answers

Bitcoin is a decentralized digital money that may be purchased, sold, and exchanged whereas gigawatt hour is a measure of energy that equals one million kilowatt hours.

What is a Bitcoin?

Bitcoin's creator, Satoshi Nakamoto, originally described the need for “an electronic payment system based on cryptographic proof instead of trust.” Digital currency known as Bitcoin is completely decentralized and not subject to bank or governmental regulation. Instead, cryptography and peer-to-peer software are employed. A public ledger, a copy of which is stored on servers throughout the world, records every bitcoin transaction.

What is a Giga Watts?

1 Kilowatt hour [kWh] = 0.000 001 Gigawatt hour [GWh]

1,449 kilowatt hours (kWh) of energy to mine a single bitcoin.

0.001449 GWh

To know more about Cryptography visit:

https://brainly.com/question/88001

#SPJ1

a(n) is an object that is generated in memory as the result of an error or an unexpected event. group of answer choices exception exception handler default exception handler error message

Answers

An exception is an object that is created in memory as a result of a mistake or other unanticipated circumstance.

What is exception?An exception is a circumstance that arises while a program is being executed and prevents the instructions from proceeding normally. A method that encounters an error creates an object and passes it on to the runtime system.A throwable class has two subclasses: exceptions and errors. The error suggests an issue that primarily results from a lack of system resources. The exceptions, on the other hand, happen at compile and runtime.Checked and unchecked exceptions are the two main categories. Errors are regarded as unchecked exceptions.

The Reasons Behind Exceptions

The evaluation of an expression goes against the language's typical semantics.

To learn more about exception refer to :

https://brainly.com/question/18497347

#SPJ4

Write a loop that continually asks the user what pets the user has until the user enters stop, in which case the loop ends. It should acknowledge the user in the following format. For the first pet, it should say You have one cat. Total # of Pets: 1 if they enter cat, and so on.

Sample Run
What pet do you have? lemur
What pet do you have? parrot
What pet do you have? cat
What pet do you have? stop
Sample Output
What pet do you have? lemur
You have one lemur. Total # of Pets: 1
What pet do you have? parrot
You have one parrot. Total # of Pets: 2
What pet do you have? cat
You have one cat. Total # of Pets: 3
What pet do you have? stop

Answers

The loop that continually asks the user what pets the user has is illustrated below:

# taking user input for pet

pet = input("What pet do you have? ")

# let count is 0

count = 0

# loop until user not enters 'stop'

while pet != 'stop':

   count = count + 1 # increment count by 1

# print the pet name and total count

   print(f"You have one {pet}. Total # of Pets: {count}")

   # again ask for the pet

   pet = input("What pet do you have? ")

What is a loop?

A loop is a sequence of instructions in computer programming that is repeatedly repeated until a certain condition is met. Typically, a process is performed, such as retrieving and changing data, and then a condition is checked, such as whether a counter has reached a predetermined number.

In the above Python program, we repeatedly ask the user to enter a pet name and print the current count of pets until the user enters'stop.'

Learn more about loop on:

https://brainly.com/question/26568485

#SPJ1

During a fire emergency, what is the very first action you should take according to the race/racer/racee fire protocol?.

Answers

RACE: Remove, Alarm, Confine and Extinguish or Evacuate.

In the event of a fire, the following steps should be taken to ensure the safety of all building occupants:

1.Activate the fire alarm.

2.Call 911 immediately and provide information.

3.Assist injured personnel or notify emergency responders of the medical        
  emergency.

4.Exit the building following emergency maps.
You can learn more about RACE at:

brainly.com/question/22050167#SPJ4

Drivers are concerned with the mileage obtained by their automobiles. one driver has kept track of several tankfuls of gasoline by recording miles driven and gallons used for each tankful. develop a sentinel-controlled-repetition script that prompts the user to input the miles driven and gallons used for each tankful. the script should calculate and display the miles per gallon obtained for each tankful. after processing all input information, the script should calculate and display the combined miles per gallon obtained for all tankfuls (that is, total miles driven divided by total gallons used)

Answers

CODE:

 result=[]  #declare an empty list

while True:   #loop until break

   gallons = float(input("enter the gallons used(-1 to end)")) #take no.of gallons from user  enter -1 to exit

   if gallons < 0 : break  #if -1 is entered break the loop

   miles=float(input("enter the miles"))  #take no.of miles from input

   m=miles/gallons   #calculate miles per gallon

   print('The miles/gallon for this tank is ',m)  #print miles per gallon

   result.append(m)   #add the miles per gallon to list

print("The overall average miles/gallon was",sum(result)/len(result)) #calculate average miles per gallon for all tanks

OUTPUT:

 

enter the gallons used(-1 to end)12.8

enter the miles287

The miles/gallon for this tank is  22.421875

enter the gallons used(-1 to end)10.3

enter the miles200

The miles/gallon for this tank is  19.41747572815534

enter the gallons used(-1 to end)5

enter the miles120

The miles/gallon for this tank is  24.0

enter the gallons used(-1 to end)-1

The overall average miles/gallon was 21.946450242718445

You can learn more through link below:

https://brainly.com/question/27491038#SPJ4

an employee is attempting to install new software they believe will help them perform their duties faster. when the employee tries to install the software, an error message is received, stating they are not authorized to install the software. the employee calls the help desk for assistance. evaluate the principles of execution control to conclude what has most likely occurred in this scenario.

Answers

The company is utilizing whitelist control and the software is not included on the list.

What is a software?To control computers and carry out particular activities, software is a collection of instructions, data, or programs. Hardware, which describes a computer's external components, is the opposite of software. Applications, scripts, and other programs that operate on a device are collectively referred to as "software."A software package includes a number of computer programs as well as related documentation and data. In contrast, hardware is what the system is made of and what actually does the work.System software, utility software, and application software are some of the numerous kinds of software that can run on a computer.

To learn more about software refer to:

https://brainly.com/question/28224061

#SPJ4

your organization plans to deploy its three-tier line-of-business (lob) web application to azure. you need to recommend an iaas solution that allows all virtual machines (vms) to communicate with each other by default. what should you do?

Answers

In this scenario, you should require to connect Linux to Windows in order to use a custom handler in which the first step is to create a function in Azure for it to call.

What are Virtual machines?

Virtual machines may be characterized as virtualized circumstances of a computer that can be able to perform almost all of the identical functions as a computer. It includes running applications and other operating systems.

Azure virtual machines are Infrastructure as a Service (IaaS). Infrastructure as a Service is the most flexible category of cloud services. They are allowed to deploy its three-tier line-of-business (lob) web application to azure where you need to connect Linux to Windows in order to use a custom handler in which the first step is to create a function in Azure for it to call.

To learn more about Virtual machines, refer to the link:

https://brainly.com/question/28322407

#SPJ1

write a function called simple addition with a parameter called file, which represents an open file containing a list of numbers (both ints and floats), two on each line, separated by exactly one space each. your simple addition function should add the two numbers together and print their sum (as a float).

Answers

The program that illustrates the function will be:

#!/usr/bin/env python3

### IMPORT STATEMENTS ###

import sys

def simple_addition(file):

   for line in file:

       data = line.strip().split()

       print(float(data[0].strip()) + float(data[1].strip()))

### MAIN FUNCTION ###

def main():

   if len(sys.argv) > 1:

       filename = sys.argv[1]

       try:

           file = open(filename)

           simple_addition(file)

           file.close()

       except:

           print(filename + " does not exists!")

   else:

       print("Please pass file name as command line argument to the program")

### DUNDER CHECK ###

if __name__ == "__main__":

   main()

What is a program?

A computer program is a set of instructions written in a programming language that a computer can execute. Software includes computer programs as well as documentation and other intangible components.

The necessary steps are:

Defining what the program should be able to do. Visualizing the program that is running on the computer. Checking the model for logical errors. Writing the program source code.Compiling the source code.Correcting any errors that are found during compilation.

In this case, the program shows the simple addition with a parameter called file.

Learn more about program on:

https://brainly.com/question/26642771

#SPJ1

which features are important when you plan a program? select 4 options. responses knowing how to find the result needed. knowing how to find the result needed. knowing what you want the program to do. knowing what you want the program to do. knowing what information is needed to find the result. knowing what information is needed to find the result. knowing what the user needs the program to accomplish. knowing what the user needs the program to accomplish. knowing how many lines of code you are allowed to use. knowing how many lines of code you are allowed to use.

Answers

The important features when you plan a program are:

Knowing what the user needs the program to accomplish.Knowing how to find the result needed.Knowing what information is needed to find the result.Knowing what you want the program to do

What are the steps to create a programme?

The selection of project objectives and the formulation of a statement of work that outlines the project or program priorities and activities to be executed by the project partners are all part of planning and programming. At a minimum, the procedure will include: The project or program description.

The steps  to create

Define what the program should do. Visualize the program running on the computer. Use design tools to create a model of the program. Check the model for logical errors. Write the program source code. Compile the source code. Correct any errors found during compilation.

To learn more about program refer to:

https://brainly.com/question/23275071

#SPJ4

five threads are created by a process with pid 15. each one of the threads have threadids (tid) 10, 11, 12, 13, and 14 respectively. what is the value of the unix/linux getpid() returned when thread with tid 11 is issuing the call getpid()?

Answers

The PID of the four threads will match, but only when viewed from above. What the kernel refers to as a PID is different from what you (the user) refer to as a PID.

Each thread in the kernel has its own unique identifier, known as a PID (although it might be more logical to refer to this as a TID, or thread ID), as well as a TGID (thread group ID), which is the PID of the first thread produced when the process was launched.

When a new process is started, it manifests as a thread with the same (now unoccupied) PID and TGID.

The new thread that is created when an existing thread ends receives its own PID (so the scheduler may schedule it separately), but it retains the prior thread's TGID.

In this manner, while processes (thread group IDs) are reported to you, the kernel can happily schedule threads without regard to the process to which they belong.

To know more about PID click here:

https://brainly.com/question/17032153

#SPJ4

what do you call the process of creating and deleting indexes, minimizing the complexity of each view to only what is needed, and changing the table design?

Answers

The system software used to create and administer databases is referred to as a database management system (DBMS). End users can create, protect, read, update, and remove data in a database with the help of a DBMS.What is DBMS?Essentially, a database management system (or DBMS) is just a computerized data-keeping system. Users of the system are provided with the ability to carry out a variety of actions on such a system for either managing the database structure itself or manipulating the data in the database.A database schema specifies the logical restrictions, including table names, fields, data types, and the connections between these entities, that govern how data is arranged in a relational database.Open the table in Datasheet View and the form in Form View. On the Home tab's Records group, click New or New (blank) record, or press Ctrl+Plus Sign (+). Find the record marked with an asterisk in the record selector, and change it.

To learn more about DBMS refer to:

https://brainly.com/question/24027204

#SPJ4

true or false? ux designers should consider only current internet users when designing user experiences

Answers

UX designers should consider only current internet users when designing user experiences is a false statement.

What does UX design really entail?

The method design teams employ to produce products that offer customers meaningful and pertinent experiences is known as user experience (UX) design. UX design includes components of branding, design, usability, and function in the design of the full process of obtaining and integrating the product.

Note that Making a product or service functional, pleasurable, and accessible is the responsibility of the UX designer. Although many businesses create user experiences, the phrase is most frequently connected to digital design for websites and mobile applications.

Therefore, Note also that UX design is a rewarding career, yes. UX Designers are one of the most sought-after jobs in technology since they are involved at so many phases of a project's life cycle.

Learn more about UX designers from

https://brainly.com/question/898119


#SPJ1

Identify industries and career-based activities in which computer technology makes people's work easier or more efficient.

Answers

Answer:

Those helpful safety or convenience features in modern vehicles? They are all programmed!

Explanation:

Even after a game has been released a game studio decides to update it on a regular basis why is this a good idea

Answers

Even after a game has been released and a game studio decides to update it on a regular basis, it is a good idea because by updating it, it fix bugs, new features will be included and make the game more appealing.

Why do we need to update the game?

For bug corrections and new features, most games will get updates. Some games allow you to continue playing even if you haven't updated, but they often forbid any online functionality until you have.

The term "Game Updates" refers to any updates, corrections, and upgrades made available to third parties or end users that the Company makes available for use by any end user while playing the Game.

Therefore, In most cases, fixes to the game data are distributed using a third-party binary diff mechanism. Typically, the executables are short enough to be distributed in its entirety quickly. Many contemporary games contain hundreds of megabytes of game data (mostly textures, models, levels data etc).

Learn more about game  from

https://brainly.com/question/908343
#SPJ1

you are having problems with the video card on one of your computers. where could you check for troubleshooting information?

Answers

To check for troubleshooting information if you are having problems with the video card on one of your computers is the video card manufacturer's website

The manufacturer's website would that is your first stop regarding information about the product, particularly troubleshooting tips. Companies used to include print guides with new products, and that's almost unheard of these days provided you obtain a Pdf format through the company website. Server logs can display problem numbers but do not provide instructions on how to resolve them. It functions as a tool for listing products and services and providing clients with something else to look at once they are interested in buying the product.

Learn more about manufacturer's website here:https://brainly.com/question/1637875

#SPJ4

Your question is incomplete but probably the full question was:

You are having problems with the video card in one of your computers. Where could you check for troubleshooting information?

A. Another computer with the same video card

B. The video card manufacturer's website

C. The manual that came with the card

D. The server log

a motherboard failed on a desktop pc with an intel core i5-10600k processor. when you are looking for a replacement motherboard, which cpu socket does it need to have?

Answers

You'll need a motherboard with an LGA 1200 socket and a suitable 400-series or 500-series chipset for Intel's 10th generation Core i5 10600K processor.

What is motherboard?The circuit board determines the kinds of storage devices, memory modules, and graphics cards (among other expansion cards) that can connect to your PC. It also distributes electricity from your power supply and links all of your hardware to your processor.The motherboard serves as a platform linking all of the computer's components, and the CPU handles the actual data processing and computing. Both the motherboard and CPU carry out activities essential to the operation of the computer's operating system and programs.The typical sign of a failing motherboard is an entirely dead system because the motherboard is what makes the computer work. If the motherboard is dead, fans, disks, and other peripherals may spin up, but more frequently nothing occurs at all when you turn on the power.

To learn more about motherboard refer to :

https://brainly.com/question/12795887

#SPJ4

turn to code m36.8 in the tabular list. you will found a code first notation under code m36.8. under the code first notation, what is the code associated with ochronosis?

Answers

According to the scenario, the code associated with ochronosis is E70.2.

What is meant by a Tabular list?

A tabular list may be defined as a type of list that is systematically arranged in chronological order. This list consists of ICD-10-CM codes that are divided into chapters on the basis of the body system or condition.

According to the context of this question, a tabular list is essential for representing the alphabet index in the ICD-10-CM along with their assigned code. This is because The Alphabetic Index does not always provide the full code.

Therefore, the code associated with ochronosis is E70.2.

To learn more about Tabular list, refer to the link:

https://brainly.com/question/9442380

#SPJ1

Is when business data reach managers when the information is needed and still relevant.

Answers

Timeliness is when business data reach managers when the information is needed and still relevant.

How is timeliness at work defined?

The term "timeliness" relates to the anticipated time frame for information accessibility and availability. The amount of time between when information is anticipated and when it is accessible for use can be used to gauge how timely something is.

Note that Being punctual demonstrates your concern for others, that you value your time with them over your own agenda, and that you cherish their company.

Therefore, Being on time demonstrates professionalism and establishes your credibility as a dependable and trustworthy worker. Others won't be able to complete their tasks if you don't finish your portion of a project on time.

Learn more about Timeliness from

https://brainly.com/question/24508428
#SPJ1

how the internet protocol allows your smartphone to connect and communicate to other computers and devices.

Answers

Internet Protocol is a shared protocol that enables data to be delivered across the Internet using specific numbers, or IP addresses, to each connected device. This allows devices to connect and communicate on the Internet with ease.

What is Internet Protocol?The Internet Protocol (IP) is a protocol, or collection of guidelines, for addressing and routing data packets so they can move between networks and reach their intended location. The Internet divides data into smaller units known as packets for transmission.User Datagram Protocol (UDP), Internet Protocol (IP), and Transmission Control Protocol(TCP)  are the three Internet protocols.In essence, it enables interconnected devices to interact with one another despite any variations in their internal workings, organizational structures, or aesthetics. Network protocols are essential to modern digital communications because they make it possible to communicate with people anywhere in the globe.

To learn more about Internet Protocol (IP) refer to:

https://brainly.com/question/17820678

#SPJ4

in which of the following cases should you consider storing functions in a module file? group of answer choices a and b only when the functions use reference parameters. when the functions will be used by multiple programs. all of the above when it helps divide a long source code file into smaller files that are easier to manage.

Answers

Option and b are correct :

When it helps divide a long source code file into smaller files that are easier to manage and when the functions will be used by multiple programs .

What is source code?

The text file is referred to as containing the source code when a programmer enters a series of C programming language commands into Windows Notepad and saves the sequence as a text file, for instance. The "before" and "after" versions of a built computer program are commonly referred to as source code and object code.

What is functions?

Simply put, a function is a "chunk" of code that you can reuse repeatedly rather than having to write it out several times. Programmers can divide a problem into smaller, each performing a specific task, chunks using functions.

It is always advantageous to use a header file to declare all the functions and define them in a separate file if the program is very large and consists of more than four files.

Header files make it unnecessary to declare or define functions in each file, making it possible to manage huge code that has 3-5 class files. You can do it by merely including the function header file.

Therefore, only options a and b will be the correct selection.

Learn more about functions click here:

https://brainly.com/question/25741060

#SPJ4

Select the two text phrases that highlight the features of the Print Layout view from the following passage. You access this view from the View menu. You can preview the document as a printed page. You cannot edit your document in this mode. You can view page boundaries, margins, headers and footers, backgrounds, and images in this layout. This view helps you to navigate quickly through a document and keep track of your location in it.

Answers

You can preview the document as a printed page. This view helps you to navigate quickly through a document and keep track of your location in it.

What is document?

Document is defined as a written or printed document that provides details regarding or evidence of something. The text and other elements that are the same in each label are contained in a primary document.

When your document opens, the complete page is displayed, exactly as it will when it is printed on a piece of paper. While the website layout, graphics, and text formatting are all visible, adjustments can be made.

Thus, you can preview the document as a printed page. This view helps you to navigate quickly through a document and keep track of your location in it.

To learn more about document, refer to the link below:

https://brainly.com/question/20696445

#SPJ1

3. what is computerized short-term scheduling that overcomes the disadvantage of rule-based systems by providing the user with graphical interactive computing? 1. lpt 2. css 3. fcfs 4. fcs 5. tgi

Answers

fcs (Finite Capacity Scheduling) is the short-term scheduling that overcomes the disadvantage of rule-based systems by providing the user with graphical interactive computing.

What is Finite Capacity Scheduling?Finite capacity scheduling is a technique used in manufacturing operations to determine how much work can be completed in a given amount of time and to assign resources to jobs in the most effective sequence taking into account all constraints.The start and end dates for the operations in the order are determined by finite scheduling.It is a thorough technique for scheduling orders and operations while taking into consideration the demand on the available resources.A resource overflow is impossible.A never-ending schedule.Make the best possible use of the available resources, taking into account labor capacity, work center uptime, and material limits.As materials are only ordered when they are required, your inventory levels will be lower and your production costs will be lower.

To learn more about  Finite capacity scheduling  refer,

https://brainly.com/question/13484626

#SPJ4

you have been tasked with running a penetration test on a server. you have been given knowledge about the inner workings of the server. what kind of test will you be performing?

Answers

During the penetration testing process, the target system is actively analyzed for any potential weaknesses that may arise from incorrect or bad system configuration, known and undiscovered hardware or software defects, operational gaps in process, or technical countermeasures.

What constitutes a successful penetration test?During the penetration testing process, the target system is actively analyzed for any potential weaknesses that may arise from incorrect or bad system configuration, known and undiscovered hardware or software defects, operational gaps in process, or technical countermeasures.The appropriate response to the question is all of the aforementioned.  The process of assessing a computer program, system, and web service to find defects that could be used for malicious activities is known as penetration testing.The three forms of testing that make up the methodology of penetration testing are called black-box assessment, white-box assessment, and gray-box assessment.    

To learn more about  Penetration testing process refer to:

https://brainly.com/question/13068620

#SPJ4

write a program that prints the numbers from 1 to 100, except if the number is divisible by 3 print 'beep' instead of the number and if it is divisible by 5 print 'boop'. for numbers that are divisible by both 3 and 5 print 'beepboop'.

Answers

C++ is a high-level general-purpose programming language,as an extension of the C programming language,

What is the coding?

C++ is a high-level general-purpose programming language,as an extension of the C programming language,

A integer is divisible by 3 if it has a remainder of 0, and by 5 if it has a remainder of 0 after being multiplied by 3.

To determine whether a number is divisible by 3, 5, both, or none, conditional statements will be used.

1) dividing by three: (x mod 3) = 0; and (x mod 5 does not equal 0)

2) Divisible by 5, where (x mod 5 = 0) and

3) (x mod 3 does not equal 0)(x mod 3 equals 0) and are both divisible by three (x mod 5 also equals 0)

4) any scenario not covered by the first three

for (int i = 1; i < 100; i++) {

if (i % 3 == 0 && i % 5 != 0) {

cout << 'D3';

} else if (i % 5 == 0 && i % 3 != 0) {

cout << 'D5';

 } else if (i % 5 == 0 && i % 3 == 0) {

cout << 'D3&5';

} else {

cout << i;

 }

}

To learn more about c++ refer to:

https://brainly.com/question/28185875

#SPJ4

What is a string in Python language?
A) An ordered set of characters
B) An ordered set of values
C) A sequence of Booleans
D) A sequence of numbers

Answers

Answer:

A

Explanation:

a string consists of letters and numbers
like "myUsername123" can be a string
now their order is important.
but they are not booleans, and they are not necessarily only numbers, and "values" is too vague
so its A

electronic retailers can collect transaction data for their data warehouse, but they can also collect information by placing cookies on a visitor's hard drive. cookies are:

Answers

Cookies are tiny text files kept in a web user's browser directory or data folder. They are sometimes referred to as browser cookies or HTTP cookies.

Cookies are very little text files that are saved in the data folder or browser directory of a web user. They are sometimes referred to as browser cookies or HTTP cookies. To remember login information and keep track of consumers, e-commerce websites put cookies on visitors' browsers.

When a person visits an e-commerce website for the first time, a cookie is put in their browser, and the website logs their activity on a distant server. The cookie is one short line of text. It contains no information about the user or their computer. Instead, it typically contains the URL of the website, a number that is created at random, and the cookie's expiration date.

To know more about website click here:

https://brainly.com/question/28644651

#SPJ4

List three areas in a downtown area where you may have to make a sudden stop in a car

Answers

Answer:

1. If some car rushes out of nowhere and is about to hit you.

2. If a car crashes and you are suddenly about to ram into it and have nowhere else to go.

3. If somebody runs out onto the street and you are driving toward the person.

Explanation:

These are just my ideas, hope this helps!

which http request method will provide read access to the resources when setting the actions allowed

Answers

The HTTP request type known as GET allows for resource access. To read or retrieve a resource, we employ GET. When a GET request is successful, a response containing the data you requested is returned.

You can control access to AWS resources using permissions. IAM entities (users, groups, and roles) receive permissions; by default, these entities have no permissions. In other words, until you provide IAM entities the permissions you want, they are powerless in AWS. ACLs are cross-account permissions policies that give the designated principal permissions. Permissions cannot be granted to entities inside the same account by ACLs. Policy for sessions - When you use the AWS CLI or AWS API to act in the capacity of a role or a federated user, pass advanced session policies.

Learn more about permissions here-

https://brainly.com/question/13146880

#SPJ4

Other Questions
What does the simile in this text suggest?You're as cold as ice; you're willing to sacrifice our love.-Foreigner, "Cold as Ice"The song is about someone who doesn't care.The song is about someone who is guilty.The song is about someone who is freezing. christina, who is 44, wonders if she should be concerned about her risk of breast cancer. christina went through menarche at age 12, has no children, and is in generally good health. christina's mother was diagnosed with breast cancer at age 58. according to the american cancer society, christina should . . . Graph the line that passes through the points (9,2) and (3,4) and determine the equation of the line ( I need it with graph) Find the area of the circle. Give your answer to two decimal places . Please show work jake recently visited a nutritionist who, after examining his weight and height, informed him that his body mass index is 30, which means that jake is: 1. one-word compound ice cream 2. hyphenated compound nondescript 3. two-word compound schoolhouse 4. hyphenated number word 6discussion 5. hyphenated adjective one-of-a-kind 6. word with double consonants barrier-reef 7. a noun 12can't 8. an adjective 10doctor 9. an -ing verb 9looking 10. a spelling word that contained the abbreviation for October 7dog 11. an emotion word resentment 12. a contraction 4twenty-five ASK FOR HELP If x =-5, what is the value of 2x^+6x Determine the length of the line segment shown. line segment from negative 5 comma 5 to 3 comma negative 1 6 units 8 units 10 units 36 units fist gets brainlyist and 35 points please help asap when the minimum-maximum inventory system is used, the minimum number of purchase units that must always remain in inventory is called: The length of a rectangle is twice its width.If the perimeter of the rectangle is 42 in, find its length and width. help meeeeeeeeeeee pleaseeeeeeeeeee rn rnnnnnnnnn!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!help meeeeeeeeeeee pleaseeeeeeeeeee rn rnnnnnnnnn!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! A 5-kilogram bag of cat food costs $14.85. What is the unit price? 6. a lease that transfers ownership of the asset to the lessee by the end of the lease term would be a Write the following equations in slope intercept form1. 4x - 3y = 22. 3x + 2y = -3 estimate by rounding496.1+212.4+301= HELP PLEASEwhat is the net gain of energy when going from the bonds broken to forming new bonds in new proteins? Why is it important that the inside of a lysosome have a lower pH than the surrounding cytoplasm in the cell? (2 points) hydrogen gas and nitrogen gas react to form ammonia gas. what volume of ammonia would be produced by this reaction if 2.9 ml of hydrogen were consumed? a banana weighs 140 g a pineapple weighs 345 g bag a contains 8 bananas and bag b contains 3 pineapples which bag weighs more and by how much show your working Romeo:] One fairer than my love! the all-seeing sunNe'er saw her match since first the world begun.Benvolio: Tut! you saw her fair, none else being by,Herself pois'd with herself in either eye;But in that crystal scales let there be weigh'dYour lady's love against some other maidThat I will show you shining at this feast,And she shall scant show well that now shows best.Romeo: I'll go along, no such sight to be shown,But to rejoice in splendour of mine own.Romeo and Juliet,William ShakespeareWhat causes Romeo and Benvolios disagreement?Benvolio thinks that Rosaline is fair, and Romeo thinks that she is not fair.Romeo thinks that no one is more beautiful than Rosaline, but Benvolio disagrees.Romeo wants to go to the party, but Benvolio thinks that they should stay home.Romeo is a Montague, but Benvolio is a Capulet.