Answers

Answer 1

Answer:

the force of impact is the force generated when objects meet


Related Questions

Cybersecurity breaches in the workplace generally happen because _____. Select 3 options. people deliberately try to hack into the network people deliberately try to hack into the network people do not know about cybersecurity protocols people do not know about cybersecurity protocols people make unintentional mistakes people make unintentional mistakes workplaces tend to have too strict cybersecurity protocols workplaces tend to have too strict cybersecurity protocols cybersecurity specialists do not really help

Answers

Cybersecurity breaches in the workplace generally happen because:

People deliberately try to hack into the network people.People make unintentional mistakes.People do not know about cybersecurity protocols

What are the three main causes of security breaches?

The major reasons for data breaches are:

Old, Unpatched Security Vulnerabilities. Human ErrorMalware, etc.

Therefore, Cybersecurity breaches in the workplace generally happen because:

People deliberately try to hack into the network people.People make unintentional mistakes.People do not know about cybersecurity protocols

Learn more about Cybersecurity from

https://brainly.com/question/12010892

#SPJ1

Taking control of admin functionality and misusing sensitive data that are unauthorized to access are due to.

Answers

Taking control of admin functionality and misusing sensitive data that are unauthorized to access are due to Broken Access Control.

What leads to broken access control?

The Common access control issues  are:

The Bypass of access control checks via the modification of the URL.Internal application state.The use of custom API attack tool.

Note that Taking control of admin functionality and misusing sensitive data that are unauthorized to access are due to Broken Access Control.

See options below

This is a List of Available Answers Options :

Xml Enternal Entities Injection

SQL Injection

Cross site scripting

Broken Access Control

Learn more about admin from

https://brainly.com/question/26096799

#SPJ1

Write a program that accepts the lengths of three sides of a triangle as inputs. the program output should indicate whether or not the triangle is a right triangle. recall from the pythagorean theorem that in a right triangle, the square of one side equals the sum of the squares of the other two sides. use the triangle is a right triangle. and the triangle is not a right triangle. as your final outputs.

Answers

The code will have to obey the Pythagorean theorem that says square of the hypotenuse side is equals to the sum of the squares of the other legs.

How to write a code that check if a triangle is a right angle by using Pythagoras theorem?

The code is written in python.

def right_triangle(x, y, z):

    if x**2 + y**2 == z**2 or y**2 + z**2 == x**2 or z**2 + x**2 == y**2:

         print("it is a right angle triangle")

    else:

         print("it is not a right angle triangle")

right_triangle(6, 10, 8)

Code explanationwe defined as function named "right_triangle". x, y and z are argument which are the length of the triangle.Then we check if the sides obeys Pythagoras theorem.If it does we print a positive statement else we print a negative statement.

Learn more about python at: https://brainly.com/question/21437082

#SPJ4

If an algorithm produces an unexpected outcome, what is the most likely
reason?
A. It is sequenced incorrectly.
B. It is too long and time-consuming.
C. Its purpose is too specific.
D. It is too short and fast.

Answers

Option d is the best answer

When a motherboard fails, you can select and buy a new board to replace it. Suppose the motherboard in your computer has failed and you want to buy a replacement and keep your repair costs to a minimum. Try to find a replacement motherboard on the web that can use the same case, power supply, processor, memory, and expansion cards as your current system. If you cannot find a good match, what other components might have to be replaced (for example, the processor or memory)

Answers

When a motherboard fails, you can select and buy a new board to replace it then Replacing the motherboard in a pc is the maximum tough process.

What are a few pointers while deciding on a motherboard?

First Choose an appropriate chipset for a device.Check whether or not the motherboard maintenances the same processor Select board for the device with bendy speeds.Ensure that motherboard maintenance right reminiscence.Check the board that helps the sort of video you need.Check records, maintenance, and updates for the board.

Choosing the proper motherboard is first essential step wherein the processor that helps nicely are determined, reminiscence in what kind and what kind of reminiscence may be used also are determined, what sort of films may be supported and installed. In depending to this verbal exchange velocity and the device element are all have to be checked in a clean understanding earlier than deciding on motherboard.

Read more about the processor :

https://brainly.com/question/1538272

#SPJ1

What is the next step an organization should take after capturing and collecting data?

Answers

Answer: I think this is right Step 1: Identify issues and/or opportunities for collecting data. Step 2: Select issue(s) and/or opportunity(ies) and set goals. Step 3: Plan an approach and methods. Step 4: Collect data.

Physical and data link layer standards govern transmission in ________. LANs WANs Both LANs and WANs Neither LANs nor WANs

Answers

Answer:

Both LANs and WANs

Explanation:

Physical layer standards govern physical links between devices which includes connectors, plugs, transmission media, and signaling.

If a while loop iterates forever,what is the most likely cause?

Answers

Answer:

