Can someone help me with this
can someone help me with this - 1

Answers

Answer 1
Answer:

Answer: 28 hours and 5 min

Step-by-step explanation:

So there are 60 min in hour so the fourmula would be 60x=1683 and when you solve you get 28.05


Related Questions

How much would Sophia pay for 14 peppers
Pls answer the question important
How effective is the regression model for these data? not effective, because only 13.4% of the variation in the data is explained by the model not effective, because only 36.6% of the variation in the data is explained by the model extremely effective, because 13.4% of the variation in the data is explained by the model extremely effective, because 36.6% of the variation in the data is explained by the model
A company is giving gifts to its employees. Employees can choose a gift card, hat, or candy. The table shows the gift chosen by 150 employees. Type of Gift Number of EmployeesGift Card90Hat10Candy50Based on this data, about how many employees will choose a gift card if there are 600 employees choosing gifts?Enter your answer in the box.
Jon Ericson bought a home with a 11.5% adjustable rate mortgage for 20 years. He paid $10.67 monthly per thousand on his original loan. At the end of 2 years he owes the bank $50,000. Now that interest rates have gone up to 13%, the bank will renew the mortgage at this rate or Jon can pay $50,000.Jon decides to renew and will now pay $11.72 monthly per thousand on his loan. You can ignore the small amount of principal that has been paid.What is the amount of the old monthly payment? $ ____What is the amount of the new monthly payment? $ ____What is the percent of increase in his new monthly payment? ____ %

The graph below shows the numbers of cups of apple juice that are mixed with different numbers of cups of lemon-lime soda to make servings of apple soda: A graph is shown. The values on the x axis are 0, 1, 2, 3, 4, 5. The values on the y axis are 0, 6, 12, 18, 24, 30. Points are shown on ordered pairs 0, 0 and 1, 6 and 2, 12 and 3, 18 and 4, 24. These points are connected by a line. The label on the x axis is Lemon -Lime Soda in cups. The title on the y axis is Apple Juice in cups. What is the ratio of the number of cups of apple juice to the number of cups of lemon-lime soda? 1:24 24:1 1:6 6:1

Answers

The ratio of the number of cups of apple juice to the number of cups of lemon-lime soda is 6:1

What is the ratio?

It is described as the comparison of two quantities to determine how many times one obtains the other. The proportion can be expressed as a fraction or as a sign: between two integers.

Given that x axis denotes Lemon lime soda in cups and y axis denotes Apple juice in cups

(x) Lemon -Lime Soda  ;  0, 1,   2,   3,   4,   5

(y) Apple Juice  :  0, 6, 12, 18, 24, 30

Therefore, the ratio can be written as;

the number of cups of apple juice   :    the number of cups of lemon-lime soda

         6                                          :            1

Then,  ratio is 6:1

Hence, the ratio of the number of cups of apple juice to the number of cups of lemon-lime soda is 6:1

Learn more about the ratio here:

brainly.com/question/13419413

#SPJ3

(x) Lemon -Lime Soda     0, 1,   2,   3,   4,   5
(y) Apple Juice                  0, 6, 12, 18, 24, 30

number of cups of apple juice   :    the number of cups of lemon-lime soda
          6                                          :            1
          ratio is 6:1

Drag numbers to use a negative factor to factor the expression-5g+15h-25​

Answers

Answer: -5g + 15h - 25 = -5 × (g - h + 5)

Step-by-step explanation:

Step-by-step explanation:

first we do this  -5g = -5 × g

then 15h = 5 × 3h

so, -25 = -5 × 5

when -5g + 15h - 25 = -5 × g - (-5 × 3h) + (-5 × 5)

the answer is = -5 × (g - h + 5)

       According to the Factors of a Negative Number

First The factors of a number entail all of the numbers that can be multiplied by one another to produce that many numbers.

According to The laws of multiplication that the state when a negative number is multiplied by a positive number then also the product will be negative.

Although when the Factors are those numbers. when it is multiplied with together then the result is another number, which is known as a product.

Trevor is preparing dinner plates. He has 18 pieces of chicken and 14 rolls. If he wants to make all the plates identical without any food left over, what is the greatest number of plates Trevor can prepare?

Answers

Answer:

split the four extra pieces into smaller pieces to were it will give each plate the same amount.

Step-by-step explanation:

The graphs of each group of equations have at least one characteristic in common. Name the characteristics and then graph each group of equations on the same axes to verify your answer.

Answers

a.

Common characteristics, all the equations pass through the origin.

b.

Common characteristics, all equations are parallel lines and are increasing function

c.

Common characteristics, all the equations pass through the origin.

d.

Common characteristics, all the equations pass through the origin and lie on the same points. The three equations are the same.

e.

The three equations intersect at (2,-2).

Using the Breadth-First Search Algorithm, determine the minimum number of edges that it would require to reachvertex 'H' starting from vertex 'A'>

Answers

Answer:

The algorithm is given below.

#include <iostream>

#include <vector>

#include <utility>

#include <algorithm>

using namespace std;

const int MAX = 1e4 + 5;

int id[MAX], nodes, edges;

pair <long long, pair<int, int> > p[MAX];

void initialize()

{

   for(int i = 0;i < MAX;++i)

       id[i] = i;

}

int root(int x)

{

   while(id[x] != x)

   {

       id[x] = id[id[x]];

       x = id[x];

   }

   return x;

}

void union1(int x, int y)

{

   int p = root(x);

   int q = root(y);

   id[p] = id[q];

}

long long kruskal(pair<long long, pair<int, int> > p[])

{

   int x, y;

   long long cost, minimumCost = 0;

   for(int i = 0;i < edges;++i)

   {

       // Selecting edges one by one in increasing order from the beginning

       x = p[i].second.first;

       y = p[i].second.second;

       cost = p[i].first;

       // Check if the selected edge is creating a cycle or not

       if(root(x) != root(y))

       {

           minimumCost += cost;

           union1(x, y);

       }    

   }

   return minimumCost;

}

int main()

{

   int x, y;

   long long weight, cost, minimumCost;

   initialize();

   cin >> nodes >> edges;

   for(int i = 0;i < edges;++i)

   {

       cin >> x >> y >> weight;

       p[i] = make_pair(weight, make_pair(x, y));

   }

   // Sort the edges in the ascending order

   sort(p, p + edges);

   minimumCost = kruskal(p);

   cout << minimumCost << endl;

   return 0;

}

Can someone help me? Please i need this done

Answers

Your answer is y=-10x+8b I think. This is because on the x axis it hits -10 and on the y axis it’s 8