There is___fatality rate among vulnerable road users.
A. a lower
B. an equal
c. a greater

Answers

Answer 1
c. a greater i think, because it’s saying there’s a higher chance of dying if your in the road and your vulnerable

Related Questions

Terry visits the website www.examplewebsite.org. What can you gather about the site from the domain?
ОА.
It is a commercial website.
OB.
The website belongs to an organization.
Ос.
The website was set up in Oregon.
OD.
The website is 100 percent original.
O E.
It is a government website.

Answers

Answer: B

Explanation: This question asks the student to consider the domain .org. The student needs to know that org is short for organization. This would point to option B. For option A to be true, the domain would need to be .com. Option C and D couldn’t be true, as there is no domain to point to these options. For option E to be true, the domain would need to be .gov.

Hope this helps! Comment below for more questions.

question no.3 a. Can someone pls help me

Answers

Answer:

A=1

B=1

C=0

X= OR

Explanation:

A is XOR

B is NOT

C is AND

X is OR

Liam and his team developed a social networking group site for their company. They launched the site, and more than 100 users have already
joined, with the number of users growing each day. Above all else, which critical user requirement must Liam and his team meet?
ОА.
ability to access old messages posted by users
OB.
free access to the site
Ocability to upload user videos
OD.
user privacy and confidentiality issues

Answers

Answer:

D. user privacy and confidentiality issues

Explanation:

Software development life cycle (SDLC) can be defined as a strategic process or methodology that defines the key steps or stages for creating and implementing high quality software applications.

There are seven (7) main stages in the creation of a software and these are; planning, analysis, design, development (coding), testing, implementation and execution, and maintenance.

Basically, the two (2) essential privacy concerns in the field of cybersecurity are knowing how personal data are collected and essentially how they're used by the beneficiaries or end users.

Above all else, the critical user requirement Liam and his team must meet is user privacy and confidentiality issues.

Confidentiality refers to the act of sharing an information that is expected to be kept secret, especially between the parties involved. Thus, a confidential information is a secret information that mustn't be shared with the general public.

GUITAR
An ensemble is a group of two or more musical-

chairs
chords
notes
performers

Answers

performers! an ensemble is where lots of people perform.

Robots are more prevalent today than they were just a few years ago, tackling tasks that range in importance from cleaning floors to teaching students to diagnosing illnesses. With this progress comes possible job loss for janitorial personnel, educators, doctors, and others. Discuss some areas where you find this technology helpful as well as areas you feel more confident in human decision making. List some pros and cons of robotic technology and provide real life examples. For instance, many people would relish the thought of owning a robotic sweeper but would cringe if their children were being taught by a robot sporting a face and using personalized conversation.

Answers

Answer: Some areas that technology would be useful are Agriculture, Health Care, and the Military.

But some jobs that humans are better at could be jobs that require Creativity and strategic thinking

Explanation:

Hope this helped

Se le conoce así cuando el analista mismo desarrolla el software necesario para implementar el diseño

Answers

Answer:

Desarrollo de software.

Explanation:

El método clásico de desarrollo de software se denomina modelo en cascada, lo que significa que cada fase de desarrollo del programa debe completarse antes de que comience la siguiente, y que se lleva a cabo un extenso trabajo de especificación antes de que comience el desarrollo real del programa. La especificación es tradicionalmente de arriba hacia abajo y el desarrollo se basa en una programación estructurada, es decir, se formula primero un objetivo final para el proyecto, y luego el programa se divide gradualmente en partes funcionales más pequeñas.

Los métodos más nuevos son ágiles y basados ​​en pruebas. Se basan en el desarrollo gradual de muchas entregas parciales del programa y permiten que las distintas fases de desarrollo se lleven a cabo de forma cíclica o en paralelo. Los clientes y usuarios ganan influencia a lo largo del proceso de desarrollo. El desarrollo y las pruebas de prototipos comienzan lo antes posible, antes de que estén listos todos los detalles de la especificación de requisitos. Las decisiones sobre la especificación de requisitos de las versiones de entrega se toman lo más tarde posible, cuando los usuarios han probado y comprendido lo que realmente quieren y existe un buen conocimiento de las necesidades, posibilidades técnicas y dificultades. Cambia entre el método de arriba hacia abajo (para comenzar desde el propósito y el objetivo) y el método de abajo hacia arriba (para comenzar con lo que ya tiene y puede reutilizar, y comenzar con casos especiales simples pero gradualmente hacer que el programa sea cada vez más general).

