21 divided by 13
7 divided by 800
25 divided by 400 7 divided by 800
25 divided by 400" />

Step-by-step answer

13.09.2022, solved by verified expert
Unlock the full answer
1 students found this answer . helpful

10) 

_____ ÷ 7 > 800

This means 

______ > 7 x 800 

________> 5600

5601

11) 

_____ ÷ 21 > 13

This means 

______ > 13 x 21 

________> 273

274

12) 

15 < ______ ÷ 400

15 x 400 < ______

600 < _______

599

It is was helpful?

Faq

Computers and Technology
Step-by-step answer
P Answered by PhD

The program written in Java without comment is as follows

import java.util.*;

public class MyClass {

   public static void main(String args[]) {

       Scanner input = new Scanner(System.in);

       System.out.print("Year: ");

       int y = input.nextInt();

       int a = y%19;

       System.out.println("a = "+a);

       int b = y / 100;

       System.out.println("b = "+b);

       int c = y%100;

       System.out.println("c = "+c);

       int d = b / 4;

       System.out.println("d = "+d);

       int e = b%4;

       System.out.println("e = "+e);

       int g = (8 * b + 13)/25;

       System.out.println("g = "+g);

       int h = (19 * a + b - d - g + 15)%30;

       System.out.println("h = "+h);

       int j = c/4;

       System.out.println("j = "+j);

       int k = c%4;

       System.out.println("k = "+k);

       int m = (a + 11 * h)/319;

       System.out.println("m = "+m);

       int r = (2 * e + 2 * j - k - h + m + 32)%7;

       System.out.println("r = "+r);

       int n = (h - m + r + 90)/25;

       System.out.println("n = "+n);

       int p = (h - m + r + n + 19)%32;

       System.out.println("p = "+p);

   }

}

Explanation:

I've added the full source code as an attachment where I use comments to explain difficult lines

Computers and Technology
Step-by-step answer
P Answered by PhD

The program written in Java without comment is as follows

import java.util.*;

public class MyClass {

   public static void main(String args[]) {

       Scanner input = new Scanner(System.in);

       System.out.print("Year: ");

       int y = input.nextInt();

       int a = y%19;

       System.out.println("a = "+a);

       int b = y / 100;

       System.out.println("b = "+b);

       int c = y%100;

       System.out.println("c = "+c);

       int d = b / 4;

       System.out.println("d = "+d);

       int e = b%4;

       System.out.println("e = "+e);

       int g = (8 * b + 13)/25;

       System.out.println("g = "+g);

       int h = (19 * a + b - d - g + 15)%30;

       System.out.println("h = "+h);

       int j = c/4;

       System.out.println("j = "+j);

       int k = c%4;

       System.out.println("k = "+k);

       int m = (a + 11 * h)/319;

       System.out.println("m = "+m);

       int r = (2 * e + 2 * j - k - h + m + 32)%7;

       System.out.println("r = "+r);

       int n = (h - m + r + 90)/25;

       System.out.println("n = "+n);

       int p = (h - m + r + n + 19)%32;

       System.out.println("p = "+p);

   }

}

Explanation:

I've added the full source code as an attachment where I use comments to explain difficult lines

Computers and Technology
Step-by-step answer
P Answered by Specialist

# The user is prompted to enter the year

# the entered year is assigned to y

y = int(input("Enter the year: "))

# the remainder when y is divided by 19 is assigned to a

a = y % 19

# The quotient is assigned to b when y is divided by 100

b = y // 100

# The remainder is assigned to c when y is divided by 100

c = y % 100

# The quotient is assigned to d when b is divided by 4

d = b // 4

# The remainder is assigned to e when b is divided by 4

e = b % 4

# The quotient is assigned to g when 8 * b + 13 is divided by 25

g = (8 * b + 13) // 25

# The remainder is assigned to h when 19 * a + b - d - g + 15 is divided by 30

h = (19 * a + b - d - g + 15) % 30

# The quotient is assigned to j when c is divided by 4

j = c // 4

