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 1

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);

       }

   }

}


Related Questions

Write a Python program that translates a binary number of n bits to a decimal number. Your program should first ask the user the length of the binary number (how many bits). Using that information, ask the user to provide each bit from lowest to highest. Once the user has entered all the bit values for the binary number, report back the decimal value. Hint: You should use the mechanism to convert binary to decimal in earlier lectures. Note: Your program should not use any functions or methods from any library.

Answers

Answer:

Follows are the code to this question:

n= int(input("please enter number of bits, which want to convert for binary to decimal numbers: "))

p= 1#defining variable p for calculate power

d= 0#defining variable d for calculate decimal value

for i in range(n):#defining for loop for input bits value

   b= int(input("Enter the bit value from lowest to highest: "))#input value in b

   if b==1:#defining if block that check input is 1 value

       d=d+p#calculating decimal value

   p=p* 2#calculating power

print("The converted decimal number is:",d)#print value

Output:

please find the attached file.

Explanation:

In the above-given code, n variable is defined, which takes the number of bits value which you want to convert into a decimal value.

In the next step, "d and p" variable is defined that calculates the power and decimal number and store its value respectively, in this step, a for loop is used that uses the "b" variable for inputs bits value into lowest to the highest form, and use the if block.

In this block, it checks if the input value is one then it calculates its power and store its value into the "d" variable and use the print method to print its value.  

Which of the following is a true statement?


New employees and/or clients are not concerned with the details of an email; they focus on the deal.


Business emails can convey a negative tone as long as it is supported by a valid reason and sufficient data.


Business emails should always be written using a professional tone.


It is acceptable if proper punctuation, spelling, and capitalization are not used all the time.

Answers

Answer:

4

Explanation:

it's unacceptable, proper punctuation, spelling and capitalization shud be used where possible

Select the correct answer.
Dr. Samuel is holding a discussion on the relevance and requirement of Intellectual Property rights. Which point will he emphasize while
explaining the influence of IPR on Individual creations?
OA. IPR increases the number of copyright infringement lawsults.
OB. IPR promotes growth in the fields of art and science.
OC.
IPR increases the number of works that get published.
OD. IPR promotes competition between nations in the number of inventions created.
O E.
IPR describe regulations for different entities that are eligible for copyright
Reset
Next
entum. All rights reserved,

Answers

The right point to emphasize while explaining the influence of IPR on Individual creations is that IPR describe regulations for different entities that are eligible for copyright.

What are the intellectual property rights?

The Intellectual property rights are known to be the rights that are given to people over the development of their minds.

Note that these rights are often give to the creator as a kind of exclusive right over the use of his or her product or services for a specific amount of time.

Learn more about Intellectual Property rights from

https://brainly.com/question/1083623

Answer:

IPR promotes growth in the fields of art and science

Explanation:

..................... is a group of related information stored in the computer​

Answers

Answer:

Yes, that's true, but only if you save the information somewhere. It should be stored in a folder for best recognition. In terms of databases, you want to create a table, give it a creative name, and then store your info in columns.

Hope this helps!If it does, give thanks!

For this assignment, you will create a file, write information to the file, retrieve information from that file, and do calculations of the information from the file.

Make sure to comment code and use functions to break the problem up into manageable pieces.

Assignments
1. Open a Numbers.txt file. Write the numbers from 0 to 100 to the file.
2. Read the file Numbers.txt and find the sum, average, and median of all the numbers.
3. Output the results to the screen in a user-friendly format.
4. Make sure to ask the user for all the paths.

**C++ ONLY**

Answers

Answer:

Why only c bro

Suppose Alice, Bob, and Carol want to use secret key technology to authenticate each other. If they all used the same secret key K, then Bob could impersonate Carol to Alicia (actually any of three can impersonate the other to the third). Suppose instead that each had their own secret key, so Alice uses KA, Bob uses KB, and Carol uses KC. This means that each one, to prove his/her identity, responds to a challenge with a function of his/her secret key and the challenge. Is this more secure than having them all use the same secret key K? (Hint: what does Alice need to know in order to verify Carol’s answer to Alice’s challenge?)

Answers

Answer:

No. This is not more secure.

Explanation:

this is not more secure than having all of Carol, bob and Alice having the same key.