Use the drop-down menus to complete the statements about printing Contacts. When printing a single contact, go to File and then Print; the only style available is Memo style . When printing multiple contacts, there are several styles to choose from.

Answers

Answer:

When printing a single contact, go to File and then Print; the only style available is Memo style .

When printing multiple contacts, there are several styles to choose from

Explanation:

The question has been answered (by you). I will help you with the explanation. The texts in bold in the answer section represent the answer.

The question is an illustration of Microsoft outlook.

In Microsoft outlook, the default style of printing is the memo style of printing. This is the only form of printing allowed when printing single contacts. In other words, other forms of printing cannot be selected.

However, there are several options available when multiple contacts are to be printied. Some of the printing styles are:  phone directory style, card style, medium booklet style, etc.

Answer:

1. is memo style

2. is mulitiple

Explanation:

Summary

In this lab, you complete a partially written C++ program that includes a function requiring multiple parameters (arguments). The program prompts the user for two numeric values. Both values should be passed to functions named calculateSum(), calculateDifference(), and calculateProduct(). The functions compute the sum of the two values, the difference between the two values, and the product of the two values. Each function should perform the appropriate computation and display the results. The source code file provided for this lab includes the variable declarations and the input statements. Comments are included in the file to help you write the remainder of the program.
Instructions

Write the C++ statements as indicated by the comments.
Execute the program by clicking the Run button at the bottom of the screen.

Grading

When you have completed your program, click the Submit button to record your score.



++// Computation.cpp - This program calculates sum, difference, and product of two values.
// Input: Interactive
// Output: Sum, difference, and product of two values.

#include
#include
void calculateSum(double, double);
void calculateDifference(double, double);
void calculateProduct(double, double);
using namespace std;

