1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Levart [38]
2 years ago
14

Which of the following explains why trucking is the most widely used transportation method?

Engineering
1 answer:
True [87]2 years ago
6 0

Answer:

Trucks are the fastest mode of transportation

Explanation:-Means of transport is a term used to distinguish between different ways of transportation or transporting people or goods. The different modes of transport are air, water, and land transport, which includes Rails or railways, road and off-road transport. Other modes also exist, including pipelines, cable transport, and space transport. Human-powered transport and animal-powered transport are sometimes regarded as their own mode, but never fall into the other categories. In general, transportation is used for moving of people, animals, and other goods from one place to another. The means of transport, on the other hand, refers to the (motorized) vehicles necessary for transport according to the chosen mode (car, airplane, ship, truck and rail). Each mode of transport has a fundamentally different technological solution, and some require a separate environment. Each mode has its own infrastructure, vehicles, and operations.

****†********************MD.Tashin*************************

You might be interested in
List and describe three classifications of burns to the body.
DiKsa [7]

AnswerWhat Are the Classifications of Burns? Burns are classified as first-, second-, or third-degree, depending on how deep and severe they penetrate the skin's surface. First-degree burns affect only the epidermis, or outer layer of skin. The burn site is red, painful, dry, and with no blisters.

Explanation:

8 0
2 years ago
Read 2 more answers
Which of the following tape measure techniques can be used to achieve accurate measurements? Choose all that apply.
zepelin [54]

Answer: Pull.

Because it's all about height width and Breadth!

5 0
2 years ago
A continuous random variable, X, whose probability density function is given by f(x) = ( λe−λx , if x ≥ 0 0, otherwise is said t
Ganezh [65]

Answer:

a) F(x) = \lambda \int_0^{\infty} e^{-\lambda x} dx= -e^{-\lambda x} \Big|_0^{\infty} = 1- e^{-\lambda x} \

