Dawn is trying to find out how much weight she can push across the room. She is really trying to find her __________. A. flexibility B. muscular endurance C. cardiovascular fitness D. muscular strength

Answers

Answer 1

The correct answer is d. muscular strength.

Explanation :

The maximal force a muscle can create when it contracts is referred to as muscular strength. When compared to someone with lower physical strength, someone with better muscular strength can lift heavier weights. Lifting progressively larger weights over time and eating a diet rich in protein-based foods can help a person's physical strength gradually grow.

I hope this helps. Please mark "Brainliest" if you can.


Related Questions

Whats is a better game?

Answers

Answer:

The first two are the best ones I see here, because I play them. Not sure how else to say that. Please make sure to also use brainly for school, though. Thanks!

okay this is a odd question but what is this symbol called?
< > what are these called lol

Answers

Answer: greater then or less than lol

Explanation: I learned it in elementary-

Explanation:

the one that "eats" the number means that one is greater.

greater than and less than.

hope this helps !

How can you get to the Excel Function Reference information? Check all that apply.

Answers

Answer:

Click the cell in which you want to enter the formula.

In the formula bar. , type = (equal sign).

Do one of the following, select the cell that contains the value you want or type its cell reference. ...

Press Enter.

Explanation:

Answer:

Help tab

F1

searching in the tell me bar

5.16 *zyLab: Hello IDE The goal of this problem is learn how to use Eclipse or IntelliJ. Submit the source code files (.java) below. Make sure your source files are encoded in UTF-8. Some strange compiler errors are due to the text encoding not being correct. Complete the following: In your chosen IDE, create a new project. You can name the project anything you like, we recommend "M5". Create a new class file, titled HelloIDE (which will create the file HelloIDE.java). Write a main method in this class that prompts a user for their name, and then replies with "Hello, ___!" filling in the blank with the typed in name, trimmed. Otherwise, if the string is empty, or just contains only whitespace, or if no input is given, output "Hello, stranger!". Example input/output for input "Mark":

Answers

Answer:

import java.util.Scanner;

public class HelloIDE

{

public static void main(String[] args) {

    Scanner input = new Scanner(System.in);

   

 System.out.print("Enter your name: ");

 String name = input.nextLine();

 

 name = name.trim();

 

 if(name.equals(""))

     name = "stranger";

     

 System.out.println("Hello, " + name + "!");

}

}

Explanation:

import the Scanner class to be able to get input from the user

Create an object of the Scanner class called input

Ask the user to enter the name and set it to the name

Trim the name using trim() method, removes the whitespaces from the string

Check the name. If name is equal to "", set the name as stranger. This way if the name is empty, or just contains whitespaces or if name is not given, name will be set as stranger.

Print the name in required format

Discuss how the use of standard web component layouts and templates influences the visual design of a web page. In your opinion, do these approaches limit creativity and originality in web page design? Support your response by suggesting contexts in which using a standard layout or template may be especially helpful or unhelpful.

Answers

Answer: The standard web component layouts and templates makes the web page seem like many others but could also make it easier for users to interact and use the web page without much trouble. The approaches do limit creativity and originality in web page design but its better to have an easy to use web page that can still look good rather than something that is confusing for the users.

Explanation:

Standard web component layouts and templates make the website look generic, but they may also make it simpler for visitors to engage with and navigate the website.

What is web component?

A group of functions known as Web Components offer a common component model for the Web, enabling the encapsulation and interchange of individual HTML components.

A collection of technologies called Web Components enables you to develop reusable bespoke elements for use in web projects that have their functionality isolated from the rest of your code.

Although standard web component layouts and templates give the website a basic appearance, they may also make it easier for visitors to interact with and navigate the site.

The methods do place restrictions on uniqueness and creativity in web page design, but it is preferable to create a web page that is simple for users to navigate while still looking nice.

Thus, the use of standard web component layouts and templates influences the visual design of a web page.

For more details regarding web components, visit:

https://brainly.com/question/21848424

#SPJ2

how do artificial intelligence works?

Answers

Computers and Technology

[tex]\huge\purple{——————————}[/tex]

[tex] \large \bold{QUESTION:}[/tex]

How do artificial intelligence works?

[tex] \\ [/tex]

[tex] \large \bold{ANSWER:}[/tex]

To imitate human intelligence, artificial intelligence employs machine learning. Because the computer must learn how to react to certain activities, it creates a propensity model using algorithms and previous data. Following that, propensity models will begin to make predictions.

