help






















































..................................................

Help..................................................
Help..................................................

Answers

Answer 1

Answer:

Image editing software is used to enhance a photograph

CAD helps professionals to organize a collection of data.


Related Questions

which view do you choose if you want to see a thumbnail of each slide in a presentation arranged in a grid?

Answers

The correct response is d. Slide Sorter. You may easily rearrange or divide your slides into sections by dragging and dropping them around the grid-like display of your slides thanks to the slide sorter.

You can see and sort the presentation slides in PowerPoint using the Slide Sorter view. Click the "Slide Sorter" button in the presentation view buttons in the Status Bar to enter the Slide Sorter view. The "Slide Sorter" button in the "Presentation Views" button group on the "View" tab of the Ribbon is another option. The presentation slides can be added to, removed from, and copied using the Slide Sorter view. The visual flow of the presentation is also displayed in PowerPoint's Slide Sorter view. Additionally, you may add and observe a slide transition animation here. All of the presentation slides in PowerPoint's Slide Sorter mode are displayed as thumbnails. The slide's content cannot be changed in this view. However, many of the functions available in PowerPoint's Slide Sorter view are also available in the Normal view's slide thumbnails pane. Click a slide thumbnail in the Slide Sorter window to choose a slide. Click and drag the slide thumbnails in this view, then release them where you want them to be. This will reorder the order of the slides in your presentation. The selected slide opens in Normal View, where you can edit its content, if you double-click a slide thumbnail in PowerPoint's Slide Sorter view or if you choose a slide thumbnail and then press the "Enter" key on your keyboard. In the Slide Sorter window, click the desired slide thumbnail to choose it for deletion. Then, use your keyboard's "Delete" key. Alternatively, you can erase the slide by doing a right-click. then from the pop-up menu, choose the "Delete Slide" option.

Learn more about Slide Sorter here

https://brainly.com/question/16910023

#SPJ4

Which view do you choose if you want to see a thumbnail of each slide in a presentation arranged in a grid?

a. Normal

b. Outline

c. Slide Show

d. Slide Sorter

Different countries in the world have launched their own navigation system why​

Answers

Answer:

China, the European Union, Japan and Russia have their own global or regional navigation systems to rival GPS

Answer: The reason other countries made their own id because they don't trust the U.S the U.S gps listens to you talk and tracks you.

Explanation: Please give brainlist.

Hope this helps!!!!

Which is government departments fund the Global Positioning System
The Global Positioning System is funded by the department of

Answers

Answer:

The department of defense

Explanation:

A step commonly used for Internet vulnerability assessment includes __________, which occurs when the penetration test engine is unleashed at the scheduled time using the planned target list and test selection.

Answers

Complete Question:

A step commonly used for Internet vulnerability assessment includes __________, which occurs when the penetration test engine is unleashed at the scheduled time using the planned target list and test selection.

Group of answer choices

A. scanning

B. subrogation

C. delegation

D. targeting

Answer:

A. Scanning.

Explanation:

A step commonly used for Internet vulnerability assessment includes scanning, which occurs when the penetration test engine is unleashed at the scheduled time using the planned target list and test selection.

Internet vulnerability assessment can be defined as the process of defining, analyzing, measuring, identifying, classification and prioritization of vulnerabilities in network resources used to access the internet. The main purpose of an internet vulnerability assessment is to provide necessary informations or data about the threats being posed to an individual or organization through the use of a scanning program or system such as a network security scanner

Provide at least two examples of Amazon responsibilities under the AWS Shared Responsibility model.

Answers

Under the AWS Shared Responsibility model, Amazon and its customers have specific responsibilities when it comes to security and compliance in the cloud. Amazon is responsible for ensuring the security and availability of its cloud infrastructure, while customers are responsible for securing their own data and applications in the cloud. Here are two examples of Amazon's responsibilities under this model:

1. Infrastructure Security: Amazon is responsible for the security of the physical infrastructure that makes up the AWS cloud, including the data centers, servers, networking, and storage. This includes implementing security controls such as firewalls, access controls, and intrusion detection systems to protect against cyber attacks and other threats. Amazon also conducts regular security audits and assessments to identify vulnerabilities and ensure compliance with industry standards and regulations.

