Who are the people who direct traffic, give speeding tickets, fight crime, and even keep schools safe?

Answers

Answer 1
Answer:

Answer:

law enforcement

Explanation:

they do all these aspects


Related Questions

During triage, what color is the tag placed on a victim who has first priority? a. blue b. green c. red d. white
The underline format will underline ____.
which of the following would most effectively reduce / mitigate social engineering incidents? security awareness training intrusion detection and prevention systems increased physical security measures email monitoring
The process of determining an organization's basic mission and long-term objectives and then implementing a plan of action for attaining these objectives is called:__________A) functional management. B) tactical management. C) strategic management. D) contingency management.
In night mode, you will want to use which of the following? A. a filter B. a tripod C. a telephoto lens D. a wide-angle lens

Describe three different camera shots the director uses in Casablanca. What effect does each of these shots have on the plot, mood, etc. of the film?

Answers

The movie Casablanca was considered as the standard for Classic Hollywood Movies. Below are the three different camera shots used by the Director in the movie:
1. The point of View Shot: also referred as POV shot. It is the camera shot where it shows what the character or the subject looking at in the film.
2.  Wide Shot: it also termed by others as the long shot or full shot. In the movie, it is the shot from a distance so the people or the characters will appear as indistinct shapes.
3. High angle Shot: In the film, it is the type of shot wherein the camera is placed above the subject with its lens pointing downward to make the subject small. Typically used in horror movies.

Consider the given code fragment. Determine the output of the program fragment.m = 2 repeat until (m > 500) { display(m) m = m * 2 } a) 2, 4, 8, 16, 32, 64, 128, 256, 512 b) 2, 4, 8, 16, 32, 64, 128, 256 c) 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024 d) 2, 4, 8, 16, 32, 64, 128, 256, 1024

Answers

Explanation:

a "repeat until" loop checks the criteria at the end of the loop.

but the sequence of the instructions inside the loop writes m before it gets increased (multiplied by 2).

so,

b) 2, 4, 8, 16, 32, 64, 128, 256

is correct, because at the end m = 256, it gets displayed, then m gets multiplied by 2 (now it is 512). and NOW the loop checks the end criteria (m > 500) and ends the loop.

so, the number 512 never gets displayed. and we are not getting to any larger number anyway.

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.

The complete steps are:

Fetchgets the next instruction.

Decode interprets instruction.

Executecarries out instruction.

Store saves the result of the instruction.

The terms that describe each step of the cycle in a computer's processing are as follows:

Fetch: This step "gets the next instruction." It involves retrieving the next instruction from memory to be executed by the processor.

Decode: This step "interprets the instruction." In this phase, the processor decodes the fetched instruction to understand what operation it needs to perform.

Execute: This step "carries out the instruction." Here, the processor executes the decoded instruction, which could involve performing calculations, data manipulation, or other operations.

Store (also known as Write Back): This step "saves the result of instruction." After the execution phase, if the instruction modified data in memory, this step writes back the results of the executed instruction into the appropriate memory location.

These four steps together make up the basic fetch-decode-execute cycle of a computer's central processing unit (CPU). The cycle is repeated for each instruction the computer processes, enabling it to perform tasks and run programs.

To learn more about central processing units;

brainly.com/question/6282100

#SPJ3

With phased conversion, one or more locations or units/work groups within a location is selected to be converted first as part of a pilot test, and if the system passes the pilot test, then the system is installed at the remaining locations.A. True
B. False

Answers

Answer:

False

Explanation:

Installing a system sequentially at different locations and then perhaps deliberately creating a delay between the first and second installation, this process refers to a phased conversion process.

In stranger things 3 hopper said" to turn back the clock" which is a spoiler for season 4. (Something's gonna reset the clocks and all of what happens will begin again)

Answers

Maybe the upside down can be used as a wormhole of sorts

Completed the given flowchart using the algorithm steps which is given in wrong order. 1.Input time 2.Stop 3.Print "Good morning" 4.Start 5.IF time<12.00 pm

Answers

Answer:

The correct order is "4 1 5 3 2".

Explanation:

In the given question, the flowchart is missing, and its choices were not defined. so, in this question, we define the correct flowchart and correct order.

please find the attachment of the flowchart.

In the flowchart first, we start the process after that, we input the time value and use the if block that checks time value is less then "12:00 pm".

if the given condition is true, it will print the "Good morning" value and stop the program.