[tex]\huge\purple{——————————}[/tex]

#CarryOnLearning

What can you create best in Word Online?

Animation
Graph
Newsletter
Spreadsheet

Answers

Answer:

The correct answer is Newsletter

Explanation:

You can't draw on Word so that rules out animation. You can make graphs but its incredibly complicated and same goes with spreadsheets. That just leaves newsletter which is just typing up an essay or a story.

Answer:

Newsletter

Explanation:

How many times would the following loop iterate?
Set k = 1
While k < 5
Display k
Set k = k + 1
End While

Answers

Answer:

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

Explanation:

The code is :

Set k = 1

While k < 5

Display k

Set k = k + 1

End While

this is a while loop, that will iterate 4 times and display the body of loop.  and at the fifth iteration, the loop condition does not meet the condition and the loop will get terminated.

Write a complete Java program that: Prompts an employee to enter the number of hours that they have worked in a given week and stores their response in a variable named hoursWork - Only whole hours are tallied, no partial hours Prompts the employee to enter their hourly wage in dollars and stores their response in a variable named payRate Computes the employee's weekly pay check under the following rules: All hours up to and including 40, are paid at exactly the employee's hourly wage - regular pay Any / All remaining hours, are paid at one and one half times the employee's hourly wage - overtime pay Displays to the screen a brief report including: The value of all of each of the user's inputs The amount of regular pay earned The amount of overtime pay earned You can find two separate sample runs of such a program in the unnamed box below the editor window.

Answers

Answer:

The solution is given in the explanation section

See comments for detailed explanation of each step

Explanation:

import java.util.Scanner;

public class QuestionOne{

   public static void main(String[] args) {

       Scanner in = new Scanner(System.in);

       //Prompt User for input

       System.out.println("Enter Number of Hours worked this week");

       //Receive the value for number of hours

       int hoursWork = in.nextInt();

       //Prompt user for hourly wage rate

       System.out.println("Enter your hourly rate");

       double payRate = in.nextDouble();

       //compute pay

       double regularPay =0;

       //Calculate pay When there is no overtime

       if(hoursWork <= 40){

          regularPay = hoursWork*payRate;

           System.out.println("You worked for a total of "+ hoursWork+" at "+payRate

                   +" per hour, Your total pay is "+ regularPay);

       }

       // Calculate overtime pay

       //Obtain overtime by subtracting 40 from the total hours

       else{

           int extraHours = hoursWork-40;

           double overTimePay = extraHours*(1.5*payRate);

           regularPay = 40*payRate;

           System.out.println("You worked for "+hoursWork+" your regular pay is "+ regularPay+

                   " and your overtime pay is "+overTimePay);

       }

   }

}

Assignment 5B : Maze Game! 2D Arrays can be used to store and represent information
about video game levels or boards. You will use this knowledge to make an interactive game where players attempt to move through a maze. You will start by creating a pre-defined 2D array with the following values:
{"_","X","_","X","X"}
{"_","X","_","X","W"}
{"_","_","_","X","_"}
{"X","X","_","_","_"}
{"_","_","_","X","X"}
You will then set the player (represented by "O") at index 0, 0 of the array, the top-left
corner of the maze. You will use a loop to repeatedly prompt the user to enter a
direction ("Left", "Right", "Up", or "Down"). Based on these directions, you will try to
move the player.
• If the location is valid (represented by "_"), you will move the player there
• If the location is out of bounds (e.g. index 0, -1) or the command is invalid, you
will inform the player and prompt them to enter another direction
• If the location is a wall (represented by "X"), you will tell the user they hit a wall
and the game is over.
If the player did not lose, you will print out the current state of the map and ask them for
a new direction. You will keep doing this until they lose or they reach the end
(represented by the "W").
Sample Output #1:
[Maze Game]
O.X._.X.X.
_.X._.X.W.
_._._.X._.
X.X._._._.
_._._.X.X.
Which direction do you want to move? Up
You can't move there - it's out of bounds!
Which direction do you want to move? Down
_.X._.X.X.
O.X._.X.W.
_._._.X._.
X.X._._._.
_._._.X.X.
Which direction do you want to move? Down
_.X._.X.X.
_.X._.X.W.