int main()
{
double value1;
double value2;

cout << "Enter first numeric value: ";
cin >> value1;
cout << "Enter second numeric value: ";
cin >> value2;

// Call calculateSum

// Call calculateDifference

// Call calculateProduct

Answers

Answer:

The functions are as follows:

void calculateSum(double n1, double n2){

   cout<<n1+n2<<endl; }

void calculateDifference(double n1, double n2){

   cout<<n1-n2<<endl; }

void calculateProduct(double n1, double n2){

   cout<<n1*n2<<endl; }

Call the functions in main using:

calculateSum(value1,value2);

calculateDifference(value1,value2);

calculateProduct(value1,value2);

Explanation:

This defines the calculateSum() function

void calculateSum(double n1, double n2){

This prints the sum

   cout<<n1+n2<<endl; }

This defines the calculateDifference() function

void calculateDifference(double n1, double n2){

This prints the difference

   cout<<n1-n2<<endl; }

This defines the calculateProduct() function

void calculateProduct(double n1, double n2){

This prints the product

   cout<<n1*n2<<endl; }

This calls each of the function

calculateSum(value1,value2);

calculateDifference(value1,value2);

calculateProduct(value1,value2);

See attachment for complete program

What is part of the third step in troubleshooting a computer problem?
O locating the problem and identifying it
O trying a number of simple fixes initially
O researching ways to solve the problem
O seeking help to solve the problem

Answers

Answer:

locating the problem and identifying it.

which of the following is not an example of a cyber crime?

A. cybers talking

b. prank phone call's

c. phishing scams

d. identity theft​

Answers

Answer c it phishing scams

In which patten the modern computer work ?​

Answers

Answer:

Modern computers can perform generic sets of operations known as programs. These programs enable computers to perform a wide range of tasks.

why it's important for designers to consider the environmental impact of a
product they design.

Answers

Answer:

Kindly check explanation

Explanation:

The environment is our abode which aids the continued survival and growth of plant, animals and humans. The most important components and natural resources which are neceaaaarybto dwell and survive are all waht a makes up an enviromment. The energy derived from the sun aids power generation, plant growthbduring photosynthetic activities which is rewired to produce crops and feed us. The air we breathe are all a part of our enviromment. Therefore, such environment which provides a canvas or platform for our existence must be greatly cared for and no technological innovation, project or design must be allowed to impact negatively on the enviromment. Thus the need for impact assessment of systems in other to ensure that our abode isn't threatened.

Ravi is writing an essay on the impact of the internet on business. Help him classify the scenarios he sees around him as positive and negative effects of the internet on business. He recently bought a second-hand camera online, which he hadn't been able to find in any store. A bookstore down the road shut down because people preferred the cheaper online bookstores. Ravi's sister complains that her boss always knows when she is late, but rarely greets her if their paths cross in office. His friend sells printed T-shirts online, storing them in his basement and promoting them on social media. One of his friend's printed T-shirts got wet and stained in the delivery truck and the buyer wrote a nasty review.

Answers

Answer: See explanation

Explanation:

Based on the options given, the positive effects of the internet on business will be:

• He recently bought a second-hand camera online, which he hadn't been able to find in any store.

• His friend sell printed T-shirts online, storing them in his basement and promoting them on social media.

The negative effects of the internet on business will be:

• A bookstore down the road shut down because people preferred the cheaper online bookstores.

• Ravi's sister complains that her boss always knows when she is late, but rarely greets her if their paths cross in office.

• One of his friend's printed T-shirts got wet and stained in the delivery truck and the buyer wrote a nasty review.

The CEO of CorpNet.xyz has hired your firm to obtain some passwords for their company. A senior IT network administrator, Oliver Lennon, is suspected of wrongdoing and suspects he is going to be fired from the company. The problem is that he changed many of the standard passwords known to only the top executives, and now he is the only one that knows them. Your company has completed the legal documents needed to protect you and the company. With the help of a CorpNet.xyz executive, you were allowed into the IT Admin's office after hours. You unplugged the keyboard from the back of the ITAdmin computer and placed a USB keylogger into the USB, then plugged the USB keyboard into the keylogger. After a week, the company executive lets you back into the IT Admin's office after hours again. In this lab, your task is to use the keylogger to recover the changed passwords as follows: Move the keyboard USB connector to a different USB port on ITAdmin. Remove the keylogger from ITAdmin. Move the consultant laptop from the Shelf to the Workspace. Plug the keylogger into the consultant laptop's USB drive. Use the SBK key combination to toggle the USB keylogger from keylogger mode to USB flash drive mode. Open the LOG.txt file and inspect the contents. Find the olennon account's password. Find the Administrator account's password. Answer the questions.

Answers

Answer:

The olennon account's password: See the attached file for this.

The Administrator account's password: 4Lm87Qde

Explanation:

Note: See the attached excel file for the olennon account's password as I was unable to save it here because I was instead getting the following message:

"Oh no! It seems that your answer contains swearwords. You can't add it!"

The olennon account's password and the Administrator account's password can be found as follows:

To see the rear of the computer, click Back from the menu bar above the computer.

Drag the USB Type A connector for the keyboard from the rear of the computer to another USB port on the machine.

Make sure the keyboard is plugged back in.

Expand System Cases on the shelf.

Add the Laptop to the Workspace by dragging it there.

To see the rear of the laptop, click Back from the menu above the laptop.

Drag the keylogger from the computer to the laptop's USB port.

Select Front from the menu above the laptop to see the front of the laptop.

Select Click to display Windows 10 on the laptop.

Toggle between keylogger and flash drive mode by pressing S + B + K.

To control what occurs with detachable drives, select Tap.

To view files, choose Open folder.

To open the file, double-click LOG.txt.

Select Answer Questions in the top right corner.

Respond to the questions.

Choose Score Lab as the option.

Therefore, we have:

The olennon account's password:

The Administrator account's password: 4Lm87Qde

Who invented slide Rule and when?​

Answers

Invented by William Oughtred in the 1600s but only used in the mid 1800s
A slide rule is used for multiplication and division, invented by William Oughtred in 1622. Used until 1970s. Straight up looks like a ruler.

What is the SPECIAL NAME used to describe all the types of drawings which allows three faces to be seen at one time?

Answers

Answer:

3d or 3 dimensional??? I'm not sure but it sounds like it

Answer:

Orthographic projection is a name given to drawings that usually have three views. Often, the three views selected are the top, front, and right side.

hope this helps!


3. Explain five (5) reasons why computers are so powerful.
the following software threats.​

Answers

Answer:

Software development brings your business to new heights of integration. It allows your company to be accessible from almost anywhere via smartphone or computer.

It improves sales and service. The way your customers experience your business is very important. Do you want them to provide you with positive feedback? Then you can’t avoid having an online platform to make it easier for them to reach your services and products.

It helps to implement on-the-go marketing, promoting your products at any place and any time without additional expenses and extra time needed. It doesn’t matter where your customers are. They can access your ads anytime and from anywhere.

It increases customers’ engagement. As with any other business, you probably want to have loyal customers. How should you increase the number of such customers? Work on online marketing strategies. Increase customers’ engagement through the website and application and make them always come back to you, not to your competitor.

Direct communication. Any other strategy can’t bring you an opportunity of direct communication with the customers at the same level as this one does. Direct communication with your customers is the fastest way to boost your brand.

Explanation:

Cuales de estos aparatos son ejemplo de mecanización automatizacion o robotica batidora electrica , grifo de un cuarto de bño publico que se detiene al cabo de un cierto tiempo y maquina fotocopiadora digital

Answers

Answer:

La automatización es el reemplazo del trabajo humano por máquinas o computadoras y programas de computadora. El motivo es económico: la suma de trabajo y consumo de materias primas es menor después de la automatización que antes.

Las formas de automatización se pueden encontrar a nuestro alrededor. Los semáforos son operados por un sistema automatizado. La caja registradora de la tienda que paga los alimentos hace más que sumar el precio de los artículos; también es la base de un sistema de gestión de inventarios. Tan pronto como se vende un artículo, se reserva inmediatamente y se puede pedir un artículo de reemplazo.

When you apply _______ you insert a number slightly above the the line of text

A. Subscript
B. Underlining
C. Superscript
D. Text effects

Answers

Subscript 2020 on the edge

how many country on earth​

Answers

Answer:

195 countries

I think Soo

Answer:

there are 195 countries on earth

Prompt: Create a program that asks the user continuously the dollar amount of their recent Amazon purchases until they say done. Store those numbers in a list. Afterwards calculate the following:
Total Amount Spent
Maximum amount spent on a single purchase
Minimum amount spent on a single purchase
Number of purchases
Amount of money spent on taxes. (Sales tax in NY is 8.875 percent).

Things to keep in mind:
Input is stored as string so you need to convert to float.
If you or your family use Amazon, try using your own data!

Pls Dont scam me

Answers

Answer:

oh sorry I don't know that but...

Explanation:

Thanks for the points hehe

Explain Metropolitan Area Network.

Answers

Answer:

A metropolitan area network (MAN) is a computer network that connects computers in a metropolitan region, which can be a single large metropolis, a collection of cities and towns, or any significant area with several buildings. A metropolitan area network (MAN) is larger than a local area network (LAN) but smaller than a wide area network (WAN) (WAN).

do earthquakes ever happen in Malaysia?​

Answers

The correct answer to this open question is the following.

Although there are no options attached we can say the following.

Do earthquakes ever happen in Malaysia?

Yes, they do. And they are very frequent and high in intensity.

For instance, the Sabah earthquake in 2015.

On June 5, 2015, the region of Malaysia was hit by a strong earthquake, 6.0 of magnitude on the Ritcher scale. The telluric movement lasted 30 seconds and caused much destruction.

Experts and scientists confirm that this had been the strongest earthquake since the one presented in 1976.

Can you identify one syntax error and one logic error in these lines? How do you think you could avoid making logic errors like the one in this code?

You are creating a program in which the user will input his or her age. The program will calculate the year that the user was born and will then tell the user which decade he or she was born in. Here is part of the code:if year > 1989 and year < 2000 print("You were born in the 1980s")

Answers

Answer:

(a) Syntax Error: Missing colon symbol

(b) Logic Error: The condition is wrong

Explanation:

The programming language is not stated; so, the syntax error may not be correctly identified.

Assume the programming language is Python, then the syntax error is the missing colon symbol at the end of the if statement. This is so because, Python required a colon symbol at the end of every if condition statement.

The logic error is also in the condition.

The condition states that all years later than 1989 but earlier than 2000 are 1980s. This is wrong because only years from 1980 to 1989 (inclusive) are regarded as 1980s.

what are network services?​

Answers

Answer: A networking service is a low-level application that enables the network to perform more than basic functions.

Which factors make the prevention of cyberbullying difficult? Check all that apply.
speaking out publicly that cyberbullying is a problem
disbelieving that cyberbullying causes serious harm
convincing others that cyberbullying is harmless
refusing to take responsibility to stop cyberbullying
using technology to participate in cyberbullying
collecting evidence that cyberbullying has occurred

Answers

Answer:

disbelieving that cyberbullying causes serious harm

convincing others that cyberbullying is harmless

refusing to take responsibility to stop cyberbullying

using technology to participate in cyberbullying

Explanation:

We can categorize the 6 given options into 2 categories.

(1) The factors that makes the prevention easy

(2) The factors that makes the prevention difficult

Options (a) and (f) can be categorized under 1 because when one speaks up or gather evidence when one gets cyberbullied, that means that an awareness has been created and as such, one and others would know how to prevent themselves from being cyberbullied.

However, the same cannot be said for (b), (c), (d), and (f). In fact, these 4 options contribute to the growth of cyberbullying. One must shun each of these 4 activities.

Write a C++ program to count even and odd numbers in array. The array size is 50. The array elements will be entered by the user.

Answers

Answer:

The program in C++ is as follows:

#include <iostream>

using namespace std;

int main(){

   int numbers[50];

   int evekount = 0, odkount = 0;

   for(int i = 0; i<50;i++){

       cin>>numbers[i];

       if(numbers[i]%2==0){            evekount++;        }

       else{            odkount++;        }

   }

   cout<<"Even Count: "<<evekount<<endl;

   cout<<"Odd Count: "<<odkount<<endl;

   return 0;

}

Explanation:

This declares the integer array of number

   int numbers[50];

This initializes the even count and odd count to 0

   int evekount = 0, odkount = 0;

This iterates from 1 to 50

   for(int i = 0; i<50;i++){

This gets input for the array

       cin>>numbers[i];

This checks for even

       if(numbers[i]%2==0){            evekount++;        }

This checks for odd

       else{            odkount++;        }

   }

This prints the even count

   cout<<"Even Count: "<<evekount<<endl;

This prints the odd count

   cout<<"Odd Count: "<<odkount<<endl;

Define the term editing​

Answers

Answer:

editing is a word file mean making changes in the text contain is a file. or a word file is one of the most basic ms office word operation.

You have copied the data highlighted in the dotted box. What would be the result if you did PASTE command at the selected cell ?

Answers

Answer:

The data would be copied over to the new box

Explanation:

which of the following is not a bus type A. Address bus B. Data bus C. Memory bus D. Control bus ​

Answers

Answer:

Answer is memory bus.

Explanation:

Answer is memory bus.

Other Questions
(4-i)-(3-i) in standard form describe the picture below and give it uses. plsss help How did the Kingdom of Piedmont in northern Italy defeat Austria and gain control of unification efforts across Italy? What is the 30th term of the linear sequence below?-4,-1,2,5,8 What is latent heat?A. energy released or absorbed to change the kinetic energy of a substanceB. energy released or absorbed to change the pressure of a substanceC. energy released or absorbed to change the temperature of a substanceD. energy released or absorbed to change the phase of a substance what pairs of degree measures NOT belong to thegroup? How to solve the equation of power ? Over the centuries, many other societies have declined,collapsed or died out. Famous victims include the Anasaziin the American Southwest, who abandoned their cities inthe 12th century because of environmental problems andclimate change, and the Greenland Norse, whodisappeared in the 15th century because of all fiveinteracting factors on the checklist. There were also theancient Fertile Crescent societies, the Khmer at AngkorWat, the Moche society of Peru - the list goes on.What is Diamond's claim in this passage?A. The Anasazi could have survivedB. The American Southwest is more habitable than GreenlandC. Societal decline and failure is commonD. Societies have stopped failing in the last two centuries, who discover fermentation Need help immediatelyA sum of money is to be divided among A, B and C in the ratio 2:3:5. The smallest share amounts to $210. Calculate:i.The total sum of money to be shared ii.Cs share iii.Bs share Plz help me solve this algebra problem Question 121 ptshunted with horsesthe EskimosAztecsthe Plains IndiansMayaIncas Question2x + 3y = 11x 3y =1What is the solution (x, y) to the given system of equations?O (4,0)O (4,1)O (12,8)O (12, 10) two rectangles have a scale factor of 4:1. If the area of the larger rectangle is 156cm^2, what is the area of the smaller rectangle?A. 26.75 cm^2B. 31 cm^2C. 9.75 cm^2D. 39 cm^2 considers the problem of building railway tracks under the assumption that pieces fit exactly with no slack. Now consider the real problem, in which pieces dont fit exactly but allow for up to 10 degrees of rotation to either side of the "proper" alignment. Explain how to formulate the problem so it could be solved by simulated annealing Which is an example of a vestigial structure?A) The flipper of a whaleB) The wings of a birdC) The tailbone of a humanD) The eyes of a bat What is the meaning of negative impact in technology What is the heat of a reaction, in joules, with a total reaction mixture volume of 61.2 mL if the reaction causes a temperature change of 4.6 oC in a calorimeter Read this excerpt from "Once Upon a Time" and answer the question.Under cover of the electronic harpies' discourse intruders sawed the iron bars and broke into homes, takingaway hi-fi equipments, television sets, cassette players, cameras and radios, jewelry and clothing, andsometimes were hungry enough to devour everything in the refrigerator or paused audaciously to drink thewhiskey in the cabinets or patio bars.Using the context clues, determine the synonym that could best replace the word audaciously in this contextdisrespectfullycourageouslyboldlybravely HELPP PLS ASAP I NEED HELP