# The remainder is assigned to k when c is divided by 4

k = c % 4

# The quotient is assigned to m when a + 11 * h is divided by 319

m = (a + 11 * h) // 319

# The remainder is assigned to r when 2 * e + 2 * j - k - h + m + 32 is divided by 7

r = (2 * e + 2 * j  - k - h + m + 32) % 7

# The quotient is assigned to n when h - m + r + 90 is divided by 25

n = (h - m + r + 90) // 25

# The remainder is assigned to p when h - m + r + n + 19 is divided by 32

p = (h - m + r + n + 19) % 32

# The date of easter is displayed

print ("Easter falls on day ", p, "of month ", n);

Explanation:

The code is written in Python and is well commented. A sample image of program output is attached.


Easter Sunday is the first Sunday after the first full moon of spring. To compute the date, you can
Easter Sunday is the first Sunday after the first full moon of spring. To compute the date, you can
Computers and Technology
Step-by-step answer
P Answered by Specialist

# The user is prompted to enter the year

# the entered year is assigned to y

y = int(input("Enter the year: "))

# the remainder when y is divided by 19 is assigned to a

a = y % 19

# The quotient is assigned to b when y is divided by 100

b = y // 100

# The remainder is assigned to c when y is divided by 100

c = y % 100

# The quotient is assigned to d when b is divided by 4

d = b // 4

# The remainder is assigned to e when b is divided by 4

e = b % 4

# The quotient is assigned to g when 8 * b + 13 is divided by 25

g = (8 * b + 13) // 25

# The remainder is assigned to h when 19 * a + b - d - g + 15 is divided by 30

h = (19 * a + b - d - g + 15) % 30

# The quotient is assigned to j when c is divided by 4

j = c // 4

# The remainder is assigned to k when c is divided by 4

k = c % 4

# The quotient is assigned to m when a + 11 * h is divided by 319

m = (a + 11 * h) // 319

# The remainder is assigned to r when 2 * e + 2 * j - k - h + m + 32 is divided by 7

r = (2 * e + 2 * j  - k - h + m + 32) % 7

# The quotient is assigned to n when h - m + r + 90 is divided by 25

n = (h - m + r + 90) // 25

# The remainder is assigned to p when h - m + r + n + 19 is divided by 32

p = (h - m + r + n + 19) % 32

# The date of easter is displayed

print ("Easter falls on day ", p, "of month ", n);

Explanation:

The code is written in Python and is well commented. A sample image of program output is attached.


Easter Sunday is the first Sunday after the first full moon of spring. To compute the date, you can
Easter Sunday is the first Sunday after the first full moon of spring. To compute the date, you can
Business
Step-by-step answer
P Answered by PhD
#1) The investment you make into a startup company is also known as .

Out of all the options that are available the one that is an investment you make into a startup company is also known as Venture capital. The reason being the it is the financial capital provided to early-stage, high-potential, high risk, growth startup companies. Therefore the correct answer is A).

#2) The correct order for saving should be ___.

Out of all the options that are shown above the one that represents the correct order for saving is D) Pay off credit debt, retirements, emergency fund.

#3) Investing in stock plans is .

Out of all the options that are shown above the one that represents the best accurate description of what investing in stock plans is would be choice B) High risk. The reason being that there are many disadvantages to the employer.

#4) To place savings into different types of saving instruments is to ___.

Out of all the options above the one that represents what it is to place saving into different types of saving instruments is A) Split invest.

#5)  Purchasing a home usually requires for the down payment.

Purchasing a home usually requires a lump sum of your own money to put against the cost of your home. The more money you place from you pocket, the less you need to borrow, and the lower your overall interest cost will be. Therefore the answer is B) A lump sum of money.

#6) Which of the following is not an example of a contract?

Out of all the options that are presented above the one that is not an example of a contract is D) Borrowing lunch money. A contract not only has to be between two or more parties but, it must also be enforceable by the court of law.

#7) Gains and losses on investments are also known as .