2. Service Availability: Amazon is responsible for ensuring that its cloud services are available and accessible to customers at all times. This includes providing redundant systems and backup power supplies to prevent downtime in the event of a hardware failure or natural disaster. Amazon also monitors its cloud infrastructure 24/7 to identify and resolve any issues that may impact service availability.

In summary, Amazon's responsibilities under the AWS Shared Responsibility model include maintaining the security and availability of its cloud infrastructure, while customers are responsible for securing their own data and applications. By working together, Amazon and its customers can ensure a secure and reliable cloud computing environment.

Learn more about model here:

https://brainly.com/question/30564902

#SPJ11

differentiate between smudge and dodge tool.​

Answers

Answer:

They are the same as the clone tool.

Explanation:

S Points
What phrase describes businesses who develop a positive relationship to
society?
A. Eco-corporations
B. Greening the office
c. Social responsibility
O D. Social behavior
SUBMIT

Answers

Answer:

Option(c) i.e "Social responsibility " is the correct answer.

Explanation:

The main objective of the social responsibility organization or the company  that providing the profit to the society in addition to enhancing the value for the shareholders it gives profitability to the business as well as developed the positive relationship between the society in point of the business .

The social accountability giving the highly prevalent environment  for the clients as well as for the stakeholders for there value management also it leading the environmental sustainability.All the other option is not developed the positive relationship to  the society that's why these are incorrect option.

Answer: Social Responsibility

Explanation: APEX

suppose host a sends two tcp segments back to back to host b over a tcp connection. the first segment has sequence number 200; the second has sequence number 250 and carries 100 bytes of data. (a) how much data is in the first segment? (b) suppose that the first segment is lost but the second segment arrives at b. in the acknowledgment that host b sends to host a, what will be the acknowledgment number?

Answers

There are no data in the first part. Once all bytes up to and including sequence number 200 have been received, the acknowledgment number will be 201.

What effect does a TCP segment with a size of zero have on the sequence number of the following packet that a host sends?

The sequence number of the subsequent packet delivered by the host will be increased by one as a result of a TCP keep-alive section.

Which TCP/IP model layer divides data into packets and reassembles them at the destination?

The network layer, often known as the internet layer, controls traffic flow and routing to make sure that data is transmitted correctly and on schedule.

To know more about bytes visit:-

https://brainly.com/question/12996601

#SPJ1

write a program that concatenates two linked lists of characters. the program should include function concatenate that takes pointers to both lists as arguments and concatenates the second list to the first list reddit

Answers

Here is an example implementation of the concatenate function in C++:

#include <iostream>

struct Node {

   char data;

   Node* next;

};

void concatenate(Node* first, Node* second) {

   Node* current = first;

   while (current->next != nullptr) {

       current = current->next;

   }

   current->next = second;

}

int main() {

   Node* first = new Node{'a', new Node{'b', new Node{'c', nullptr}}};

   Node* second = new Node{'d', new Node{'e', new Node{'f', nullptr}}};

   concatenate(first, second);

   Node* current = first;

   while (current != nullptr) {

       std::cout << current->data << " ";

       current = current->next;

   }

   return 0;

}

The concatenate function in C++

This program creates two linked lists, one containing the characters 'a', 'b', 'c' and the other containing 'd', 'e', 'f'. The concatenate function takes in pointers to the head of both lists and iterates through the first list until it reaches the end. It then sets the next pointer of the last node in the first list to the head of the second list, effectively concatenating the two lists. The program then prints out the concatenated list.

Note: The code above doesn't handle freeing the memory used by the linked list, it will cause a memory leak, it's important to free the memory after you finish using the linked list.

Learn more about the concatenate function in C++ here:

https://brainly.com/question/28272351

#SPJ4

write a program that concatenates two linked lists of characters. the program should include function

Compound conditions require a computer to sense whether multiple conditions are true or false.

True
False

Answers

Answer:

False

Explanation:

You can have multiple conditions in your while and for loops as well as your if statements.

the clock frequencies of common intel cpu's used in laptop and desktop computer systems have not appreciably increased during the last 20 years or so. why is this?