O._._.X._.
X.X._._._.
_._._.X.X.
Which direction do you want to move? Down
You hit a wall - Game Over!
Sample Output #2:
[Maze Game]
O.X._.X.X.
_.X._.X.W.
_._._.X._.
X.X._._._.
_._._.X.X.
Which direction do you want to move? Eleventy
That's not a valid direction!
Which direction do you want to move? Down
_.X._.X.X.
O.X._.X.W.
_._._.X._.
X.X._._._.
_._._.X.X.
Which direction do you want to move? Down
_.X._.X.X.
_.X._.X.W.
O._._.X._.
X.X._._._.
_._._.X.X.
Which direction do you want to move? Right
_.X._.X.X.
_.X._.X.W.
_.O._.X._.
X.X._._._.
_._._.X.X.
Which direction do you want to move? Right
//Skipping ahead (This line is not part of the output)
_.X._.X.X.
_.X._.X.W.
_._._.X.O.
X.X._._._.
_._._.X.X.
Which direction do you want to move? Up
You win!

Answers

Answer:

yes

Explanation:

Complete the sentence. Privacy of means that our data should not be automatically available to others.

Answers

The term Privacy means that our data should not be automatically available to others and there should be a measure of restriction for people in accessing it.

What is privacy of data?

Data privacy is known to be the right of  people to have control over how their personal information as to when or if it can be collected or used.

Data protection is known to be part of privacy. This is due to the fact that protecting user data and sensitive information is a initial step to keeping user data private.

Learn more about Privacy of means from

https://brainly.com/question/1189272

Describe the big data life cycle

Answers

Answer:

Big data lifecycle consists of four phases: data collection, data storage, data analysis, and knowledge creation. Data collection phase consists of collecting data from different sources. In this phase, it is important to collect data from trusted data sources.

Explanation:

mark me as brainliest please

Answer:

Big data lifecycle consists of four phases: data collection, data storage, data analysis, and knowledge creation. Data collection phase consists of collecting data from different sources. In this phase, it is important to collect data from trusted data sources.

Explanation:

In order to share resources, Windows devices must be part of

Answers

In order to share resources, Windows devices must be part of a workgroup called WORKGROUP.

Are resources shared in a network?

In computing, we often shared resource, or network. This is known to be when a computer resource is said to be made available to people from one host to other hosts and this is usually done on a computer network.

Note that Advanced Sharing is said to be a way of sharing resources in Windows as it helps one to have a detailed customization of the way one what to do the sharing.

Learn more about  Windows devices from

https://brainly.com/question/26420125

What is the key difference between UDP and TCP protocols in TCP/IP reference model?

Answers

Answer:

TCP is a connection-oriented protocol, whereas UDP is a connectionless protocol. The speed for TCP is slower while the speed of UDP is faster.

Answer:

TCP is a connection oriented protocol.

UDP is a connectionless protocol.

Explanation:

PLEASE MARK ME AS BRAINLIEST

HAVE A NICE DAY :)

What are programs that organize, analyze, and graph numeric data such as budgets and financial reports.

Answers

Spreadsheets organize, analyze, and graph numeric data such as budgets and financial reports. They are widely used by nearly every profession. Microsoft Excel is the most widely used spreadsheet program.

what is Google search​

Answers

Answer:

a web search engine developed by Google LLC.

Explanation:

Answer:

Google Search, or simply Google, is a web search engine developed by Google LLC.The main purpose of Google Search is to search for text in publicly accessible documents offered by web servers, as opposed to other data, such as images or data contained in databases.Google has a large index of keywords that help determine search results. What sets Google apart is how it ranks its results, which determines the order Google displays results on its search engine results pages. Google uses a trademarked algorithm called PageRank, which assigns each Web page a relevancy score.

Explanation:

Write a program with two inputs, current price and last month's price (both integers). Then, output a summary listing the price, the change since last month, and the estimated monthly mortgage computed as (currentPrice * 0.045) / 12.

Ex: If the input is 200000 210000, the output is:

This house is $200000. The change is $-10000 since last month.
The estimated monthly mortgage is $750.0.

Answers

Answer:

here is the answer

Explanation:

current_price = int(input("Enter the current price: "))

last_months_price = int(input("Enter the last month's price: "))

print("Current price is: " + str(current_price) + ", Last month's price was: " + str(last_months_price))

print("The change since last month is: " + str(current_price - last_months_price))

print("The estimated monthly mortgage is: " + str(current_price * 0.051))

Get the inputs for the current price and last month's price

Print the prices

Calculate and print the change, current_price - last_months_price, since last month

