Four common types of distractions are

Answers

Answer 1
Visual Driving Distraction

Related Questions

HELP!!!!!
Your colleague has made a suggested change to an important document you are both working on. You disagree with their suggested change. They will be reviewing the changes you make before the final version of the document is submitted to your boss. You both work remotely and are in radically different time zones. What is the best step to take next?

Answers

Leave the room and let someone else figure it out!

Choose the term that describes each step of the cycle.

------- : gets next instruction

---------- : interprets instruction

----------- : carries out instruction

------------ : saves result of instruction

Answers

Answer:

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

Explanation:

This question is about to tell the best and suitable terms for the given descriptions in the question.

As we know that a computer program is based on sets of instructions. The CPU carries out the processing using the fetch decode and execute cycle.

It is responsible for implementing a sequence of instructions called a computer program that takes input, processes them, and outputs the result based on processing.

A CPU mainly has three components such as control unit, Arithmetic logic unit,  and register.

The control unit controls all parts of the computer system. It manages the four basic operations of the Fetch Execute Cycle such as Fetch, Decode, Executes, and Storage.

So the correct terms of this question are:

Fetch: Gets next instruction

Decode: interprets the instruction

Execute: Carries out instruction.

Store: Save results of instruction.

Answer:

A). Fetch : gets next instruction

B). Decode : interprets instruction

C). Execute : carries out instruction

D). Store : saves result of instruction

Explanation:

I just did the Test on EDGE2020 and it's 200% correct!  

Also, heart and rate if you found this answer helpful!! :) (P.S It makes me feel good to know I helped someone today!!)  :)

Jon wants to set up a trihomed DMZ. Which is the best method to do so? A. use dual firewalls B. use a single firewall with only two interfaces C. use a single three-legged firewall with three interfaces D. use dual firewalls with three interfaces

Answers

Answer:

The correct option is C) Use a single three-legged firewall with three interfaces

Explanation:

DMZ is an acronym for a demilitarized zone.

A DMZ network is one is situated between the internal network and the Internet. It is supported by an Internet Security and Acceleration (ISA) server.

The interfaces you'd get with the DMZ network are

A public network (Internet Protocol-IP) address  with a public interfaceAn internal network interface with a private network (IP) address  A DMZ interface with a public network (IP) address  

Unlike the back-to-back DMZ settings, a trihomed DMZ is unable to use private IP addresses. To use the trihomed DMZ, public IP addresses are a must suitable requirement.

Cheers!

It means fruit- trees garden.

Answers

Answer:

What does?

Explanation:

Do you have a question?

HURRY IM TIMED the ability for search engines to return search results in relevancy ranking in an evolving capability true or false

Answers

Answer:

The answer is True

Explanation:

I took the quiz and got it right.

Which of the following statements best compares and contrasts the role of editors in a television news room and editors at a newspaper?

a.) Both television and print editors work to ensure the quality of production; however, television editors must have a background in film media.
b.) Both television and print editors must make sure content is accurate and appropriate; however, print editors must also consider the length of the content.
c.) Both television and print editors must make sure their sources are reliable; however, fewer people read print news, so fewer would know if a print editor makes a mistake.
d.) Both television and print editors work under tight deadlines, which cause a great deal of stress; however, print editors finish their work sooner than television editors.
Need this now please, thank you!!!!

Answers

Answer: It is A

Explanation:

i need help with the rest also

Answers

Answer:

??? blackkkkkkkkkkkkkkkkk

Identify the parts of a spreadsheet by using the drop-down menus to select the part that corresponds to the labeled diagram to the right.

A

B

C

D

E

Answers

I believe d is the answer !

Answer:

A- Row

B- Column

C- Workbook

D- Cell

E- Sheet

Explanation:

Got a 100% on this, the person above is incorrect.

Help pweeze this is due today :(

I will give u brainliest just pweeze, I need this answer :(

Answers

Answer:

just go in a website and see why important to them

Explanation:

and why the share with more people

please respond not with answer but with comment.

Answers

Answer:.I used to play it but now I don’t;—;

Explanation:

After adding an image to her flyer, Danica played around to see which layout would look the best. At one point, her text was on top of her image. Which features can Danica use to fix the issue? Check all that apply. Position feature Wrap text feature Picture dialog box Insert tab Picture tools

Answers

Answer:

Position feature

Wrap text feature

Picture tools

Explanation:

Answer:

A.) Position Feature

B.)Wrap text feature

E.)Picture tools