Answers

The clock frequencies of common Intel CPUs used in laptop and desktop computer systems have not appreciably increased during the last 20 years or so due to various technological challenges and limitations in the semiconductor industry.

Intel CPUs are the heart of modern computer systems, responsible for executing instructions and performing computations. Clock frequency is one of the most important specifications of a CPU, representing the number of cycles per second that the CPU can complete. Higher clock frequencies typically result in faster performance and better responsiveness.However, the clock frequency of Intel CPUs has not seen significant increases in the last two decades. The reason for this is that the technology used to manufacture CPUs has reached its physical limits in terms of transistor size and heat dissipation.

As clock frequency increases, more heat is generated, which can cause stability issues and reduce the lifespan of the CPU. Furthermore, as transistor size decreases, quantum effects become more pronounced, making it difficult to control the flow of electrons at high clock speeds.Additionally, Intel has shifted its focus from increasing clock frequency to improving other aspects of CPU performance, such as multi-core processing, power efficiency, and specialized instructions for specific tasks. This has allowed Intel to continue improving CPU performance even without significant increases in clock frequency.

In conclusion, while the clock frequencies of common Intel CPUs used in laptop and desktop computer systems have not increased appreciably during the last 20 years, other improvements have been made to improve performance and efficiency, such as multi-core processing, power efficiency, and specialized instructions for specific tasks. Technological limitations in the semiconductor industry have prevented significant increases in clock frequency, making it difficult to control the flow of electrons at high speeds and generating more heat.

To learn more about computer system:

https://brainly.com/question/14583494

#SPJ11

Upgrading the______ usually speeds up the computer, while adding a(n) ______ will increase the system’s storage capacity. Additional ______ can improve the sound or video quality.

Answers

Upgrading the RAM usually speeds up the computer, while adding a(n) hard drive will increase the system's storage capacity. Additional graphics card can improve the sound or video quality.

What is RAM?

Random-access memory (RAM) is a type of computer memory that may be read and modified in any sequence, and it is commonly used to store working data and machine code.

RAM is an abbreviation for random-access memory, but what exactly does it mean? Your computer RAM is essentially short-term memory where data is stored when needed by the CPU. This is not to be mistaken with long-term data stored on your hard disk, which remains even after your computer has been switched off.

Learn more about RAM:
https://brainly.com/question/13186587
#SPJ1

Write a program that reads the weight of the package and the distance it is to be shipped, and then displays the charges to two decimal points.
Input Validation:
Do not accept values of 0 or less for the weight of the package.
Print "ILLEGAL WEIGHT: BELOW MINIMUM"
Do not accept weights of more than 20 kg (this is the maximum weight the company will ship).
Print "ILLEGAL WEIGHT: ABOVE MAXIMUM"
Do not accept distances of less than 10 miles or more than 3,000 miles. These are the company’s minimum and maximum shipping distances.
Print "ILLEGAL DISTANCE"

Answers

The provided Python program reads the weight and distance of a package, validates the inputs, calculates shipping charges based on predefined rates, and displays the charges to two decimal points if the inputs are within specified limits.

Here's a Python program that reads the weight of the package and the distance it is to be shipped, and then displays the charges to two decimal points.

The program also includes input validation to ensure that the weight and distance entered are within the company's specified limits:

```weight = float(input("Enter the weight of the package (in kg): "))distance = int(input("Enter the distance the package is to be shipped (in miles): "))if weight <= 0:    print("ILLEGAL WEIGHT: BELOW MINIMUM")elif weight > 20:    print("ILLEGAL WEIGHT: ABOVE MAXIMUM")elif distance < 10 or distance > 3000:    print("ILLEGAL DISTANCE")else:    if weight <= 2:        rate = 1.50    elif weight <= 6:        rate = 3.00    elif weight <= 10:        rate = 4.00    else:        rate = 4.75    charges = rate * (distance / 500)    print("The shipping charges are $", format(charges, ".2f"), ".", sep="")```

The program first prompts the user to enter the weight of the package and the distance it is to be shipped. Then it checks if the weight is less than or equal to 0, greater than 20, or within the specified range.