Calculate, using given formula, and print the estimated monthly mortgage

Enter("Enter the current price: ") current price = int, enter("Enter the last month's price: ") last months price = int.

What is Program?

The price last month was: " + str(last months price) and the current price is: " + str(current price) + ".

print("The difference from the previous month is: " + str(current price - last months price)). print("The approximate mortgage payment is: " + str(current price * 0.051))

Obtain the inputs for the price today and the price last month.

Therefore, Enter("Enter the current price: ") current price = int, enter("Enter the last month's price: ") last months price = int.

To learn more about program, refer to the link:

https://brainly.com/question/3224396

#SPJ2

Python programmers use the Else statement to run code
O when all the conditions in the preceding If and Elif statements evaluate as False.
when the first condition evaluates as True and the second condition evaluates as False.
when the code needs to be executed every time the program is run.
when the code needs to be executed for conditions that evaluate as True.

Answers

An else statement runs when all the conditions in the preceding if and elif statements evaluate as False.

Python programmers use the Else statement to run code when all the conditions in the preceding If and Elif statements evaluate as False.

What is an else statement in Python?

An else statement is known to be a kind of computer statement that is made up of  block of code that are often used to carry out the if conditional expression in the if statement so as to be able to take it to 0 or a FALSE value.

Conclusively, note that the else statement is said to be a statement that is optional in nature and as such, Python programmers use the Else statement to run code when all the conditions in the preceding If and Elif statements evaluate as False.

Learn more about Python programmers  from

https://brainly.com/question/13723557

#SPJ2

what are the five generation of computer hardware​

Answers

Answer:

First Generation: Vacuum Tubes.

Second Generation: Transistors.

Third Generation: Integrated Circuits.

Fourth Generation: Microprocessors.

Fifth Generation: Artificial Intelligence.

Which statement best describes which options should be used when printing envelopes?
A.)the address should always be filled out and the return address and postage will demand on the situation.
B.) The address and return address should always be filled out in the postage will depend on the situation.
C.) The return address should always be filled out in the address and postage will depend on the situation.
D.) The postage should always be selected in the return address and address will depend on the situation.

Answers

A or D I’m not too sure tbh but good luck

Answer:

B

Explanation:

Write an application that allows a user to enter a filename and an integer representing a file position. Assume that the file is in the same folder as your executing program. Access the requested position within the file, and display the next 10 characters there.

Answers

The program is an illustration of file manipulations, where files are accessed, read and modified

The main program

The program written in Python, where comments are used to explain each action is as follows;

#This gets the file name

fname = input("Enter file name: ")

#This gets an integer value

num = int(input("Integer: "))

#This opens the file

file = open(fname, 'r')

#This initializes the number of characters to 0

count = 0

#This begins an iteration

while 1:

# This prints each character

print(file.read(1))

#This increases the number of characters printed by 1

count+=1

#When 10 characters are printed

if count == 10:

    #This closes the iteration

 break

#This closes the file

file.close()

Read more about file manipulations at:

https://brainly.com/question/16397886

Observation and screening data should not influence curriculum development true or false?

Answers

Answer:true

Explanation: we cant rely on computers

The given statement about the importance of observation and screening in curriculum development is false.

What is curriculum development?

Curriculum development is given as the process of development of the systematic process of learning for the students. The process of curriculum development is comprised of the steps that evaluate the development of the students.

Observation and screening play an important role in the development of the curriculum as is signifies the development. Thus, the given statement is false.

Learn more about curriculum development, here;

https://brainly.com/question/10686364

#SPJ2

_______________involves engineers building up a 3D geometry piece by piece.

2D sketches turn into 3D features, with constraints and relations duly applied to fit the designer’s intent.

Answers

Answer:

Parametric design involves engineers building up a 3D geometry piece by piece. 2D sketches turn into 3D features, with constraints and relations duly applied to fit the designer's intent.

Explanation:

Hope this helps

what is the extension of excel worksheet​

Answers

Answer:

Excel file formats

Format Extension

Excel Workbook .xlsx

Excel Macro-Enabled Workbook (code) .xlsm

Excel Binary Workbook .xlsb

Template .xltx

Find 10 real world challenges and their corresponding solutions

Answers

Answer:

Climate Change - Save energy at home, Walk, cycle or take public transport

Health Care - Focus on Patient Engagement.

Violence - Take all violence and abuse seriously.