alice would be able to know Carol's key for her to be able to verify the answer Carol gave to a challenge by her. she would also have to know bob's key to do the same.

any of these 3 would have to know someone else's secret key to verify answers to any challenge.

the challenge is to know the secret keys if the other two and if done, decryption can easily be done and they can impersonate.

Submit your 300- word essay that: 1) identifies a problem in your community and works through problem solving steps to provide a solution, and 2) analyzes five conflicts through the conflict resolution approaches and explains an appropriate resolution for each conflict.

Answers

Note the above prompt is about a descriptive essay. See the sample essay below.

Descriptive Essay about a problem in my community and the Solution to the Same

Waste management is an issue that affects every community around the world. It is a problem that has far-reaching consequences on human health and the environment. In my community, waste management is an issue that requires immediate attention. The problem stems from a lack of awareness, inadequate infrastructure, and insufficient regulatory measures.

To address this problem, we can follow a problem-solving process.

The first step would be to define the problem, which is waste management. This would involve understanding the causes and effects of the problem.

The second step would be to gather data on the problem. This could be done through surveys, interviews, and observations.

The third step would be to analyze the data collected and identify the root causes of the problem. In our case, the root causes could be lack of awareness, inadequate infrastructure, and insufficient regulatory measures.

The fourth step would be to brainstorm solutions to the problem. This could be done through workshops, focus groups, and meetings. Some possible solutions could be to increase public awareness through education campaigns, improve waste collection and disposal infrastructure, and enforce stricter regulations on waste disposal.

The fifth and final step would be to implement and evaluate the solutions. This would involve monitoring and assessing the effectiveness of the solutions and making adjustments as necessary.

Conflicts are inevitable in any community, and it is essential to have effective conflict resolution approaches to ensure that these conflicts are resolved in a fair and equitable manner. The five conflict resolution approaches are negotiation, mediation, arbitration, litigation, and avoidance.

Negotiation is a conflict resolution approach that involves parties coming to an agreement through discussion and compromise. This approach would be appropriate for conflicts that are relatively minor and do not involve legal or ethical issues.

Mediation is a conflict resolution approach that involves a neutral third party facilitating a discussion between the conflicting parties to come to an agreement. This approach would be appropriate for conflicts that involve communication breakdowns or misunderstandings.

Arbitration is a conflict resolution approach that involves a third party making a binding decision on the conflict. This approach would be appropriate for conflicts that involve legal issues.

Litigation is a conflict resolution approach that involves taking the conflict to court to have a judge make a binding decision. This approach would be appropriate for conflicts that involve legal or ethical issues.

Avoidance is a conflict resolution approach that involves ignoring or avoiding the conflict altogether. This approach is generally not recommended as it does not resolve the conflict and can lead to further problems in the future.

In conclusion, waste management is a problem that requires a concerted effort from everyone in the community to address. Through problem-solving steps, we can identify the root causes of the problem and come up with effective solutions. Note as well that, having effective conflict resolution approaches is essential in ensuring that conflicts in the community are resolved in a fair and equitable manner. By following these approaches, we can work towards creating a more sustainable and harmonious community.

Learn more about Descriptive Essay at:

https://brainly.com/question/25505941

#SPJ1

what are the five generations of computer software​

Answers

Answer:

1st gen: Vacuum Tubes(1940–1956)

2nd gen: Transistors(1956–1963)

3rd gen: Integrated Circuits: (1964–1971)

4th gen: Microprocessors (1971–PRESENT)

5th gen: Artificial Intelligence (present)

Explanation:

What will be displayed as a result of executing the following code?
int x = 6;
String msg = "I am enjoying this class.";
String msg1 = msg.toUpperCase();
String msg2 = msg.toLowerCase();
char ltr = msg.charAt(x);
int strSize = msg.length();
System.out.println(msg);
System.out.println(msg1);
System.out.println(msg2);
System.out.println("Character at index x = " +
ltr);
System.out.println("msg has " + strSize + "characters.");
A) I am enjoying this class. I AM ENJOYING THIS CLASS. i am enjoying this class. Character at index x = e msg has 24 characters.
B) I am enjoying this class. I AM ENJOYING THIS CLASS. i am enjoying this class. Character at index x = e msg has 25 characters.
C) I am enjoying this class. I AM ENJOYING THIS CLASS. i am enjoying this class. Character at index x = n msg has 24 characters.
D) I am enjoying this class. I AM ENJOYING THIS CLASS. i am enjoying this class. Character at index x = n
msg has 25characters.