If any of these conditions are true, it prints the appropriate error message. If the weight and distance are both within the specified limits, the program calculates the shipping charges based on the weight and distance using the following rates:

up to 2 kg: $1.50 per 500 milesup to 6 kg: $3.00 per 500 milesup to 10 kg: $4.00 per 500 milesover 10 kg: $4.75 per 500 miles

Finally, the program displays the shipping charges to two decimal points.

Learn more about Python program: brainly.com/question/26497128

#SPJ11

If you clean your camera’s lens incorrectly, what might you damage?

Group of answers:

1. the aperture port
2. the outer coating
3. the inner coating
4. the battery port

Answers

Answer:

2. the outer coating

Answer:

Its number 2 the outer coating

Explanation:

The multiprocessor system which consists of a set of processors that share a common main memory and are under the integrated control of an operating system is a _________ . Select one: a. cluster b. functionally specialized processor c. loosely coupled or distributed multiprocessor d. tightly coupled multiprocessor

Answers

Answer:

D

Explanation:

Tightly coupled multiprocessor

Jerry is learning about cloud storage systems and she is interested in learning about high-speed network solutions. What would you recommend she focus her research on

Answers

Jerry is learning about cloud   storage. she is interested in learning about high-speed network solutions. High-speed network solutions offer cloud storage systems as part of their services to their clients.

So, Jerry should research high-speed network solutions and focus on the should research the bandwidth speed provided by different high-speed network solutions. This is because bandwidth speed determines the speed of data transfer.

Some high-speed network solutions have limited bandwidth speeds that could affect the speed of transfer of data which affects the efficiency of the cloud storage systems offered by the high-speed network Jerry should also research the resilience of different high-speed network solutions.

To know more about bandwidth visit:

https://brainly.com/question/30337864

#SPJ11

Early computer storage in the 1950's used___
thumb drives
CDs
punch cards

Answers

Answer:

punch cards is the answer of this question

Answer:

it's answer is

punch cards

How do you write mathematical expressions that combine variable and literal data

Answers

Variables, literal values (text or integers), and operators specify how the expression's other elements are to be evaluated. Expressions in Miva Script can generally be applied in one of two ways: Add a fresh value.

What connection exists between literals and variables?

Literals are unprocessed data or values that are kept in a constant or variable. Variables can have their values updated and modified since they are changeable. Because constants are immutable, their values can never be updated or changed. Depending on the type of literal employed, literals can be changed or remain unchanged.

What kind of expression has one or more variables?

The concept of algebraic expressions is the use of letters or alphabets to represent numbers without providing their precise values. We learned how to express an unknown value using letters like x, y, and z in the fundamentals of algebra. Here, we refer to these letters as variables.

to know more about mathematical expressions here:

brainly.com/question/28980347

#SPJ1

PLS HURRY!!! Look at the image below!
The choices for the second part are number +1, number, number -1

PLS HURRY!!! Look at the image below!The choices for the second part are number +1, number, number -1

Answers

1. <1

2. -1

Explanation:

When a cellular telephone sends a text message, the cell carrier encodes the text message and transmits the message to the receiving cellular telephone. The encoded text message is the data of the transmission. In addition to transmitting the data, the cell carrier company also stores metadata. The metadata of the text message includes the time the message was sent, the phone number of the sender, and the phone number of the receiver. For which of the following goals would it be more useful to computationally analyze the metadata instead of the data? I. Estimate the number of texts that will be sent next month II. Determine the most frequently used emoji in text messages III. Determine if two phones have been in contact in the last week

Answers

The goal for which it would be more useful to computationally analyze the metadata instead of the data is goal III, which is to determine if two phones have been in contact in the last week.

How to explain the information

This is because the metadata contains information such as the phone numbers of the sender and receiver, as well as the time the message was sent, which can be used to identify whether two phones have been communicating with each other within a certain time frame.

On the other hand, goals I and II require analyzing the actual content of the text messages, which is contained in the data of the transmission.

Learn more about metadata on

https://brainly.com/question/14960489

#SPJ1

list three steps that can be taken to troubleshoot a windows startup issue

Answers