The gains and losses on investments are also known as A) Net gains. Because it is the overall improvement after all positive and negative influences have been fully accounted for.

#8) The United States Treasury issues ___ for you to purchase.

It issues C) Saving bonds for you to purchase.

#9) You want to buy a used car for $8,648.00 plus 4.7% sales tax. You want to make a 5% down payment. How much is your down payment?

After calculating the total cost of the car including sales tax I got $9054.47. The amount of money for your down payment of 5% is $452.723, leaving you with a loan of $8601.747.

#10) You want to buy a house in 9 years. The estimated cost is $175,800.00. You want to make a 20% down payment and closing costs are 7%. How much in total do you need save each month to reach your goal if you cover closing costs and the down payment?

For the 20% down payment we have $35,160 and for the closing cost $12,306. We know that 9 years have 108 months. With this information we get that we will need to save $325.56 each month for the down payment and $113.94 each month for the closing costs.

#11) You save 15% of your realized income each week. How much do you save per month?

After calculating the total money made hourly we get a total of $8.55. This means that we make a total of $111.15 a week. The total percentage of taxes is 28.15%. Our net is 71.85%. That leaves us with total of $79.86 dollars weekly. Now to calculate our savings weekly we take $79.86 and multiply it by 15% and we get $11.98 as our weekly savings. The total amount of money we get to save per month is $47.92.

#12) How much is the total value of your stocks in the second year?

Okay so first we have to know the total number of shares that we bought. For this we simply take our investment and divided by $10/share. We get 105. Then we calculate the value of our shares for the first year which would be $11.3 and after two years $10.735 because it decreased by 5%. As a result our total value of stocks in the second year is $1127.175.

#13) What is the difference in earnings between the stock and savings account the end of the second year?

After calculating the stock and savings account total I found out that the difference in earning between them is $104.738.

#14) How much is the difference and payments is you stay the whole year?

All we have to do is calculate the total amount of the lease which is $502*12 = $6024. Then the month to month contract which is $615*12 = $7380. From here we simply subtract to get the difference in payment if you stay the whole year. The difference is $1356.

#15) Using the information from number 14, you leave after six months. How much is the difference in that amount paid between the two contracts?

For this case we will have to take into account the penalty for breaking the lease. So for the lease we will get $4016 and for the month to month contract we get $3690. The difference is $326.

I hope it helps, Regards.
Business
Step-by-step answer
P Answered by PhD
#1) The investment you make into a startup company is also known as .

Out of all the options that are available the one that is an investment you make into a startup company is also known as Venture capital. The reason being the it is the financial capital provided to early-stage, high-potential, high risk, growth startup companies. Therefore the correct answer is A).

#2) The correct order for saving should be ___.

Out of all the options that are shown above the one that represents the correct order for saving is D) Pay off credit debt, retirements, emergency fund.

#3) Investing in stock plans is .

Out of all the options that are shown above the one that represents the best accurate description of what investing in stock plans is would be choice B) High risk. The reason being that there are many disadvantages to the employer.

#4) To place savings into different types of saving instruments is to ___.

Out of all the options above the one that represents what it is to place saving into different types of saving instruments is A) Split invest.

#5)  Purchasing a home usually requires for the down payment.

Purchasing a home usually requires a lump sum of your own money to put against the cost of your home. The more money you place from you pocket, the less you need to borrow, and the lower your overall interest cost will be. Therefore the answer is B) A lump sum of money.

#6) Which of the following is not an example of a contract?

Out of all the options that are presented above the one that is not an example of a contract is D) Borrowing lunch money. A contract not only has to be between two or more parties but, it must also be enforceable by the court of law.

#7) Gains and losses on investments are also known as .

The gains and losses on investments are also known as A) Net gains. Because it is the overall improvement after all positive and negative influences have been fully accounted for.

#8) The United States Treasury issues ___ for you to purchase.

It issues C) Saving bonds for you to purchase.

#9) You want to buy a used car for $8,648.00 plus 4.7% sales tax. You want to make a 5% down payment. How much is your down payment?