Answers

Answer:

d

Explanation:

Kris Allen runs a pet daycare center. She needs to keep track of contact information for her customers, their animals, the services provided (such as walking and grooming), and the staff who are assigned to care for them. She also must send out invoices for payment each month. What features of spreadsheets and/or database software might she use to facilitate her business

Answers

for easy data management i recommend SQL

The features of spreadsheets and/or database software might she use to facilitate her business are:

Rows and columns in spreadsheet's can make her information to be neatly organized.The use of Formulas and functions.

What is Spreadsheet?

A spreadsheet is known to be a kind of computer application that is often used for computation, organization, and others.

Note that The features of spreadsheets and/or database software might she use to facilitate her business are:

Rows and columns in spreadsheet's can make her information to be neatly organized.The use of Formulas and functions.Data filteringAccounting.Analytics, etc.

Learn more about spreadsheets from

https://brainly.com/question/27119344?answeringSource=feedPublic%2FhomePage%2F20

#SPJ2

If you only use part of a quotation, it is not necessary to include a citation.

Answers

Answer:

i believe this is false

explanation:

public class Billing {
final static double TAX = 0.08;
public static void main(String[] args) {
final double HIGHPRICE - 24.99;
final double MEDPRICE - 17.50;
final double LOPRICE = 10.00;
final int QUAN1 4;
final int QUAN2 6;
double bill;
bill = computeBill(HIGHPRICE);
System.out.println("The total for a photobook that costs $" +
HIGHPRICE + is 5" + bill);
bill - computeBill(MEDPRICE, QUAND);
System.out.println("The total for + QUAN1 +
photobooks that cost $"
MEDPRICE + is $" + bill);
bill - computeBill (LOPRICE, QUANZ, 20.00);
System.out.println("The total for + QUANZ
photobooks that cost $"
LOPRICE with a $20 coupon is $" + bill);
}
public static double computeBill(double amt) {
1/ Write your code here
}
public static double computeBill(double amt, int quantity) {
// Write your code here
}
public static double computeBill(double amt, int quantity, double coupon) {
// Write your code here
}
}

Answers

Answer:

C

Explanation:

How does Accenture work to build trust in Artificial Intelligence (AI)?

Answers

This question has already been asked on Brainly.

https://brainly.in/question/35275070

Accenture work to build trust in Artificial Intelligence (AI) through investing in differentiated intellectual property.

What is a  differentiated intellectual property?

Intellectual property serves as a creations of the mind as well as inventions that is bee used in commerce.

With the creation of this  differentiated intellectual property, it help the Accenture to be able to establish trust because there is a law that protect any intellectual property in the the country.

Read more on intellectual property here: https://brainly.com/question/1078532

#SPJ2

What is 3+5?*

(Hint: is it not 8)

Answers

Such a confusing question:)

Explanation:

mark me brainliest

Match each item with a statement below.â

a. âAn address type used in IPv6 to allow a one-to-many relationship between source and destination.
b. âThe bounds of a network that defines which devices must receive a packet thatâs broadcast by any other device.
c. âA method of IP addressing in which the network and host IDs are determined by a prefix number that specifies how many bits of the IP address are network bits.
d. âAnd auto configure IPv6 host address that uses the MAC address of the host plus an additional 16 bits.
e. âAn automatic tunneling protocol used to transmit IPv6 packets between dual IP layer hosts across an IPv4 network.
f. âA value used to express how many bits of an IP address are network ID bits.
g. âAn address that always refers to the local computer.
h. âA value assigned to the gateway based on the speed of the interface used to access the gateway.
i. âA network communication in which a packet is addressed so that more than one destination can receive it
j. âAn automatic IPv6-over-IPv4 tunneling protocol that solves the problem of 6to4's requirement of a public IPv4 address and the inability to traverse NAT routers

a. âanycast addresses
b. âbroadcast domain
c. âCIDR
d. âEUI-64
e. âISATAP f. âIP prefix
g. âloopback address
h. âmetric
i. âmulticasting
j. Teredo

Answers

Answer:

a. Anycast Addresses

b. Broadcast domain

c. Classless Interdomain Routing (CIDR)

d. Extended Unique Identifier (EUI-64) interface ID

e. Intra-Site Automatic Tunnel Addressing Protocol (ISATAP)

f. IP prefix

g. Loopback Address

h. Metric

i. Multicasting

j. Teredo

Explanation:

a. Anycast Addresses: An address type used in IPv6 to allow a one-to-many relationship between source and destination.

b. Broadcast domain: The bounds of a network that defines which devices must receive a packet that's broadcast by any other device.

c. Classless Interdomain Routing (CIDR): A method of IP addressing in which the network and host IDs are determined by a prefix number that specifies how many bits of the IP address are network bits.

d. Extended Unique Identifier (EUI-64) interface ID: An auto configure IPv6 host address that uses the MAC address of the host plus an additional 16 bits.

e. Intra-Site Automatic Tunnel Addressing Protocol (ISATAP): An automatic tunneling protocol used to transmit IPv6 packets between dual IP layer hosts across an IPv4 network.

f. IP prefix: A value used to express how many bits of an IP address are network ID bits.

g. Loopback Address: An address that always refers to the local computer. The loop address is primarily 127.0.01.

h. Metric: A value assigned to the gateway based on the speed of the interface used to access the gateway.

i. Multicasting: A network communication in which a packet is addressed so that more than one destination can receive it

j. Teredo: An automatic IPv6-over-IPv4 tunneling protocol that solves the problem of 6to4's requirement of a public IPv4 address and the inability to traverse NAT routers.

Hello World.

⇒ What is the function of for loops in Python?

Answers

Answer:

The for loop in Python is used to iterate over a sequence (list, tuple, string) or other iterable objects. Iterating over a sequence is called traversal.

✒Answer✒

The for loop in Python is used to iterate over a sequence (list, tuple, string) or other iterable objects. Iterating over a sequence is called traversal.

Explanation:

# Brainliest Bunch

Compare the memory efficiency of four different styles of instruction sets. The architecture styles are the following:

Accumulator: All operations use the accumulator register. Operands come from the accumulator and/or memory and the result of most operations is stored in the accumulator.
Memory-memory: All three operands of each instruction are in memory.
Stack: All operations occur on top of the stack. Only push and pop access memory, and all other instructions remove their operands from the stack and replace them with the result. The implementation uses a stack for the top two entries; accesses that use other stack positions are memory references.
Load-store: All operations occur in registers, and register-to-register instructions have three operands per instruction.

Answers

Compare the memory efficiency of four different styles of instruction sets. The architecture styles are the following:

Accumulator: All operations use the accumulator register. Operands come from the accumulator and/or memory and the result of most operations is stored in the accumulator.

Memory-memory: All three operands of each instruction are in memory.

Stack: All operations occur on top of the stack. Only push and pop access memory, and all other instructions remove their operands from the stack and replace them with the result. The implementation uses a stack for the top two entries; accesses that use other stack positions are memory references.

Load-store: All operations occur in registers, and register-to-register instructions have three operands per instruction.Compare the memory efficiency of four different styles of instruction sets. The architecture styles are the following:

Accumulator: All operations use the accumulator register. Operands come from the accumulator and/or memory and the result of most operations is stored in the accumulator.

Memory-memory: All three operands of each instruction are in memory.

Stack: All operations occur on top of the stack. Only push and pop access memory, and all other instructions remove their operands from the stack and replace them with the result. The implementation uses a stack for the top two entries; accesses that use other stack positions are memory references.

Load-store: All operations occur in registers, and register-to-register instructions have three operands per instruction.Compare the memory efficiency of four different styles of instruction sets. The architecture styles are the following:

Accumulator: All operations use the accumulator register. Operands come from the accumulator and/or memory and the result of most operations is stored in the accumulator.

Memory-memory: All three operands of each instruction are in memory.

Stack: All operations occur on top of the stack. Only push and pop access memory, and all other instructions remove their operands from the stack and replace them with the result. The implementation uses a stack for the top two entries; accesses that use other stack positions are memory references.

Load-store: All operations occur in registers, and register-to-register instructions have three operands per instruction.

please mark me as brainliest.............

follow me.............

.

In a formula, why is it preferred to use a reference cell instead of a static number in excel?

Answers

Answer:

they allow you to update data in your worksheet without having to rewrite formulas

Explanation:

Modifying values with cell references. Cell references are that they allow you to update data in your worksheet without having to rewrite formulas. The cell address or the range referred to during the calculation while constant has a fixed value.

Hope it helps!!!Brainliest pls!!!

Which is the "Network Effect?"

Answers

Answer:

The network effect refers to the concept that the value of a product or service increases when the number of people who use that product or service increases.

Explanation:

Hope this helps !!

Select the correct answer.
Which is a major fashion design concept?
A.
Colors
B.
Patterns
C.
Both A and B
D.
None of the above

Answers

Answer:

C.

Explanation:

the colors and patterns, C

When an application checks for malware, it compares the contents of every file it looks at to this database of definitions and if it finds a match, it flags the file as potentially being infected.

1. True

2. False

Answers

When an application checks for malware, it compares the contents of every file it looks at to this database of definitions and if it finds a match, it flags the file as potentially being infected is a true statement.

What does anti-malware software look for?

A lot of programs are known to scan for malware through the use of a database that contains some known malware definitions

These definitions are used to tell what the malware does and how to know it. If the anti-malware program can be able to detects a file that matches the definition, it will then flag it as potential virus.

Learn more about application from

https://brainly.com/question/1538272

Identify and critically discuss the economic system you would prefer your business to operate in. Justify your choice.

Answers

The economic system you would prefer your business to operate in is free market system.

What type of the free market economic system?

The economic system that I like is the free market system. It is also called capitalism.

The reason why I choose this is because in a free market, competition is the factor that often shows or dictates how goods and services tends to  be allocated. Business in this market are often  conducted with little limited government involvement in it.

Learn more about free market system from

https://brainly.com/question/3369578

HTML is at the core of every Web page, regardless the complexity of a site or number of technologies involved.

1. True

2. False

Answers

Answer:

1

Explanation:

That is true. Every website, no matter how complex, breaks down to basic HTML code and structure.

Assume we need to implement the following sequence of Instructions with
forwarding by using a 5 stages pipeline.
sub x12, x11, x13
and x8 x12, x15
or x9,x16.x12
For clock cycle 5, what are the control values of A and B (the two outputs of
"Forwarding unit") respectively?
(The control values for the forwarding multiplexors

are shown in the following table)
MUX Control Source
A/B - 00
ID/EX
W/B - 10
EX/MEM

Answers

Answer:

0 0 1 0

Explanation:

sub X12, X11, X13 and x8, X12, X15 or X9, x16, x12 For clock cycle 5, what are the control values of A and B.

The ideal gas law allows the calculation of volume of a gas given the pressure(P), amount of the gas (n), and the temperature (T). The equation is:

V = nRT / P

Since we only have used integer arithmetic, all numbers will be integer values with no decimal points. The constant R is 8.314 and will be specified as (8314/1000). This gives the same result.

Required:
Implement the ideal gas law program where the user is prompted for and enters values for n, T, and P, and V is calculated. Be careful to implement an accurate version of this program. Your program should include a proper and useful prompt for input, and print the results in a meaningful manner.

Answers

Answer:

Written in Python

P = float(input("Pressure: "))

T = float(input("Temperature: "))

n = float(input("Amount of Gas: "))

R = 8.314

V = (n * R * T)/P

print("Volume: "+str(round(V,2)))

Explanation:

The next 3 lines prompts user for inputs of Pressure, Temperature, Amount of Gas

P = float(input("Pressure: "))

T = float(input("Temperature: "))

n = float(input("Amount of Gas: "))

This line initializes constant R

R = 8.314

This line calculates volume

V = (n * R * T)/P

This line prints volume, rounded up to 2 decimal places

print("Volume: "+str(round(V,2)))

Momentous events in Philippine history where ICT played a huge role in making it a success?

Answers

Answer:

I hope this answer is correct

Explanation:

MANILA, Philippines – Sixteen years ago, Filipinos gathered at the historic thoroughfare EDSA, where freedom was once won against a dictator in 1986.

MANILA, Philippines – Sixteen years ago, Filipinos gathered at the historic thoroughfare EDSA, where freedom was once won against a dictator in 1986.EDSA People Power II, as it came to be known, was a series of protests held from January 16 to 20, 2001, against former president Joseph Estrada who was then facing plunder charges. The protests eventually triggered Estrada’s downfall – and paved the way for Gloria Macapagal-Arroyo, his vice president, to enter the spotlight in the political scene.

MANILA, Philippines – Sixteen years ago, Filipinos gathered at the historic thoroughfare EDSA, where freedom was once won against a dictator in 1986.EDSA People Power II, as it came to be known, was a series of protests held from January 16 to 20, 2001, against former president Joseph Estrada who was then facing plunder charges. The protests eventually triggered Estrada’s downfall – and paved the way for Gloria Macapagal-Arroyo, his vice president, to enter the spotlight in the political scene.But Arroyo would later face her own share of troubles during her administration. Both former presidents seemed to follow the same track in politics: they were both vice presidents before assuming the highest seat of the land, and both have been accused of criminal offenses. Despite these, Estrada and Arroyo have managed to retain positions in government today.

Electrostatic Sensitive Devices Google Chrome
A Not secure http/209.60.132.173:8080/nidaile/SCE/portal/lessontrame 7.aspx
2. A requirement for workbench and tools which are used with ESDs is that
tools must be non-metallic and workbenches must be wood covered
tools and work surfaces must be plastic
tools, work surfaces, and floors must be grounded
only tools mulbe grounded

Answers

Answer:

um what

Explanation:

What is a spreadsheet macro?

A) A small program which performs several steps, which can be recorded and activated using a hot key combination.

B) A tool used to create charts.