Homelessness - A Coordinated Approach. To end homelessness, a community-wide coordinated approach to delivering services, housing, and programs is needed

Food Insecurity - Reduce Food Waste

Education Problem - Adoption of technology. Effective use of technological tools in teaching has many benefits.

Pollution- Reduce the number of trips you take in your car and reduce or eliminate fireplace and wood stove use.

Unemployment - Change in industrial technique.

Government Corruption - expose corrupt activities and risks that may otherwise remain hidden.

Malnourishment & Hunger - Food Donations, transitioning, and urban Farming

Explanation:

Which mynav module serves as the source for sales and delivery content, assets, and internet and intellectual property across industries?

Answers

Accenture's myNav is the mynav module serves as the source for sales and delivery content, assets, and internet and intellectual property across industries.

What are myNav modules?

myNav is a tool that is used by companies so as to manage the human, technology and also some other dimensions of cloud services in business.

The Accenture's myNav is known to be the right tool for the above platform as it on that can help the firm and the people to choose end-to-end cloud solutions.

Learn more about  Accenture from

https://brainly.com/question/24918185

Which of these is a quicker way to add onto the value previously held by the variable “a” in in Python? A. a == a + 20 B. a += 20 C. a + 20 D. a/20

Answers

Answer:

b

Explanation:

B. a += 20 exists a quicker way to add onto the value formerly carried by the variable “a” in Python.

What is Python?

Python exists as a high-level, interpreted, general-purpose programming language. Its design philosophy highlights code readability with the use of substantial indentation. Python exists dynamically typed and garbage-collected.

Python exists as a computer programming language often utilized to build websites and software, automate tasks, and perform data analysis. Python exists as a general-purpose language, meaning it can be utilized to create a variety of various programs and isn't specialized for any distinctive problems.

A Python variable exists as a symbolic name that exists as a reference or pointer to an object. Once an object exists allocated to a variable, you can direct it to the object by that name.

Hence, B. a += 20 exists a quicker way to add onto the value formerly carried by the variable “a” in Python.

To learn more about Python refer to:

https://brainly.com/question/26497128

#SPJ2

What can amber do to make sure no one else can access her document?

Answers

To make sure that no one else can access her document, Amber can  do the following

Use strong passwordsEncrypt the document

What is the document about?

The use of passwords that are challenging to speculate or break. To create a strong password, it is advisable to use a combination of capital and lowercase letters, as well as numbers and special symbols.

Lastly, Secure the document via encryption in order to prevent any unauthorized access. The majority of word processing software includes encryption functionalities that enable the encryption and password safeguarding of documents.

Learn more about Encrypt  from

https://brainly.com/question/20709892

#SPJ1

List four useful spreadsheet functions and explain what they do.

Answers

Answer:

SUM, AVERAGE, MAX,MIN

Explanation:

Sum: The SUM function is categorized under Excel Math and Trigonometry functions. ... The function will sum up cells that are supplied as multiple arguments. It is the most popular and widely used function in Excel. SUM helps users perform a quick summation of specified cells in MS Excel.

Average: The AVERAGE function in Excel does exactly what you think it should. It computes the mathematical average of a set of numbers. In other words, it adds up a set of numbers and then divides the sum by how many numbers are being averaged.

Max: he MAX function will count numbers but ignore empty cells, text, the logical values TRUE and FALSE, and text values. In financial analysis, MAX can be useful in calculating the highest score, the fastest time, the highest expense or revenue amount, etc.

Min: will return the minimum value in a given list of arguments. From a given set of numeric values, it will return the smallest value. Unlike the MINA function, the MIN function ignores numbers, text, and logical values TRUE and FALSE and text values. In financial modeling.

Why is computer called diligent machine? ​

Answers

Computer is called diligent machine because it can perform the task repeatedly without loosing its speed and accuracy for a long time.

[tex]\huge\bold\green{Answer:-}[/tex]

Diligence: - It is a characteristic of computer. Computers can work for many hours continuously without taking any rest and without decreasing its speed, accuracy and efficiency. It is free from tiredness,lack of concentration, fatigue etc.2)Versatile: -Computer is a versatile machine which can do varieties of task such as simple calculation to a complex and logical operation. It is used in various fields for various purposes.

Computer are persistent and power to do work for hours without tiredness and fatigue with same level of accuracy. That is why Computers are called diligent.