Runtime error probably. The program won't make it past the while loop in the code.

Answer: The loop has a condition that cannot possibly be false.

Explanation:

write a program in Python and explain how we do the program

Answers

please send what program, I will help you.

Answer:

num1 = 1.5

num2 = 6.3

sum = num1 + num2

print('The sum of {0} and {1} is {2}'.format(num1, num2, sum))

Explanation:

This program adds up two numbers.

num1 = 1.5 means that a variable called num1 has been assigned to the number 1.5num2 = 6.3 means that a variable called num2 has been assigned to the value 6.3sum = num1 + num2 means that the variables num1 and num2 have been added together and their total has been assigned to the new variable sumprint('The sum of {0} and {1} is {2}'.format(num1, num2, sum)) means that the text that will be printed shall read out the sum of their answers formatted with brackets that are kept in place of their respective variables.

1. what is the purpose of giving an id to an html element when using javascript?

Answers

Answer:

It is also used by JavaScript to access and manipulate the element with the specific id.

True or false: if you are adding your own css sheet, make sure your css file comes before the bootstrap css file.

Answers

If you are adding your own CSS sheet, make sure your css file comes before the bootstrap CSS file this is false.

How do I combine Bootstrap with CSS?  

How to use Bootstrap CSS. To use Bootstrap CSS, you need to integrate it into your development environment. All you have to do is create a folder on your computer. Save the compiled CSS and JS files, as well as the new HTML file that loads Bootstrap, in this folder.

Especially, jQuery and Popper are required. js and its own JavaScript plugin. Place the following Deleted at the bottom of the page, just before close & lt; / body & gt ;. -Tag and activate.

Read more about the bootstrap :

https://brainly.com/question/14959829

#SPJ1

To conserve its public IP addresses, a company can instead use ____ addresses for devices within its own network boundaries.

Answers

Answer:

private ip addresses

Explanation:

A private ip address is assigned to each device on a network, allowing devices on the same network to communicate with each other without using any public ip addresses.

"Use onblur and onfocus to add red borders to the input elements when the user leaves without any input, and a green border if a value is typed and the user is done with the input element."
Was an instruction in my java assignment, does anyone have an idea on what code is needed to do that?

Answers

Answer:

habla en español no te entiendo por favor

Other Questions
Triangle WYT is an isosceles if angle Y is equal to 156 then what are the other two angles? brainliest and five for the first who answers! 50 POINTS ON THIS QUESTION! Simon used these steps to solve an equation:Step 1: -6(x + 7) = 2(x 11)Step 2: -6x 42 = 2x 22Step 3: -8x 42 = -22Step 4: -8x = 20Which property did he use to get from step 3 to step 4 Whats 2x(4+5x) If the x was 5. how could you correctly rewrite 4(5+3)=2(22-6) using the distributive property How did the "new" immigrants affect the politics of unionization, and what motivated them to do so? If given the equation y = 3(x + 5)2 - 4, what is the vertex of the parabola Rewrite using exponential notation \root(6)((4\pi )^(3)) The point (-2,-3) is rotated 180 degrees counterclockwise about the origin. What is the y-coordinate of the resulting image how do you distribute this(x+5)(x-5) Sherri solved the equatjon 1/5(x-20)=45. For each step, write the name of the property sherri used What is the direction of the acceleration of an object, relative to the direction of its velocity, when that object is speeding up Five dogs were running in a race. Bandit completed the race in 10 seconds after Sergeant and 30 seconds before Sally. Smokey completed the race 10 seconds before Sally and 25 seconds after Tobie. Which list correctly shows the dogs from first to last place?A B C D The coordinate grind shows three points P, Q, and R. The distance between Q and R is? Paul has found the following quote that supports his research claim:"As far as sweeteners go, aspartame has had far morereported health complaints, but saccharine has a morenegative perception based on one small study" (306).-Nutritionist Caroline OscarWhich sentence best avoids plagiarism by paraphrasing? A type of anchor that is a good choice when jacking or levelingthe fastening component is a(n)_Select one:O a. wedge anchorO b. stud bolt anchorO c. one-piece anchorO d. hammer-set anchors Which theme best connects to this excerpt? appearances can be deceiving. living with secrets is painful. friendship overcomes trials. wisdom is gained over time. 4/-5=20/t i am not understanding how to solve this . can y ou help me with this please? Which line is being represented by the graph?Ay = 3/4 X -3By = 3/4x + 4Cy = -3/4x + 4Dy = -3/4 x - 3 Help me with this please What is the definition of opportunity cost? 1-4 which one is the correct answer 1. Opportunity cost refers to a NEGATIVE effect that a person could experience but gave up to take another course of action 2. Opportunity cost refer to a BENEFIT that a person could have received but gave up to take another course of action 3. Opportunity cost is a negative effect for a decision made4. Opportunity cost is a benefit that a person received before taking another course of action