C) A feature inside excel that makes your work look better.

D) A formula to complete calculations.

Answers

Answer:

Macros are code that automate work in a program—they let you add your own tiny features and enhancements to help you accomplish exactly what you need to do, quickly with just a click of a button.

Explanation:

1.Give single word
a. A computer never gets tired or bored while working for a long time ..........
b. A computer doesn't make any mistake ..........
c. A computer can perform billions of calculations in a second .........
d. A computer can perferm several tasks such as drawing pictures,playing games,etc.......

Answers

Answer:

A. Versatile

B. Accuracy

C. High speed

D. Animation.

The CPU is basically the same as a disk drive?

Answers

Answer:

No, other than working independently, they are not the same.

Explanation:

A computer's CPU is the fastest part of the system. Its job is to process data and is usually left waiting on the rest of the computer to feed it information to work with. Hard drives are one of the sources that the processor gets data from, but both parts work independently.

Other Questions
What is the radius of a circle with an area of 78. 5 square inches? Use 3. 14 for pi. Enter your answer in the box. Ram, Hari and Shyam go for a swim after a gap of every 1 day, 2 dayand 3 days respectively. How many times will all they meet on the same day within 180 days? A sink holds 312 gallons. About how many liters does it hold? Round your answer to the nearest tenth if necessary. can someone help me put the reasons in order ? please !! which numbers are rational? How does 21 compare to 7? How does 21 compare to 3?Write the numbers to describe the relationships.21 is _____ times as many as 7.21 is _____ times as many as 3 Which inequality represents 17 less than twice a number is no more than 35? How does a pond form?A mudflow blocks a river.o Water collects in a low-lying area.Humans use a dam to create a reservoir.A depression made by an ice sheet fills with water. Simplifying 7^3 * 7^6 *7^-2 find f(x+1) of f(x)= 2x^2 + 1 Given the figure below, find the values of x and z.(7x + 61)(15x 35)Z pls help me i dont get it HELP PLEASE!!! 25 POINTS!!!!What time frame did the guptas do Religion???No links please...25 Points _______ is a condition that occurs after prolonged heavy exercise over an extended period of time.A. Steady state B. Overtraining C. Detraining D. Maximal heart rate Which labeled structure identifies where passive water reabsorption takes place in the kidney?. Can anyone helpcheck attachment Non-examples of International Trade? Whats the volume of the rectangular prism ? Which branch of government interprets laws?executive and legislativejudiciallegislativeexecutive did the messopotania fly or was battle ship