ʜᴏᴘᴇ ɪᴛ ʜᴇʟᴘꜱ❤
Other Questions
". We therefore formulate, and for ourselves adopt the following pledge, asking our sisters and brothers of a common danger and a common hope, to make common cause with us, in working its reasonable and helpful precepts [principles] into the practice of everyday life. I hereby solemnly promise, God helping me, to abstain from all distilled, fermented and malt liquors, including wine, beer and cicer, and to employ all proper means to discourage the use of and traffic in the same. "Source: National Womans Christian Temperance Union, 1908 (adapted)7. According to this passage, those who adopted this pledge believed thatreligion had no place in national politicsCongress should repeal Prohibitionalcohol consumption was damaging to societyonly the government can solve social problems8. Those taking this pledge most likely supportedThe ratification of the 18th amendmentThe ratification of the 21st amendmentThe secession of South CarolinaThe New Deal Trish states that the initial factors of 48 do not affect the prime factorization. Explain why Trish is correct. What is another name for k in algebra (3 +20) (5 16)Find x Why were slaves revolts so dangerous for the slaves who rebelled factors affecting high population density of countries The United States used dollars diplomacy to Read this excerpt from The Miracle Worker Act 3.ANNIE [PRESENTLY]: I taught her one thing, no. Dont do this, dont do thatKELLER: Its more than all of us could, in all the years weANNIE: I wanted to teach her what language is. I wanted to teach her yes.KELLER: You will have time.ANNIE: I dont know how. I know without it to do nothing but obey isno gift, obedience without understanding is ablindness, too. Is that all Ive wished on her?KELLER [GENTLY]: No, noANNIE: Maybe.Based on the dialogue, which statement best describes Annie?She is not satisfied with what she has taught Helen.She is convinced that Helen will be a success.She is proud of the vocabulary Helen is learning.She is concerned that Helens disobedience will return. solve for xneed help asap pls will give brainliest Sunspot Beverages, Ltd., of Fiji uses the FIFO method in its process costing system. It makes blended tropical fruit drinks in two stages. Fruit juices are extracted from fresh fruits and then blended in the Blending Department. The blended juices are then bottled and packed for shipping in the Bottling Department. The following information pertains to the operations of the Blending Department for June. Percent Completed Units Materials Conversion Work in process, beginning 20,000 100 % 75 % Started into production 180,000 Completed and transferred out 160,000 Work in process, ending 40,000 100 % 25 % Materials Conversion Work in process, beginning $ 25,200 $ 24,800 Cost added during June $ 334,800 $ 238,700 Required: 1. Compute the Blending Department's equivalent units of production for materials and conversion for June. 2. Compute the Blending Department's cost per equivalent unit for materials and conversion for June. 3. Calculate the Blending Department's cost of ending work in process inventory for materials, conversion, and in total for June. 4. Calculate the Blending Department's cost of units transferred out to the next department for materials, conversion, and in total for June. 5. Prepare a cost reconciliation report for the Blending Department for June. 100 POINTShow much money would we have if we did only interest on this account in 11 years When kolton starts college? A 3,000 kg car rests on rough horizontal ground. A rope is attached to the car and is pulled with a force of 11,000N to the left. As a result, the car accelerates at 3m/s2. The coefficient of sliding friction between the car and the ground is _____ (round to the nearest hundredth) Can anyone help with my homework it would be greatly appreciated. 19. Mon pre(aimer) cerestaurant.20. Dans son travail, ma mre(vendre) des voitures.21. Mon frre(gagner) souvent. Ilne(perdre) jamais.22. Si tu(manger) beaucoup, tu(grossir).23. Je(rpondre) bien en classeparce que je(tre)intelligente! I need them now!! Please help! Find the distance from the origin to the graph of 7x + 9y + 11 = 0a.0.96b.0.98c.0.97d.0.99 Discuss the reasons for the United States Constitutions, its origin, development, and ratification. a digital multimeter is set to read dc volts on the 4 volt scale the meter leads are connected to a 12 volt battery what will the display read PLEASE HELP How do algae blooms destroy aquatic life?depleting oxygen needed by organismsby raising the water temperatureby getting into municipal water suppliesby giving off toxins that kill life Question 8 of 10Which describes the money that a business makes when it sells goods orservices for more than it spent on the goods and services?A. Cost B. RevenueC. LossD. ProfitOSUBMIT A garden contains 135 flowers, each of which is either red or orange. There are 50 orange flowers. If R represents the number of red flowers in the garden, what equation could you use to find the value of R?