The process for troubleshooting a windows startup issue is: 1. Boot into Safe Mode 2. Perform a System Restore 3.

To troubleshoot a Windows startup issue, you can follow these:

1. Boot into Safe Mode: Restart your computer and press the F8 key (or Shift + F8 for Windows 8/10) during startup to enter Safe Mode. This mode loads a minimal set of drivers and services, allowing you to identify and fix the issue without interference from third-party software or drivers.

2. Perform a System Restore: In Safe Mode, click on the Start menu, type "System Restore" in the search bar, and select it from the list of results. Follow the prompts to restore your system to a previous state, ideally to a point before the startup issue occurred. This can help you undo any recent changes that might have caused the problem.

3. Check for Hardware Issues: Power off your computer, disconnect all peripherals (e.g., USB devices, printers), and then restart the system. If the startup issue is resolved, reconnect each peripheral one at a time, restarting after each connection to identify the problematic device. If the issue persists, open the computer case (if you're comfortable doing so) and check for loose components, such as RAM modules or power connectors.

By following these steps, you can identify and resolve most Windows startup issues.

Learn more about troubleshoot here: https://brainly.com/question/28508198

#SPJ11

Which of the following commands lets you display a label on multiple lines within a cell O Split O Merge & Center o Wrap Text O Format Painter (50 of 50) In the function =SUM(B2:B6), which part of the function is the argument? e SUM O B2 O B6 B2:B6

Answers

The command that lets you display a label on multiple lines within a cell is "option C. Wrap Text."

In the function "=SUM(B2:B6)", the argument of the function is "option D. B2:B6."

1. The "Wrap Text" command in spreadsheet software, such as Microsoft Excel, allows you to fit a label or text within a single cell and display it on multiple lines. By enabling this feature, the text will automatically wrap within the cell boundaries, ensuring that all the content is visible without overflowing into adjacent cells.

2. To apply the "Wrap Text" command, you can select the cell or cells containing the label, right-click, and choose the "Format Cells" option. In the Format Cells dialog box, navigate to the "Alignment" tab and check the "Wrap text" checkbox. Alternatively, you can find the "Wrap Text" button in the toolbar of the spreadsheet software.

3. In Excel, functions are used to perform calculations or operations on specific data ranges or values. The "SUM" function, in this case, calculates the sum of the values within the range B2 to B6.

4. In the function "=SUM(B2:B6)", "SUM" is the function itself, indicating that we want to calculate the sum. "B2:B6" represents the range of cells from B2 to B6, specifying the data to be summed. The function takes this range as its argument and performs the necessary calculation.

The correct question should be:

1. Which of the following commands lets you display a label on multiple lines within a cell

A. Split

B. Merge & Center

C. Wrap Text

D. Format Painter

2. In the function =SUM(B2:B6), which part of the function is the argument?

A. SUM

B. B2

C. B6

D. B2:B6

To learn more about wrap text visit :

https://brainly.com/question/32265831?

#SPJ11

Access the article here.


Please conduct a mini research project on "healthy communication. " You can look it up online or ask others what they think unhealthy and health communication is.


Please synthesize multiple sources and opinions on healthy communication, and demonstrate that you have a good understanding of what it is and what it isn't. Help solve the problem for people who feel, "I communicate in a very unhealthy manner and I just don't know how to change it. " Please share a personal story that relates or helps give a solution to the person's problem of trying to change their communication.


Please use full sentences to complete your thoughts.


HELPP

Answers

Healthy communication is the practice of expressing oneself in a way that is respectful, clear, and effective. It involves understanding another person's point of view, being able to listen and be heard, and being able to express one's own thoughts and feelings in a way that is clear and concise. It is important to remember that healthy communication is not just about the words we use but also about the way we use them. It is about being aware of the body language, tone of voice, and other non-verbal elements that can be just as important in conveying a message as the words themselves.

One of the most important components of healthy communication is understanding the other person's perspective. This can be achieved by asking open-ended questions and really listening to the response. Instead of assuming what the other person is thinking or feeling, it is important to take the time to understand the other person's point of view. Validate the other person's feelings and viewpoints, even if you disagree with them.

In addition to understanding the other person's perspective, it is also important to be aware of your own feelings and thoughts. Knowing what you are feeling and thinking can help you express yourself in a way that is both clear and respectful.

Learn more about Healthy communication:

https://brainly.com/question/21989134

#SPJ4

How did tribes profit most from cattle drives that passed through their land?
A.
by successfully collecting taxes from every drover who used their lands
B.
by buying cattle from ranchers to keep for themselves
C.
by selling cattle that would be taken to Texas ranches
D.
by leasing grazing land to ranchers and drovers from Texas

Answers

The way that the tribes profit most from cattle drives that passed through their land is option D. By leasing grazing land to ranchers and drovers from Texas.

How did Native Americans gain from the long cattle drives?

When Oklahoma became a state in 1907, the reservation system there was essentially abolished. In Indian Territory, cattle were and are the dominant economic driver.

Tolls on moving livestock, exporting their own animals, and leasing their territory for grazing were all sources of income for the tribes.

There were several cattle drives between 1867 and 1893. Cattle drives were conducted to supply the demand for beef in the east and to provide the cattlemen with a means of livelihood after the Civil War when the great cities in the northeast lacked livestock.

Lastly, Abolishing Cattle Drives: Soon after the Civil War, it began, and after the railroads reached Texas, it came to an end.

Learn more about cattle drives from

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

List the four HIPAA Standards and briefly describe their purpose?

Answers

I'm happy to help you with your question about the four HIPAA standards. Here they are along with their purposes:

1. Privacy Rule: This standard aims to protect individuals' medical records and personal health information. It sets the conditions under which healthcare providers and other covered entities can use or disclose a patient's protected health information (PHI).
2. Security Rule: This standard focuses on safeguarding electronic PHI (ePHI) by establishing guidelines for administrative, physical, and technical safeguards. The Security Rule ensures that ePHI is kept secure and confidential, while allowing access to authorized personnel.
3. Transactions and Code Sets Rule: This standard simplifies and standardizes electronic data interchange (EDI) in healthcare transactions, such as claims, enrollment, eligibility, and payment information. By adopting a common set of code sets and formats, it streamlines processes and reduces administrative costs.
4. Unique Identifiers Rule: This standard assigns unique identifiers to healthcare providers (National Provider Identifier, or NPI), health plans (Health Plan Identifier, or HPID), and other entities to facilitate efficient and accurate electronic transactions. These identifiers help maintain consistency and accuracy in healthcare data exchange.I hope this answers your question! Let me know if you need any further clarification.

Learn more about safeguarding here

https://brainly.in/question/8965643

#SPJ11

write a statement that calls a method named sendsignal. there are no arguments for this method.assume that sendsignal is defined in the same class that calls it.

Answers

A statement that calls a method named sends signal. There are no arguments for this method. Assuming the send signal is defined in the same class that calls it is sendsignal();.

What is coding?

We connect with computers through coding, often known as computer programming. Coding is similar to writing a set of instructions because it instructs a machine on what to do.

You can instruct computers what to do or how to behave much more quickly by learning to write code.

Therefore, assuming send signal is declared in the same class as the caller, the statement is sendsignal();.

To learn more about coding, refer to the link:

https://brainly.com/question/28903791

#SPJ1

To which of these options does the style in Word apply? Select three options.

Answers

More information???

Answer:

lists

tables

headings

Explanation:

Which of the following is NOT a method for applying the SDLC model?
ITIL
Lean
IPO
Agile

Answers

Answer:

IPO is not a mehod for applying the SDLC .

A programmer used Scratch to create a program with three frog sprites. If a
user clicks any of the frogs, they make a "boing" sound and glide to a random
position in the stage panel.
In this scenario, what are two examples of an algorithm?
A. The combination of panels that compose the Scratch interface
B. The code that instructs the computer to move the sprite after it is
clicked
C. The user's decision about which frog to click
D. The code that generates a random location each time.

Answers

Answer:

D. The code that generates a random location each time.

Explanation:

An algorithm is a process or set of rules to be followed in calculations or other problem-solving operations, especially by a computer.

An algorithm is needed to get a random location.

The code that instructs the computer to move the sprite after it is clicked and the code that generates a random location each time are examples of an algorithm in this scenario. The correct options are B and D.

What is algorithm?

A set of instructions or rules that must be followed in order to complete a task or solve a problem is referred to as an algorithm.

The programmer in this scenario used Scratch to create a programme with three frog sprites that respond to user input by making a "boing" sound.

In this scenario, the combination of panels that comprise the Scratch interface and the user's decision about which frog to click are not examples of algorithms.

The panels that make up the Scratch interface are part of the programming environment, but they have no effect on the program's behaviour.

Similarly, the user's choice of which frog to click is a user input, but it does not form part of the algorithm that governs the program's behaviour.

Thus, the correct options are B and D.

For more details regarding algorithm, visit:

https://brainly.com/question/22984934

#SPJ7

An apple cake recipe calls for 454 grams of apples and 50 grams of raisins. How many kilograms of fruit are needed to make 12 cakes?

Answers

Answer:

9.08

Explanation:

Because 454 divided by 50 is 9.08

Other Questions
WILL GIVE BRAINLIEST 2x-y=-3 write im slope-intercept form pls step by step or no brainliest The primary transcript is ______ to the dna template strand. complementary antiparallel identical Why do we obserbe that a rich person is healthier than a poorperson in general? Compare and contrast the two social classes. Name the property shown by the statement. (5 + m) + n = 5+ (m + n) Scenario #1Lt. Wombley puts a poster of a thinly clad woman on a wall in his office that is not visible to anyone passing by. In fact, it is only visible if someone entered the office and looked behind them. Seldom does anyone see it since he leaves his door open, and the poster is on the hidden side of the door.Is this an example of sexual harassment? Explain/support your response. Sarah graphed the solution to the inequality StartAbsoluteValue f 3 EndAbsoluteValue less-than 9 on the number line. A number line going from negative 14 to positive 10. Open circles are at negative 12 and positive 6. Everything between the points is shaded. Which inequality statement can be used to help determine if the graph is correct? When f = 0, StartAbsoluteValue 0 3 EndAbsoluteValue less-than 9, which is true because 3 is less than 9. When f = negative 12, StartAbsoluteValue negative 12 3 EndAbsoluteValue less-than 9, which is true because 9 is equal to 9. When f = 10, StartAbsoluteValue 10 3 EndAbsoluteValue less-than 9, which is true because 9 is greater than 13. When f = negative 14, StartAbsoluteValue negative 14 3 EndAbsoluteValue less-than 9, which is true because 9 is greater than 11. Alice is allergic to latex, so wearing latex gloves causes. Can yall help me pls Bryan started to evaluate a decimal expression.2.5(42 3.2 10(0.2) + 3) 5.22.5(16 3.2 10(0.2) + 3) 5.2What will be the next step? how much time passed between the first big eruption and the climactic eruption of june 15? and how long did these eruptions continue What American victory helped build morale during the harsh winter of 1776?A.The Battle of Long IslandB.The Battles of Trenton and PrincetonC.The capture of PhiladelphiaD.The Battle of Saratoga Did the native people have good reason to distrust Columbus and his men? These marbles are placed in a bag and two of them are randomly drawn what is the probability of drawing two yellow marbels if the frist one is placed back in the bag before the second draw in a ____ organization employees practice knowledge management by continually acquiring and sharing new knowledge and are willing to apply that knowledge in making decisions or performing their work What is the volume, in cubic in, of a cylinder with a height of 20in and a base radius of 2in, to the nearest tenths place? Arun said to me ,'' where is my bag? (Reported speech direct to indirect speech) Gather data: experiment with a variety of initial concentrations of no2 and n2o4. for each set of initial concentrations, use the gizmo to determine the equilibrium concentrations of each substance. in the last column, find kc for that trial. run three trials for each set of initial conditions. For questions 5-6, use the graph to find the rate of change of the function. SHOW ALL WORK. " What we obtain is too cheap, we esteem too lightly: it is dearness only that gives every thing its value. Heaven knows how to put a proper price upon its goods; and it would be strange indeed if so celestial an article as freedom should not be highly rated." what does this quote mean? What is mAnglePHJ?100120140160