b) P(10 < X

Explanation:

Previous concepts

The cumulative distribution function (CDF) F(x),"describes the probability that a random variableX with a given probability distribution will be found at a value less than or equal to x".

The exponential distribution is "the probability distribution of the time between events in a Poisson process (a process in which events occur continuously and independently at a constant average rate). It is a particular case of the gamma distribution".

Part a

Let X the random variable of interest. We know on this case that X\sim Exp(\lambda)

And we know the probability denisty function for x given by:

f(x) = \lambda e^{-\lambda x} , x\geq 0

In order to find the cdf we need to do the following integral:

F(x) = \lambda \int_0^{\infty} e^{-\lambda x} dx= -e^{-\lambda x} \Big|_0^{\infty} = 1- e^{-\lambda x} \

Part b

Assuming that X \sim Exp(\lambda =0.1), then the density function is given by:

f(x) = 0.1 e^{-0.1 x} dx , x\geq 0

And for this case we want this probability:

P(10 < X

And evaluating the integral we got:

P(10 < X

4 0
3 years ago
C++ - Green Crud Fibonacci programThe following program is to be written with a loop. You are to write this program three times
Fynjy0 [20]

Answer:

Below is the required code:

Explanation:

Using for loop

#include <iostream>

using namespace std;

int main()

{

    //Initial crud size

    int init = 0;

    int newCrud;

    int next=0;

    //Number of days to simulate

    int no_days;

    int day;

    cout << "Enter initial amount of green crud: ";

    cin >> newCrud;

    cout << "Enter number of days to simulate: ";

    cin >> no_days;

    for (day = 10; day<=no_days; day++)

    {

         if (day % 10 == 0)

         {

             next = newCrud + init;

         }

             newCrud = init;

             init = next;

    }

    if (no_days < 5)

    cout << "\nCrud reproduce only after 5 days minimum.Hence the current amount is "

    << newCrud << " pounds.";

    else

    cout << "On day " << no_days << " you have " << init

    << " pounds of green crud." << endl;

    cout << "\nWould you like to continue? (y or n): ";

    cin >> ans;

         return 0;

}

Output:

         Enter initial amount of green crud: 5

         Enter number of days to simulate: 220

    On day 220 you have 10485760 pounds of green crud.

Using while loop

Program:

#include <iostream>

using namespace std;

int main()

{

    char ans='y';

    while (ans == 'Y' || ans == 'y')

    {

         //Initial crud size

         int init = 0;

         int newCrud;

         int next=0;

         //Number of days to simulate

         int no_days;

         int day;

         cout << "Enter initial amount of green crud:

         ";

         cin >> newCrud;

         cout << "Enter number of days to simulate:

         ";

         cin >> no_days;

         for (day = 10; day<=no_days; day++)

         {

             if (day % 10 == 0)

             {

                  next = newCrud + init;

             }

                  newCrud = init;

                  init = next;

         }

         if (no_days < 5)

         cout << "\nCrud reproduce only after 5 days

         minimum.Hence the current amount is "

         << newCrud << " pounds.";

         else

         cout << "On day " << no_days << " you have "

         << init

         << " pounds of green crud." << endl;

         cout << "\nWould you like to continue? (y or

         n): ";

         cin >> ans;

    }

    return 0;

}

Output:

Enter initial amount of green crud: 5

Enter number of days to simulate: 220

On day 220 you have 10485760 pounds of green crud.

Would you like to continue? (y or n): y

Enter initial amount of green crud: 5

Enter number of days to simulate: 225

On day 225 you have 10485760 pounds of green crud.

Using do while loop

Program:

#include <iostream>

using namespace std;

int main()

{

    char ans;

    do

    {

         //Initial crud size

         int init = 0;

         int newCrud;

         int next=0;

         //Number of days to simulate

         int no_days;

         int day;

         cout << "Enter initial amount of green crud: ";

         cin >> newCrud;

         cout << "Enter number of days to simulate: ";

         cin >> no_days;

         for (day = 10; day<=no_days; day++)

         {

             if (day % 10 == 0)

             {

                  next = newCrud + init;

             }

                  newCrud = init;

                  init = next;

         }

         if (no_days < 5)

         cout << "\nCrud reproduce only after 5 days

         minimum.Hence the current amount is "

         << newCrud << " pounds.";

         else

         

         cout << "On day " << no_days << " you have " <<

         init << " pounds of green crud." << endl;

         cout << "\nWould you like to continue? (y or n):

         ";

         cin >> ans;

    } while (ans == 'Y' || ans == 'y');

    return 0;

}

Output:

Enter initial amount of green crud: 5

Enter number of days to simulate: 220

On day 220 you have 10485760 pounds of green crud.

Would you like to continue? (y or n): y

Enter initial amount of green crud: 5

Enter number of days to simulate: 225

On day 225 you have 10485760 pounds of green crud.

7 0
3 years ago
The first step in treating shock is to
san4es73 [151]

Answer:

Lay the person down and elevate thier legs slightly.

Explanation:

5 0
2 years ago
Other questions:
  • Determine displacement (in) of a 1.37 in diameter steel bar, which is 50 ft long under a force of 27,865 lb if elasticity modulu
    5·1 answer
  • Answer every question of this quiz
    7·1 answer
  • Time complexity of merge sort
    15·1 answer
  • Can I get a hand? Thanks y’all much luv
    13·1 answer
  • Write a single statement that prints outsideTemperature with 2 digits in the fraction
    8·1 answer
  • A household refrigerator that has a power input of 450 W and a COP of 1.5 is to cool 5 large watermelons, 10 kg each, to 8 C. If
    7·1 answer
  • A converging - diverging frictionless nozzle is used to accelerate an airstream emanating from a large chamber. The nozzle has a
    15·2 answers
  • Heyyyyyyyyy people wrud
    7·1 answer
  • A coil consists of 200 turns of copper wire and have a cross-sectional area of 0.8 mmm square.The mean length per turn is 80 cm
    13·1 answer
  • Which - type of service shop is least likely to provide service to all
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!