After calculating the total cost of the car including sales tax I got $9054.47. The amount of money for your down payment of 5% is $452.723, leaving you with a loan of $8601.747.

#10) You want to buy a house in 9 years. The estimated cost is $175,800.00. You want to make a 20% down payment and closing costs are 7%. How much in total do you need save each month to reach your goal if you cover closing costs and the down payment?

For the 20% down payment we have $35,160 and for the closing cost $12,306. We know that 9 years have 108 months. With this information we get that we will need to save $325.56 each month for the down payment and $113.94 each month for the closing costs.

#11) You save 15% of your realized income each week. How much do you save per month?

After calculating the total money made hourly we get a total of $8.55. This means that we make a total of $111.15 a week. The total percentage of taxes is 28.15%. Our net is 71.85%. That leaves us with total of $79.86 dollars weekly. Now to calculate our savings weekly we take $79.86 and multiply it by 15% and we get $11.98 as our weekly savings. The total amount of money we get to save per month is $47.92.

#12) How much is the total value of your stocks in the second year?

Okay so first we have to know the total number of shares that we bought. For this we simply take our investment and divided by $10/share. We get 105. Then we calculate the value of our shares for the first year which would be $11.3 and after two years $10.735 because it decreased by 5%. As a result our total value of stocks in the second year is $1127.175.

#13) What is the difference in earnings between the stock and savings account the end of the second year?

After calculating the stock and savings account total I found out that the difference in earning between them is $104.738.

#14) How much is the difference and payments is you stay the whole year?

All we have to do is calculate the total amount of the lease which is $502*12 = $6024. Then the month to month contract which is $615*12 = $7380. From here we simply subtract to get the difference in payment if you stay the whole year. The difference is $1356.

#15) Using the information from number 14, you leave after six months. How much is the difference in that amount paid between the two contracts?

For this case we will have to take into account the penalty for breaking the lease. So for the lease we will get $4016 and for the month to month contract we get $3690. The difference is $326.

I hope it helps, Regards.
Computers and Technology
Step-by-step answer
P Answered by Specialist

Following are the solution to the given question:

Explanation:

Please find the following Excel form for calculating the bonus as required. Please ensure the equation is duplicated even so, with the sign "=." It is possible to insert this formula into cell L12. Then cut/paste the cell into other L12:L39 cells.

=IF(AND(G12/F12 \geq \$L \$7,J12 \leq \$L\$8)=TRUE,\$L\$9,0)

The mixed microbial reference here is used in L7, L8, and L9 so these cell references are not moved whenever the formula is copied to L12:L39.

Please verify that whenever the copy has also been copied, the cell formula appears beneath in each cell.

It must be as below in L12.

=IF(AND(G12/F12 \geq \$L\$7,J12\leq \$L\$8)=TRUE,\$L\$9,0)

It must be as follows in L13.

=IF(AND(G13/F13\geq \$L\$7,J13\leq \$L\$8)=TRUE,\$L\$9,0)

and so on.

Computers and Technology
Step-by-step answer
P Answered by Master

Following are the solution to the given question:

Explanation:

Please find the following Excel form for calculating the bonus as required. Please ensure the equation is duplicated even so, with the sign "=." It is possible to insert this formula into cell L12. Then cut/paste the cell into other L12:L39 cells.

=IF(AND(G12/F12 \geq \$L \$7,J12 \leq \$L\$8)=TRUE,\$L\$9,0)

The mixed microbial reference here is used in L7, L8, and L9 so these cell references are not moved whenever the formula is copied to L12:L39.

Please verify that whenever the copy has also been copied, the cell formula appears beneath in each cell.

It must be as below in L12.

=IF(AND(G12/F12 \geq \$L\$7,J12\leq \$L\$8)=TRUE,\$L\$9,0)

It must be as follows in L13.

=IF(AND(G13/F13\geq \$L\$7,J13\leq \$L\$8)=TRUE,\$L\$9,0)

and so on.

Try asking the Studen AI a question.

It will provide an instant answer!

FREE