Explanation:

Which of the following statements are true regarding Moore’s Law?
states that storage capabilities will triple every two years

is a purely abstract concept that does not clearly apply to the computing industry

was described by Gordon Moore in the early 2000s to predict growth in the fiber optic industry

relates to increases in processing power of computers and has been quite accurate since it was introduced in 1965

Answers

Answer:

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

Explanation:

The question is about Moore's Law.

The given options in this question are:

states that storage capabilities will triple every two years is a purely abstract concept that does not clearly apply to the computing industry was described by Gordon Moore in the early 2000s to predict growth in the fiber optic industry relates to increases in processing power of computers and has been quite accurate since it was introduced in 1965

The correct option to this question is 4. i.e:

Moore's Law related to increases in the processing power of computers and has been quite accurate since it was introduced in 1965. This law was based on a prediction and made by American engineer Gordon Moore in 1965. And it states that the number of transistors per silicon chip doubles every year.

While the other options are not correct because:

It does not state the storage capabilities that will triple every two years, but this law state that computing power and transistors on chips become double every year. It is not a purely abstract concept but it is applied in computing and this law become more famous due to its value. This law was presented in 1965.

Answer:DExplanation:

relates to increases in processing power of computers and has been quite accurate since it was introduced in 1965

8.6 Code Practice: Question 1
Write a function named buildArray that builds an array by appending a given number of random two-digit integers (10-99). It should accept two parameters — the first parameter is the array, and the second is an integer for how many random values to add, which should be input by the user.

Print the array after calling buildArray

Answers

In python 3.8:

import random

def buildArray(arr, nums):

   i = 0

   while i < nums:

       arr.append(random.randint(10,99))

       i+=1

arr = []

numbers = int(input("How many values to add to the array:\n"))

buildArray(arr, numbers)

print(arr)

I hope this helps!

The function named buildArray that builds an array by appending a given number of random two-digit integers (10-99) and accept 2 parameters is represented below

import random  

def buildArray(array, integer):

   i = 0

   while i < integer:

       array.append(random.randint(10, 99))

       i += 1

   return array

print(buildArray([], 12))

The code is written in python.

A function is declared called buildArray. This function accept 2 parameters which are arrays and integer.

i is use to declare a variable assigned to zero.

while i is less than the integer(one of the parameter), random number between 10 and 99 is appended to the parameter array.

The value of i keeps on increasing until it becomes less than the integer.

The filled array is returned.

Finally, we call the function with the required parameters.

The bolded portion of the code are keywords in python.  

read more: https://brainly.com/question/18612252?referrer=searchResults

Question # 6 Fill in the Blank You designed a program to create a username using the first three letters from the first name and the first four letters of the last name. You are testing your username program again for a user whose name is Paula Mano. The output should be

Answers

Its PuaMano

Explanation:

got it wrong and it shows this answer for edge

Select the correct answer. Which option correctly describes a DBMS application? A. software used to manage databases B. software used to organize files and folders C. software used to develop specialized images D. software used to create effective presentations

Answers

Answer:

oftware used to manage databases

Explanation:

Answer:

A. software used to manage databases

Explanation:

This is correct on plato

Which of the following is true of functions? * 2 points A. Programs written with functions run more quickly B. Functions can help remove repeated code from a program C. Replacing repeated code with a function will reduce the number of commands the computer needs to run D. Functions are called once but can be declared many times

Answers

Answer:

I’m sure if I remember that this is “B.”

Explanation:

I have taken computer science class before so I remembered!

The option that is true of functions is B. Functions can help remove repeated code from a program.

It should be noted that the fact that programs are written with functions doesn't mean that they will run quickly.

Functions can help remove repeated code from a program. Also, replacing repeated code with a function doesn't reduce the number of commands the computer needs to run.

Read related link on:

https://brainly.com/question/17691320

A collection of computers, printers, routers, switches, and other devices
that can communicate with each other over some transmission medium
O network
O host part
subnet part
subnet

Answers

ermano envia foto de lo que necesitas yo te ayudo

Someone help its about LA Doña 2

so basically I just wanted to know who has seen it all and where i can watch it

Answers

Answer:

If you look on Just watch it will show you the different people that currently have it right now it is sadly not on Netflix from what I could find out but it will probably be added later on.

Explanation:

Netflix sometimes takes its time adding shows which is sad but that is just how they work. I would recommend maybe trying it on a website that Just watch list or just buy the disc from eBay. either way, I wish you luck!

Ricardo wants to learn more about how his computer reserves space for data. Which of these online tutorials is most likely to meet his needs?

Memory Allocation Basics

RAM or ROM?

Object-Oriented Programming

Python Implementation

Answers

Answer:

Memory allocation basics

Explanation:

Hope this is correct

Answer:

Memory Allocation Basics

Explanation:

What are the three phases of an iterative development process?
A.
design, analyze, generate
B.
plan, analyze, evaluate
C.
analyze, implement, delivery
D.
design, prototype, evaluate

Answers

Answer: D.  - design, prototype, evaluate

Explanation: Took a Edmentum/Plato Quiz

Answer:

D - Design, Prototype, Evaluate

Explanation:

PLATO

How do commands inside an onEvent run different from commands outside?

Answers

Answer:

This is probably the most important reason. In an event-driven architecture, there can be no question that an event raised represents something that has happened.

Now, because Commands are something we want to happen, and Events are something that has happened, we should be using different verbs when we name these things. This drives separate representations.

You want to copy data from one cell or range to an adjacent cell or range in your spreadsheet, without using a shortcut key. Which of the following can you drag on your spreadsheet to do this?

Answers

How can you insert a new row into your data without disturbing an adjacent set of data on the same sheet? Highlight only the data where you'd like to insert a row. Right-click > Insert > Shift cells down.

HOW CAN A PERSON GET BENEFITTED BY THE ICT BASEDSERVICES PROVIDED BY GOVERNMENT

Answers

Answer:

Explanation:

It aims to transform the entire ecosystem of public services through the use of information technology.ICT holds particular promise in areas of governance and public participation.  Age can use information to reduce corruption and increase government transparency, accountability, efficiency and so finally gud night guys and take care.

plz mark as brainliest

What is the output?
>>> phrase = "hello mom"
>>> phrase upper()

Answers

Answer:

The iutput would be nithing since nothing is printed out, how ever, the output of

>>> phrase = "hello mom"

>>> print(phrase.upper())

would be "HELLO MOM".

You would get the same results from this code,

>>> phrase = "hello mom"

>>> phrase = phrase.upper()

>>> print(phrase)

Answer:

The answer is HELLO MOM

Explanation:

I hope this helps, have a wonderful day!

write the seven tasks of previntng maintenance?​

Answers

Answer:

These are testing, servicing, calibration, inspection, adjustment, alignment and installation. Every maintenance team member should be conversant with and apply them accordingly. A preventive maintenance is a crucial component of every company's TPM program.

why is it when you put earbud aux cords in a phone or computer they sound weird until you move the aux cord? Then it is somehow clear. Why?

Answers

Answer:

that might just be the headphone cord itself or it might be the port on the pc/phone

Explanation:

i had this happen with my old droid razr hd i thought it was the aux cord on my speaker and head phones but i used the same things on a friends phone and they worked just fine and this might be do to an old  or broken port on the phone /c my phone headphone port got used almost everyday and it was just the port you can replace this on some tech or you could just use bluetooth if the tech doesent have it buy and adapter.

            hope this helps!!!

Which entity might hire a Computer Systems Analyst to help it catch criminals?

a law enforcement agency controlled by the government
a private investigator who used to work for the government
a credit card company that does business with the government
a financial management firm with ties to the government

Answers

Answer:

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

Explanation:

The correct answer to this question is:

A law enforcement agency controlled by the government might hire a Computer System Analyst to help it catch criminals.

Because only law enforcement agency that is under control of government allows in any country to catch criminals. So, in this context the first option is correct.

While other options are not correct because:

A private investigator who used to work for the government does not need the services of a computer system analyst, because he may be assigned only one assignment. And, his purpose is to perform duty and complete the assignment. A credit company also does not allow the Government in any country to catch the criminal. A financial management firm also not allowed to catch the criminal, so in this context, only a law enforcement agency controlled by the government is allowed to catch the criminal. So, the first option of this question "a law enforcement agency controlled by the government" is correct.

Answer:

A

Explanation:

Which precaution should you take while working on a computer

Answers

Answer: Maintain a cool temperature to avoid sweating

Explanation:

Computer identity theft differs from theft in the real world in what major way?
A. Identity theft puts you in more physical danger.
B. Identity theft can affect your credit without your knowledge.
C. The banks will not assume your losses due to fraud.
D. Banks will replace your credit cards more quickly with identity
theft.

Answers

Computer identity theft is different from theft in the real world because B. Identity theft can affect your credit without your knowledge.

Computer identity theft simply means the use of someone's else private information by another person. It should be noted that identity thieves usually apply for loans by using an individual's credit card.

Computer identity theft is different from theft in the real world because identity theft can affect your credit without your knowledge. Identify thieves can also open bank accounts and use the credit cards in other people's names.

Learn more about theft on:

https://brainly.com/question/20609642

Answer:

B. Identity theft can affect your credit without your knowledge.

Explanation:

When you are brainstorming, what should you be careful to avoid?
A. Editing your ideas as you go
B. Setting boundaries for your session
C. Writing down all your ideas D. Setting a time limit for your session

Answers

It's most likely B. Setting boundaries for your session

reason: Brainstorming is supposed to be coming up with q bunch of creative ideas. setting to many boundaries may make it harder to come up with new stuff.

Other Questions
Read the sentence from Nikita's analysis of "The Children of the Drug Wars." Nazario feels that refugee kids totally shouldn't be sent back to the same dangerous things they've left. This sentence should be revised to make it more accurate. formal. logical. objective. In a Petri dish there are currently 1,235 bacteria. The growth rate of bacteria is 3.25% How many bacteria will be there in the dish after 5 hours you are hunting with a bow and arrow. which of the following presents the best chance for a quick clean kill A telephone pole is 24 feet tall. A support cable is attached to the top of the pole to keep the pole from leaning. The stake for the cable is set in the ground 18 feet away from the base of the pole, as shown. How long is the support cable? How do u make a Heart 3D? ( This For my Friend 587904) Use the drop-down menus to indicate the order in which the citations should appear in a works cited page. Mahoney, Nicole. Language Change. National Science Foundation. The National Science Foundation, n.d. Web. 22 July 2014. Johnson, Samuel. A Dictionary of the English Language. London, 1755. Project Gutenberg. Web. 4 Sept. 2014. Lerer, Seth. Inventing English: A Portable History of the Language. New York: Columbia University Press, 2007. Print. y = 3x 21 is it proportional PLSSSS HELPPP What effects do mutations have? Check all that apply.A) could change protein shapeB)never change protein shapeC)might be neutralD)always change the way a trait is observed E)might be harmfulF)might be beneficial What does the War Powers Act (1973) require of the president? 100 points and brainlist....................................................................................................................................................................................................................... It Takes a Village! In every business, it takes more than one person to create success - whether you are talking about a berry farm, a historic theater, a popular amusement park, or an expanding coffee chain. While you watch the videos, notice how many different people work together to support and sustain these operations. Cogdell Berry Farm Fox Theatre Six Flags Jittery Joes Now, let's put it all together by creating a presentation entitled "It Takes a Village." Your presentation could either be a word document, a digital mind map, or a slideshow, but it must include a chart and research paragraph for each company. In your presentation, you should create a visual chart or slideshow featuring each company and highlighting at least two different jobs that are needed to keep each company running. Make it clear that each company is comprised of many different positions and discuss how people with different skills and interests work together to contribute to a successful enterprise. Finally, pick out one career from each video and do some additional research on it. Let's consult our handy reference, the Bureau of Labor Statistics' Occupational Outlook Handbook once again to find more information. This time check out the headings 'How to Become One,' 'Pay,' and 'Job Outlook' for each career you choose. Your presentation should include the following content: A chart/slideshow that describes each of the four companies with at least two jobs discussed in each company. In depth research on one job per company, including: How to Become One Pay Job Outlook However you choose to arrange your presentation, make sure to show clearly that the companies you learned about rely on more than one position to keep things running smoothly. hello guys ,please answer this question if you know Evaluate the relationship between Frank Davis and Thomas Green under the Leader-member exchange (LMX) theory. A number x is greater than 3. what is the slope of y = -4x - 7 Describe the slope of the line.m =???excuse the crack!! What caused many governments in the South to pass slave codes?A. Supreme Court decisionsB. Slave owners needing to keep slaves from escapingC. Demands for these laws from CongressD. A rising fear of slave revoltsSUBMITASAP An angle measures 20 less than the measure of its complementary angle. What is the measure of each angle When two dice are rolled find the probability of getting a sum of 6 or 7 PLEASE ANDWER QUICK IM TAKINN A TEST I'LL GIVE YOU 20 POINTS AND BRAINLIEST!!!!!!!!!!!!!!!!!!!!!!!!!!! Express tan A as a ratio with a rationalized denominator.