to calculate friction loss when using multiple hoselines of unequal length, a driver/operator must: select one: a. use estimates because calculations are too complex. b. calculate friction loss for only one hoseline and then estimate the other. c. calculate friction loss for the longest hoseline and double that number for the total. d. calculate friction loss for each hoseline supplied by separate discharges to individual nozzles.

Answers

Answer 1

The correct answer to the question is option d: calculate friction loss for each hoseline supplied by separate discharges to individual nozzles.

When using multiple hoselines of unequal length, it is important for the driver/operator to calculate friction loss in order to ensure proper water pressure and flow to each hose. This method ensures that each hose receives the appropriate amount of water and pressure based on its length and diameter. Simply estimating or doubling the friction loss of the longest hose may result in inadequate water supply and could put firefighters at risk. It is important for driver/operators to be well-trained and knowledgeable in calculating friction loss and other fireground operations to effectively and safely perform their duties.

learn more about friction loss  here:

https://brainly.com/question/31558257

#SPJ11


Related Questions

Write a function countCoins that accepts an input stream and an output stream as arguments. The input stream represents a person's money grouped into stacks of coins. Add up the cash values of all the coins and print the total money at the end. Input is arranged as pairs of tokens, where each pair begins with an integer and is followed by the type of coin, which will be either "pennies" (1 cent each), "nickels" (5 cents each), "dimes" (10 cents each), or "quarters" (25 cents each), case-insensitively. A given coin might appear more than once on the same line. For example, if the input file contains the following text: 3 pennies 2 quarters 1 pennies 3 nickels 4 dimes 3 pennies are worth 3 cents, and 2 quarters are worth 50 cents, and 1 penny is worth 1 cent, and 3 nickels are worth 15 cents, and 4 dimes are worth 40 cents. The total of these is 1 dollar and 9 cents, therefore your function would produce the following output if passed this input data. Notice that the function should show exactly two digits after the decimal point, so it says 09 for 9 cents: Total money: $1.99 Here is a second example. Suppose the input file contains the following text. Notice the capitalization and spacing: 12 QUARTERS 1 Pennies33 PeNnIeS 10 niCKELS Then your function would produce the following output: Total money: $3.84 You may assume that the file contains at least 1 pair of tokens. You may also assume that the input is valid; that the input has an even number of tokens, that every other token is an integer, and that the others are valid coin types

Answers

Here's a possible implementation of the countCoins function in Python:

python

Copy code

def countCoins(input_stream, output_stream):

   coins = {"pennies": 1, "nickels": 5, "dimes": 10, "quarters": 25}

   total_cents = 0

   for line in input_stream:

       tokens = line.strip().split()

       for i in range(0, len(tokens), 2):

           amount = int(tokens[i])

           coin_type = tokens[i+1].lower()

           value = coins[coin_type] * amount

           total_cents += value

   dollars = total_cents // 100

   cents = total_cents % 100

   output_stream.write(f"Total money: ${dollars}.{cents:02d}\n")

The function takes an input stream and an output stream as arguments, which can be files or any other type of stream object that supports the readline and write methods, respectively.

The function first defines a dictionary coins that maps coin types to their values in cents. Then it reads each line from the input stream and splits it into pairs of tokens using split. For each pair, it extracts the amount and coin type and calculates the total value in cents. It accumulates the total in the total_cents variable.

Finally, it converts the total amount from cents to dollars and cents, and writes the result to the output stream in the required format using formatted string literals.

Here's an example of how to use the function with standard input and output:

python

Copy code

import sys

countCoins(sys.stdin, sys.stdout)

Assuming the input is provided via standard input and the output is sent to standard output, you can run the program like this:

mathematica

Copy code

$ python count_coins.py

12 QUARTERS

1 Pennies

33 PeNnIeS

10 niCKELS

^D

Total money: $3.84

The ^D symbol represents the end of input, which you can enter by typing Ctrl-D on Unix-like systems or Ctrl-Z on Windows.

Learn more about function here:

https://brainly.com/question/12431044

#SPJ11

what should an inspector do when conditions that may trigger an unwanted alarm or environmental conditions that may negatively affect a system are recognized?

Answers

When an inspector recognizes conditions that may trigger an unwanted alarm or environmental conditions that may negatively affect a system, there are several actions that they can take.

Firstly, they should assess the situation to determine the severity of the risk and whether immediate action is required. If the risk is high, they may need to alert relevant personnel or evacuate the area. Secondly, they should investigate the cause of the issue and take steps to mitigate the risk, such as adjusting settings or repairing equipment. Lastly, they should document the incident and report it to the appropriate authorities or management. It is important for inspectors to be proactive in identifying potential risks and taking preventative measures to ensure the safety and reliability of systems.

learn more about  unwanted alarm here:

https://brainly.com/question/29171828

#SPJ11

master stream appliances should be operated at a maximum of: select one: a. 50 psi (350 kpa). b. 80 psi (560 kpa). c. 110 psi (760 kpa). d. 150 psi (1050 kpa).

Answers

To ensure their safe and efficient operation, master stream appliances should be operated at a maximum of 80 psi (560 kpa).

Master stream appliances are large water delivery devices designed to deliver a high volume of water for fire suppression. They are typically used in large-scale firefighting operations where a significant amount of water is required.  Operating at higher pressures can cause the device to become unstable and may result in injury or damage to property. Additionally, excessive pressure can cause the water stream to break apart, reducing the effectiveness of the device. It is important to carefully follow manufacturer guidelines and ensure that master stream appliances are operated at safe and appropriate pressures to ensure the safety of firefighters and the effectiveness of the device.

learn more about master stream  here:

https://brainly.com/question/28234606

#SPJ11

A mixture of ethane, propane, n-butane, n-pentane, and n-hexane is to be separated to relatively pure components. Component Desired Purity Ethane (C2) Propane (C3) n-Butane (C4) n-Pentane (C5) n-Hexane (C6) Feed (kmol per hour) 5 25 30 20 20 Relative Volatility with respect to n-hexane 16 7.8 3.8 1.9 1.0 99 95 90 99 99 d. If the split fractions (referring to top product) for each component in the table are to be 1, 0.96, 0.02, 0, 0, respectively, determine the flow rates of the distillate (D) and bottoms (W), and the distillate compositions. e. If the column should operate at R/Rmin=1.5 (Rmin=2.095) and N/Nmin=1.78 to meet the specifications for the previous question, determine the number of actual stages. (Hint: Use Gilliland Equation)

Answers

d. The flow rates of the distillate (D) and bottoms (W), and the distillate compositions can be determined using the split fractions and feed flow rates provided. Given the split fractions of 1, 0.96, 0.02, 0, and 0 for the components C2, C3, C4, C5, and C6 respectively, we can calculate the flow rates as follows:

Distillate flow rate (D):

D = Feed flow rate * Split fraction

For C2:

D(C2) = 5 kmol/h * 1 = 5 kmol/h

For C3:

D(C3) = 25 kmol/h * 0.96 = 24 kmol/h

For C4:

D(C4) = 30 kmol/h * 0.02 = 0.6 kmol/h

For C5:

D(C5) = 20 kmol/h * 0 = 0 kmol/h

For C6:

D(C6) = 20 kmol/h * 0 = 0 kmol/h

Bottoms flow rate (W):

W = Feed flow rate - D

For C2:

W(C2) = 5 kmol/h - 5 kmol/h = 0 kmol/h

For C3:

W(C3) = 25 kmol/h - 24 kmol/h = 1 kmol/h

For C4:

W(C4) = 30 kmol/h - 0.6 kmol/h = 29.4 kmol/h

For C5:

W(C5) = 20 kmol/h - 0 kmol/h = 20 kmol/h

For C6:

W(C6) = 20 kmol/h - 0 kmol/h = 20 kmol/h

Distillate compositions:

The distillate compositions can be calculated by dividing the individual component flow rates in the distillate by the total distillate flow rate (D).

For C2:

Distillate composition of C2 = D(C2) / D = 5 kmol/h / 29.6 kmol/h

For C3:

Distillate composition of C3 = D(C3) / D = 24 kmol/h / 29.6 kmol/h

For C4:

Distillate composition of C4 = D(C4) / D = 0.6 kmol/h / 29.6 kmol/h

For C5:

Distillate composition of C5 = D(C5) / D = 0 kmol/h / 29.6 kmol/h

For C6:

Distillate composition of C6 = D(C6) / D = 0 kmol/h / 29.6 kmol/h

For determining the flow rates of the distillate (D) and bottoms (W), we use the given split fractions and multiply them by the feed flow rate for each component. This gives us the respective flow rates of the components in the distillate and bottoms.

For the distillate compositions, we divide the individual component flow rates in the distillate by the total distillate flow rate to obtain the proportions of each component in the distillate.

e. To determine the number of actual stages required for the column to meet the specified conditions, we can use the Gilliland Equation:

N/Nmin = (R/Rmin)^(0.14)

Given R/Rmin = 1.5 and N/Nmin = 1.78, we can rearrange the equation to solve for N, the number of actual stages:

N/Nmin = (R/Rmin)^(0.14)

Substituting the given values:

1.78 = (1.5)^(0.14)

Taking the logarithm of both sides:

log(1.78) = log((1.5)^(0.14))

Using logarithmic properties:

log(1.78) = 0.14 * log(1.5)

Solving for the logarithm:

log(1.78) / log(1.5) ≈ 0.181 / 0.176 ≈ 1.028

Now, to determine the number of actual stages (N), we multiply N/Nmin by the minimum number of stages (Nmin):

N = N/Nmin * Nmin

N = 1.028 * 2.095

N ≈ 2.152

Since the number of stages must be a whole number, we round up the value to the nearest integer:

N ≈ 3

Therefore, the number of actual stages required to meet the specifications is approximately 3.

To determine the number of actual stages, we use the Gilliland Equation, which relates the number of stages (N) to the reflux ratio (R) and the minimum reflux ratio (Rmin). The equation is based on empirical data and provides an estimation of the number of stages required for separation.

By substituting the given values of R/Rmin and N/Nmin into the equation, we can solve for N. Taking the logarithm of both sides allows us to simplify the equation and calculate the value of N.

In this case, the calculated value of N is approximately 2.152. Since the number of stages must be a whole number, we round up to the nearest integer, resulting in a requirement of approximately 3 actual stages.

To know more about Volatility:  https://brainly.com/question/31379894

#SPJ11

nk-1) relates two states of an ideal gas with constant specific ratio k and equal he expression P2/pi = (T2/ click if you would like to Show work for this question: Open Show Work

Answers

The given expression [tex]P2/P1 = (T2/T1)^{(k/(k-1))}[/tex] relates two states of an ideal gas with constant specific ratio k and equal heat. This is known as the ideal gas law or the equation of state for an ideal gas. It describes the relationship between pressure, volume, temperature, and the number of moles of gas in a system.

Here's how you can derive this equation:

Starting with the ideal gas law [tex]PV = nRT[/tex], where P is pressure, V is volume, n is the number of moles, R is the gas constant, and T is temperature.

Rearranging this equation, we get [tex]P = nRT/V[/tex].

Now consider two states of the gas, 1 and 2, with the same number of moles and constant specific ratio k.

From the definition of specific ratio, we know that [tex]P/V^k = constant[/tex] for both states.

Therefore, we can write [tex]P1/V1^k = P2/V2^k[/tex].

Using the ideal gas law, we can substitute [tex]P1 = nRT1/V1[/tex] and [tex]P2 = nRT2/V2[/tex] into this equation:

[tex](nRT1/V1)/(V1^k) = (nRT2/V2)/(V2^k)[/tex]

Simplifying, we get:

[tex]T2/T1 = (V2/V1)^{(k-1)}[/tex]

Since the gas is kept at constant specific ratio k and equal heat, we know that [tex]V2/V1 = (T2/T1)^{(1/(k-1))}.[/tex]

Substituting this expression into the previous equation, we get:

[tex]T2/T1 = [(T2/T1)^{(1/(k-1))}]^{(k-1) }[/tex]

Simplifying, we get:

[tex]T2/T1 = (T2/T1)^{(k/(k-1)) }[/tex]

Finally, we can write the expression as [tex]P2/P1 = (T2/T1)^{(k/(k-1))}[/tex], which relates the pressure and temperature of the gas at two different states.

Learn more about pressure: https://brainly.com/question/25736513

#SPJ11

What do Tube Trailers carry? A. Lengths of pipe. B. Lengths of rod. C. Cable D. Compressed

Answers

Tube Trailers are designed to carry Compressed. The correct answer is option D. the vorrect answer is option D.

Tube trailers are specialized transportation vehicles designed to carry and transport compressed gases in high-pressure cylinders or tubes. These trailers are commonly used for the transportation of various gases, such as hydrogen, oxygen, nitrogen, helium, and other industrial or medical gases.

The cylinders or tubes on tube trailers are made of strong materials, such as steel or composite materials, to withstand the high pressures required for storing and transporting compressed gases. The trailers are equipped with safety features to ensure the secure containment and transport of the gases, including valves, pressure relief devices, and protective enclosures.

Learn more about compression from:

https://brainly.com/question/17266589

#SPJ11

which means of moving water uses one or more pumps that take water from a primary source and discharge it through filtration and treatment processes? select one: a. direct pumping system b. linear pumping system c. primary pumping system d. forced distribution system

Answers

The means of moving water that uses one or more pumps to take water from a primary source and discharge it through filtration and treatment processes is called the Primary Pumping System.

This system is commonly used in water treatment plants to pump water from a source such as a lake, river, or well, and then deliver it to treatment processes such as filtration, disinfection, and storage.The primary pumping system typically consists of a series of pumps that are used to move water from one stage to the next in the treatment process. The first pump, called the raw water pump, is used to pump water from the source to the treatment plant. From there, the water is typically sent through a series of filters, such as sand or activated carbon filters, to remove impurities and particles.

To learn more about discharge click the link below:

brainly.com/question/16023630

#SPJ11

Assume the following shows the contents of the specified registers and memory locations: REGISTER CONTENTS R4 0101 0000 0110 0000 R5 0011 0001 0000 0000 R6 0010 1100 0001 0000 ADDRESS CONTENTS0x5050 0011 0001 0010 0000 0x5051 0101 0000 0110 1011 0x5052 0111 0011 0000 1111 Also assume the following LC-3 machine instructions are loaded into memory at addresses shown: Ox5010 0110 101 110 000010 0x5011 1010 100 001000000 What is the effective address for each of the instructions above? (Enter your 16-bit answer in hex like the following example: 0x2A3F)A.) first instruction above B.) second instruction above

Answers

A.) The effective address for the first instruction is 0x506A. B.) The effective address for the second instruction is 0x5065.

A.) The effective address for the first instruction is 0x5106.

The first instruction is 0110 101 110 000010. The 9 bits used for the PCOffset9 are 110 000 010. This is a negative value in two's complement notation. Therefore, we need to extend the sign bit to the left to get a full 16-bit value of 1111 1111 1100 0001. This is added to the incremented value of the PC (0x5012) to get an effective address of 0x5106.

B.) The effective address for the second instruction is 0x5028.

The second instruction is 1010 100 001000000. The 6 bits used for the PCOffset6 are 001 000. This is a positive value in two's complement notation. Therefore, we can simply add this value to the incremented value of the PC (0x5012) to get an effective address of 0x5028.

To know more about two's complement visit:

https://brainly.com/question/31039239

#SPJ11

Identify the equation to calculate the balance factor, B, of an AVL tree node N. a. B=min(Height(RightSub Tree(N)),Height(LeftSub Tree(N))) b.B=max(Height(RightSub Tree(N)),Height(LeftSub Tree(N)))C. B=Height(LeftSub Tree(N))+Height(RightSub Tree(N)) d. B=Height(LeftSub Tree(N)-Height(RightSub Tree(N))

Answers

The correct equation to calculate the balance factor, B, of an AVL tree node N is (b) B=max(Height(RightSub Tree(N)),Height(LeftSub Tree(N))).

The balance factor of a node in an AVL tree is defined as the difference between the height of its left subtree and the height of its right subtree. By using the maximum of the heights of the left and right subtrees, the equation ensures that the balance factor is always a positive or zero value, which is required for maintaining the balance property of the AVL tree. If the balance factor of a node is greater than 1 or less than -1, then the node is unbalanced, and the tree needs to be restructured to restore balance.

The equation to calculate the balance factor, B, of an AVL tree node N is option D: B=Height(LeftSub Tree(N))-Height(RightSub Tree(N)).

Learn more about balance factor: https://brainly.com/question/29577380

#SPJ11

credit card numbers are not completely random sequences; they follow certain rules depending on the card issuer. a visa number must meet these criteria:

• Begin with 51, 52, 53, 54, 55, or something in the range 222100-272099

• 16 digits in length

• Satisfy the Luhn formula, created by IBM scientist Hans Peter Luhn in the 1950s

Here’s how the Luhn formula works:

Double every other digit going backwards, starting from the next-to-last digit.

For each of the doubled values that exceed 9, subtract 9.

Add up all the doubled values, along with the digits that were not doubled.

If the result is a multiple of 10, the number satisfies the Luhn formula. If the result is not a multiple of 10, the number does not satisfy the Luhn formula.

For example, 2221008763790559 is a valid MasterCard number. (Don’t worry, this was randomly gener- ated and most likely doesn’t actually belong to anyone :) You can easily verify that the number begins with 222100 and is 16 digits long. To check whether it satisfies the Luhn formula:

Original number:

2221008763790559

Double every other digit going left, starting from the next-to-last digit:

4 2 4 1 0 0 16 7 12 3 14 9 0 5 10 9

For every doubled value that exceeds 9, subtract 9:

4241007733590519

Finally,addupallthemodifieddigits: 4+2+4+1+0+0+7+7+3+3+5+9+0+5+1+9=60, which is indeed a multiple of 10.

Within your Lab4HW folder, write a program named MasterCardValidator.java that allows the user to enter a credit card number. The program should then determine and print whether that number is a valid MasterCard number according to the criteria above. You can use the randomly generated MasterCard numbers from https://www.freeformatter.com/credit-card-number-generator-validator.html to help you test.

Hint: There are several ways you can read the number from the user, but I recommend reading it as a string. You can then use strName.charAt(i) to get the individual digits. However, these are treated as char values rather than int values. To convert to int, you can use one of the following:

• For a single digit: Integer.parseInt("" + strName.charAt(i)), or strName.charAt(i) - ’0’

• For multiple digits: Integer.parseInt(strName.substring(startIndex, endIndex))

Here are some examples of what your completed program might look like when you run it. Underlined

parts indicate what you type in as the program is running.

Example 1

Enter a card number for validation: 2221008763790559

Valid

Example 2

Enter a card number for validation: 2221018763790559

Invalid

Example 3

Enter a card number for validation: 55

Invalid

Answers

Sample outputs----------------------

Enter a card number for validation: 5197372004187295

Valid

Enter a card number for validation: 5101161768631191

Valid

------------------------------------------------

How to explain the information

import java.util.Scanner;

public class MasterCardValidator

{

//this function checks for the beginning characters of the card

// returns false if it does not follows the first criteria given in the problem statement

static boolean initchars(String card){

//gets the first 2 characters

int init=Integer.parseInt(card.substring(0,2));

//gets the first 6 characters

int init2 =Integer.parseInt(card.substring(0,6));

if((init>50 && init<56)|| (init2>=222100 && init2<=272099) )

return true;

return false;

}

public static void main(String[] args) {

Scanner scanner = new Scanner(System.in);

System.out.print("Enter a card number for validation: ");

String card=scanner.nextLine();

//checks for the card number length

if( card.length()!=16){

System.out.println("Invalid");

return;

}

//checks if the first criteria is false

if(initchars(card)==false ){

System.out.println("Invalid");

return;

}

//Luhn's formula

int sum=0;

int num;

//iterate over every character of card string

for(int i=0; i<card.length();i++){

//if odd place, add it the sum

if(i%2==1){

sum=sum+Integer.parseInt(""+card.charAt(i));

}

//if even place, double the number and add

else{

num=Integer.parseInt(""+card.charAt(i))*2;

if(num>9){

sum=sum+(num-9);

}

else{

sum=sum+num;

}

}

}

//checks if the sum if divisible by 60

if(sum%10==0){

System.out.println("Valid");

}

else{

System.out.println("Invalid");

}

}

}

Learn more about output on

https://brainly.com/question/30864293

#SPJ1

In Linux, the password hash is produced by applying a hash function for many rounds (e.g., 5000 rounds for SHA-512). This seems to waste time, Why does Linux do this?

Answers

Linux and other Unix-like operating systems use a technique called "key stretching" to protect password hashes from brute-force attacks.

Key stretching involves applying a hash function repeatedly to the password and adding additional random data to make it harder for attackers to crack the hash.

By applying a hash function for many rounds, Linux increases the amount of time it takes to compute the hash, making it more difficult for attackers to brute-force the password. This is especially important given the ever-increasing computing power available to attackers.

In addition to key stretching, Linux also uses other security measures such as salting the password hash, which adds additional random data to the password before hashing, further increasing the security of the hash. These techniques make it much more difficult for attackers to crack password hashes, and help to protect user accounts from unauthorized access.

Learn more about Linux  here:

https://brainly.com/question/30176895

#SPJ11

What is the difference between dissociation and association mechanism?

Answers

Dissociation and association mechanisms are two types of chemical reactions that describe how molecules interact with each other.

In a dissociation mechanism, a single molecule breaks down into two or more smaller molecules or ions. This process typically involves the input of energy, such as heat or light. For example, when hydrogen chloride gas (HCl) is exposed to water (H2O), it dissociates into hydrogen ions (H+) and chloride ions (Cl-), according to the equation HCl + H2O → H+ + Cl- + H2O.

On the other hand, in an association mechanism, two or more molecules or ions combine to form a larger molecule or compound. This process often releases energy, such as in exothermic reactions. An example of an association reaction is the combination of hydrogen gas (H2) and oxygen gas (O2) to form water (H2O), according to the equation 2H2 + O2 → 2H2O.

Therefore, the main difference between dissociation and association mechanisms is the direction of the reaction: dissociation involves breaking down a larger molecule into smaller molecules or ions, while association involves combining smaller molecules or ions into larger molecules or compounds.

Learn more about Dissociation here:

https://brainly.com/question/30983331

#SPJ11

Given the link length and angular velocity magnitude and direction, one can calculate: (circle the correct ones) -The magnitude of the velocity of point A The direction of the velocity of point A -The magnitude of the tangential acceleration of point A -The direction of the tangential acceleration of point A -The magnitude of the normal acceleration of point A -The direction of the normal acceleration of point A -The angular acceleration of the link 2

Answers

Given the link length and angular velocity magnitude and direction, one can calculate: the magnitude and direction of the velocity of point A, the magnitude and direction of the tangential acceleration of point A, the magnitude and direction of the normal acceleration of point A, and the angular acceleration of link 2.

Given the link length and angular velocity magnitude and direction, calculate the velocity of point A using the formula: v = ω*r, where ω is the angular velocity, r is the length of the link, and v is the velocity of point A.

Find the direction of the velocity of point A by drawing a tangent to the path of point A.

Calculate the tangential acceleration of point A using the formula: at = α*r, where α is the angular acceleration, r is the length of the link, and at is the tangential acceleration of point A.

Find the direction of the tangential acceleration of point A by drawing a tangent to the path of point A and noting the direction of the angular acceleration.

Calculate the normal acceleration of point A using the formula: an = v^2/r, where v is the velocity of point A, r is the length of the link, and an is the normal acceleration of point A.

Find the direction of the normal acceleration of point A by drawing a line perpendicular to the tangent at point A.

Calculate the angular acceleration of link 2 using the formula: α = dω/dt, where α is the angular acceleration, ω is the angular velocity, and t is time.

Learn more about angular velocity: https://brainly.com/question/29342095

#SPJ11

6) Find the unit impulse response of the LTI system specified by the equation:

d^2y/dt^2 + 4dy/dt + 3y(t) = dx/dt + 5x(t)

Please explain clearly and in detail so I can understand it.

Thanks:)

Answers

To find the unit impulse response of the given LTI system, we need to assume that x(t) = δ(t), where δ(t) is the unit impulse function.

Substituting x(t) = δ(t) in the given equation, we get:

d^2y/dt^2 + 4dy/dt + 3y(t) = dδ(t)/dt + 5δ(t)

Taking the Laplace transform of both sides, we get:

(s^2Y(s) - sy(0) - y'(0)) + 4(sY(s) - y(0)) + 3Y(s) = s + 5

Applying the initial conditions y(0) = y'(0) = 0, we get:

s^2Y(s) + 4sY(s) + 3Y(s) = s + 5

Factoring the left side, we get:

(s + 1)(s + 3)Y(s) = s + 5

Dividing both sides by (s + 1)(s + 3), we get:

Y(s) = (s + 5)/(s + 1)(s + 3)

Now, we need to find the inverse Laplace transform of Y(s) to obtain the unit impulse response h(t):

Y(s) = (s + 5)/(s + 1)(s + 3)

Y(s) = A/(s + 1) + B/(s + 3) + C

(s + 5) = A(s + 3) + B(s + 1) + C(s + 1)(s + 3)

Setting s = -3, we get:

2C = 2

C = 1

Setting s = -1, we get:

4A = 4

A = 1

Setting s = any other value (say s = 0), we get:

5 = 4B + 3

B = 1/4

Therefore, Y(s) = 1/(s + 1) + 1/(4(s + 3)) + 1/(s + 3)

Taking the inverse Laplace transform, we get:

h(t) = e^(-t) + (1/4)e^(-3t) + e^(-3t)

Thus, the unit impulse response of the given LTI system is:

h(t) = e^(-t) + (1/4)e^(-3t) + e^(-3t)

To find the maximum shear stress, we need to find the maximum value of τ = T*r/J, where T is the torsional moment, r is the radius of the shaft, J is the polar moment of inertia. Since the shaft is cylindrical, J = πr^4/2.

The torsional moment at point B is given as 8 kip-ft and at point C is given as 12 kip-ft. The radius of the shaft is not given. Assuming a radius of 1 inch, we get:

J = π*(1/12)^4/2 = 1.64e-8 ft^4

For point B, τ = T*r/J = 8/(1.64e-8) = 4.878e+11 psi

For point C, τ = T*r/J = 12/(1.64e-8) = 7.317e+11 psi

To plot the shear stress and shear strain distribution, we need to know the material properties of the shaft such as the shear modulus and the yield strength. Without this information, we cannot plot the distribution.

Learn more about LTI system here:

https://brainly.com/question/31259087

#SPJ11

3. [DFT Properties] Given that the DFT of {2,0,6, 4} is {Xo,X1, X2, X3}, determine the DFT of {2,1,0,3} and express the result in terms of Xo, X1, X2, X3. (Do not compute the numerical DFT values.) Hint: Relate the two sequences using transformations we discussed in class (scaling, time reversal, conjugation, circular shift, ...) and use the corresponding properties of the DFT

Answers

The DFT of {2,1,0,3} can be expressed in terms of Xo, X1, X2, X3 using DFT properties.

Use the time-reversal property of DFT to reverse the order of the sequence {2,1,0,3} to get {3,0,1,2}.

Use the circular shift property of DFT to shift the sequence {3,0,1,2} to the right by one position to get {2,3,0,1}.

Use the linearity property of DFT to express {2,3,0,1} in terms of {2,0,6,4} as follows:

{2,3,0,1} = 0.5(2+6Xo+3X1+1X2) + 0.5(2-2jX1-3X2+4jX3) + 0.5(0-4Xo+1X1+3X2) + 0.5(0+4jX1-1X2+2jX3)

Simplify the expression to get the DFT of {2,1,0,3} in terms of Xo, X1, X2, X3 as follows:

{X0, X1, X2, X3} = {(2+3X1)/2, (6-2jX1+X2+3jX3)/2, (4-2X0+X1+3X2)/2, (-2jX1+X2-2jX3)/2}

Learn more about sequences: brainly.com/question/7882626

#SPJ11

Using the Bernoulli equation, show that for an incompressible substance, the pressure must decrease in the direction of flow if the velocity increases, assuming no change in elevation

Answers

A fluid moves faster as it enters a narrower passage. Its kinetic energy consequently rises. The extra work done to move the solution into the channel results in an upsurge in kinetic energy in the Bernoulli equation.

Whenever the channel narrows, there is a force difference. as the force exerted is equivalent to the pressure instances in the area. This variation in pressure gives rise to a net force on the fluid, and the net force moves the fluid in the Bernoulli equation.

The fluid's kinetic energy is increased by the network completed. Therefore, no matter if a fluid is contained within a tube, the pressure decreases in a fluid moving quickly.

Learn more about Bernoulli equation, here:

https://brainly.com/question/30504672

#SPJ4

Write a Circle class that has the following fields: • radius: a double • PI: a final double initialized with the value 3.14159 The class should have the following methods: • Constructor. Accepts the radius of the circle as an argument. • Constructor. A no-arg constructor that sets the radius field to 0.0. • setRadius. A mutator method for the radius field. • getRadius. An accessor method for the radius field. • getArea. Returns the area of the circle, which is calculated as area = PI * radius * radius • getDiameter. Returns the diameter of the circle, which is calculated as diameter = radius * 2 • getCircumference. Returns the circumference of the circle, which is calculated as circumference = 2 * PI * radius Write a program that demonstrates the Circle class by asking the user for the circle’s radius, creating a Circle object, and then reporting the circle’s area, diameter, and circumference.

Coding needed to be in Java and this chapter is about class... Thank You

Answers

Here is the Java code for the Circle class and the program to demonstrate it:

arduino

Copy code

import java.util.Scanner;

public class Circle {

  private double radius;

  private final double PI = 3.14159;

  public Circle(double radius) {

      this.radius = radius;

  }

  public Circle() {

      this.radius = 0.0;

  }

  public void setRadius(double radius) {

      this.radius = radius;

  }

  public double getRadius() {

      return this.radius;

  }

  public double getArea() {

      return PI * this.radius * this.radius;

  }

  public double getDiameter() {

      return this.radius * 2;

  }

  public double getCircumference() {

      return 2 * PI * this.radius;

  }

  public static void main(String[] args) {

      Scanner input = new Scanner(System.in);

      System.out.print("Enter the radius of the circle: ");

      double radius = input.nextDouble();

      Circle circle = new Circle(radius);

      System.out.printf("The area of the circle is: %.2f\n", circle.getArea());

      System.out.printf("The diameter of the circle is: %.2f\n", circle.getDiameter());

      System.out.printf("The circumference of the circle is: %.2f\n", circle.getCircumference());

      input.close();

  }

}

The program asks the user for the radius of the circle, creates a Circle object with the input radius, and then calls the getArea(), getDiameter(), and getCircumference() methods of the Circle object to display the area, diameter, and circumference of the circle, respectively.

Learn more about Circle class here:

https://brainly.com/question/29989278

#SPJ11

problem 5 a sieve analysis test was performed on a sample of coarse aggregate and produced the results shown in the table below. a. calculate the percent passing through each sieve. b. what is the maximum size? c. what is the nominal maximum size? d. plot the percent passing versus sieve size on a semi-log gradation chart. e. plot the percent passing versus sieve size on a 0.45 gradation chart.

Answers

Percent passing through each sieve can be calculated using the data in the table. Maximum size is the sieve size with 0% passing. The brief answers with explanation is given below.


a. To calculate percent passing through each sieve, divide the weight retained on each sieve by the total weight of the sample and multiply by 100. The results are: 4.75mm - 100%, 2.36mm - 91%, 1.18mm - 59%, 600µm - 25%, 300µm - 6%, 150µm - 0%.
b. The maximum size is the sieve size with 0% passing, which in this case is 150µm.
c. The nominal maximum size is the smallest sieve size through which 100% of the aggregate passes, which is 4.75mm.
d. The semi-log gradation chart plots percent passing on the linear y-axis and sieve size on the logarithmic x-axis.
e. The 0.45 gradation chart plots the same data on a different scale, where the x-axis represents the percentage of material passing each sieve and the y-axis represents the sieve size.

To know more about logarithmic visit:

brainly.com/question/12420826

#SPJ11

Question 5 (1 point) The Apply Design Template command is used to: Question 5 options: Change the order of the slides. Change the background and fonts of the entire presentation. Create a new, empty presentation Change the shape of the slides

Answers

Design templates include color palettes, master slides and titles with personalized formatting, and stylized fonts created for a specific "look." The slide master and color scheme of the new template are used instead of the slide master and color scheme of the previous presentation when you apply a design template to it.

Keynote addresses are another name for presentations in particular formats. There are also more and more interactive presentation that involve the audience.

This establishes a dialogue between the speaker and the listener in place of a monologue. An interactive presentation fonts has the benefit of capturing the audience's attention and fostering a sense of community.

Learn more about presentation, from :

brainly.com/question/649397

#SPJ4

Consider the following code segment.int[] arr = {1, 2, 3, 4, 5, 6, 7}; for (int k = 3; k

Answers

The code segment provided initializes an integer array "arr" with seven elements ranging from 1 to 7. A for loop is then implemented with a starting index of 3, and a stopping condition of the length of the array minus 2.

Inside the for loop, the code calculates the sum of three consecutive elements in the array starting from the current index. The result of the sum is then printed to the console. In other words, the code segment is computing the sum of consecutive elements in the array "arr" with a sliding window of size 3. The starting index of the window is shifted by 1 in each iteration until the last three elements of the array are reached. The output of this code will be the sum of the sliding window in each iteration, which is {6, 9, 12, 15, 18}. It's worth noting that the stopping condition in the for loop is "arr.length - 2" because we are summing three consecutive elements, and we do not want to go beyond the last three elements of the array, which would cause an index out of bounds error.

Learn more about array here-

https://brainly.com/question/30757831

#SPJ11

Technician A says that an alternator overrunning pulley is used to reduce vibration and noise, Technician B says that an overrunning alternator pulley or dampener uses a one-way clutch. Who is right?

Answers

Both Technician A and Technician B are correct, but they are describing different aspects of an overrunning alternator pulley (OAP).

An OAP is a component used in automotive alternator systems to reduce vibration and noise. It is designed to allow the alternator to spin freely when the engine is running at a higher speed than the alternator, but to prevent the alternator from driving the engine when the alternator is spinning faster than the engine. This is important because it prevents the alternator from slowing down the engine during deceleration, which can cause stalling or other drivability issues.

Technician A is correct that an overrunning alternator pulley is used to reduce vibration and noise. By allowing the alternator to spin freely, it reduces the torsional vibration and noise that can be transmitted to the rest of the vehicle.

Technician B is also correct that an overrunning alternator pulley uses a one-way clutch. The one-way clutch allows the pulley to rotate in one direction but not in the opposite direction. This prevents the alternator from driving the engine during deceleration, but allows it to spin freely when the engine is running at a higher speed than the alternator. Some OAPs may also incorporate a damper mechanism to further reduce torsional vibration and noise.

In summary, both technicians are correct, but they are describing different aspects of an overrunning alternator pulley. Technician A is correct that an OAP is used to reduce vibration and noise, while Technician B is correct that an OAP uses a one-way clutch.

Learn more about alternator systems: https://brainly.com/question/27855835

#SPJ11

tech a says that using a scan tool to activate the torque converter clutch (tcwith the engine idling in drive with the brake applied is a typical, manufacturer recommended troubleshooting task. tech b says that diagnosis is a waste of time on a faulty transmission since it will be rebuilt anyway. who is correct?

Answers

Tech A is correct in saying that using a scan tool to activate the torque converter clutch is a typical and recommended troubleshooting task by manufacturers.

This test can reveal if the torque converter clutch is functioning properly or if there are any electrical or mechanical issues causing it to fail. It is an essential step in identifying the root cause of the transmission problem.
On the other hand, Tech B is incorrect in stating that diagnosis is a waste of time on a faulty transmission since it will be rebuilt anyway. Diagnosis is crucial in identifying the exact problem and determining if a rebuild is necessary or if a repair can be made. Skipping diagnosis and immediately opting for a rebuild can be a costly mistake and may not even solve the issue at hand.
In conclusion, both Tech A and Tech B's statements cannot be compared as they are addressing two different aspects of transmission repair. Tech A's statement is a necessary step in diagnosing the issue while Tech B's statement overlooks the importance of diagnosis in transmission repair.

learn more about torque converter clutch here:

https://brainly.com/question/30631762

#SPJ11

For a given steel, E - 200 GPa and G -80 GPa. If the state of strain at a point within this material is given by [\begin{array}{ccc}200&100&0\\100&300&400\\0&400&0\end{array}\right]Find the corresponding components of the stress tensor.

Answers

The stress-strain relationship for a linearly elastic material is given by:

σ = Eε + 2Gγ

where σ is the stress tensor, ε is the strain tensor, and γ is the shear strain tensor. The given strain tensor is:

ε = [\begin{array}{ccc}200&100&0\100&300&400\0&400&0\end{array}\right]

The corresponding components of the stress tensor can be found by multiplying the strain tensor by the elastic moduli:

σ = Eε + 2Gγ

σ = Eε + G(ε - ε^T)

where ε^T is the transpose of the strain tensor. Plugging in the given values, we get:

σ = (200 GPa) [\begin{array}{ccc}200&100&0\100&300&400\0&400&0\end{array}\right] + (80 GPa) [\begin{array}{ccc}0&0&0\0&0&1\0&1&0\end{array}\right]([\begin{array}{ccc}200&100&0\100&300&400\0&400&0\end{array}\right] - [\begin{array}{ccc}200&100&0\100&300&0\0&0&0\end{array}\right])

Simplifying the expression and converting the units to Pa, we get:

σ = [\begin{array}{ccc}2.56x10^9&1.12x10^9&3.2x10^8\1.12x10^9&5.12x10^9&6.4x10^9\3.2x10^8&6.4x10^9&-1.6x10^9\end{array}\right] Pa

Therefore, the components of the stress tensor are:

σ_11 = 2.56x10^9 Pa

σ_12 = 1.12x10^9 Pa

σ_13 = 3.2x10^8 Pa

σ_21 = 1.12x10^9 Pa

σ_22 = 5.12x10^9 Pa

σ_23 = 6.4x10^9 Pa

σ_31 = 3.2x10^8 Pa

σ_32 = 6.4x10^9 Pa

σ_33 = -1.6x10^9 Pa

Learn more about stress here:

https://brainly.com/question/31366817

#SPJ11

a vortex sheet extends horizontally from (0,0) to (1.2,0) with γ(x)=(x-1.2)2. find the velocity at point (1.0,2.0) in cartesian components.

Answers

The velocity at point (1.0, 2.0) in Cartesian components is (-0.4, 0.8).

Given a vortex sheet that extends horizontally from (0,0) to (1.2,0) with a circulation function γ(x) = (x-1.2)^2.

We can use the Biot-Savart law to calculate the velocity at a point (1.0,2.0) located above the vortex sheet.

The velocity components can be calculated using the formula:

Vx = -1/(2π) * ∫γ(x) * (y-y')/r^2 dx

Vy = 1/(2π) * ∫γ(x) * (x-x')/r^2 dx

Here, r is the distance between the point (x,y) on the vortex sheet and the point (1.0,2.0).

We can evaluate these integrals using γ(x) = (x-1.2)^2 and the given point (1.0,2.0) to get Vx = -0.4 and Vy = 0.8.

Therefore, the velocity at point (1.0,2.0) in Cartesian components is (-0.4, 0.8).

To learn about more problems from Biot-Savart law : https://brainly.com/question/29564274

A pump is installed in a 100-m pipeline to lift water 20 m from reservoir A to reservoir B. The pipe is rough concrete (ε = 0.6mm) with a diameter of 80 cm. The design discharge is 2.06 m3/s. The suction line is 15 m of the 100-m length, and minor losses add up to 0.95 m on the suction side of the pump. If the pump has a critical cavitation parameter (σc) of 0.10, determine the allowable height the pump can be placed above the supply reservoir. Assume completely turbulent flow in the pipeline (Patm = 101.4 kPa, Pv = 2.37 kPa). Answer (Z = 6.38 m)

Answers

To determine the allowable height (Z) for the pump placement above the supply reservoir, we need to consider the given parameters: rough concrete pipe (ε = 0.6mm), diameter of 80 cm, design discharge of 2.06 m³/s, suction line length of 15 m, minor losses of 0.95 m, and a critical cavitation parameter (σc) of 0.10.

Additionally, the atmospheric pressure (Patm) is 101.4 kPa, and vapor pressure (Pv) is 2.37 kPa. Given the completely turbulent flow in the pipeline, we can apply the Darcy-Weisbach equation and minor loss equation to determine the total head loss. Next, we calculate the NPSH available (NPSHa), considering atmospheric pressure, vapor pressure, and total head loss. To avoid cavitation, we must ensure that NPSHa is greater than or equal to the critical cavitation parameter times the vapor pressure (σc * Pv). By analyzing the given parameters and applying the appropriate fluid mechanics principles, the allowable height for the pump above the supply reservoir is found to be Z = 6.38 m. This ensures that the pump operates within the critical cavitation limits and efficiently transfers water from reservoir A to reservoir B.

Learn more about atmospheric pressure here-

https://brainly.com/question/28310375

#SPJ11

Question 13 0 Consider the following recursive method. public static void stars(int num) if (num =- 1) return; stars(num - 1); for (int i = 0; i < num; i++) System.out.print("*"); System.out.println(); What is printed as a result of the method call stars(5) ?

Answers

When calling the method stars(5), a pattern of asterisks is printed with each row containing an increasing number of asterisks, starting from one and ending with five.

When you call the method stars(5), the output will be:

*
**
***
****
*****

The method stars(int num) is a recursive method that takes an integer input and prints a pattern of asterisks. The method first checks if the input is equal to -1, in which case it returns without executing any further. If not, it calls itself with a decreased value (num - 1) and then prints a row of asterisks based on the value of 'num'. The process continues until 'num' reaches -1.

In the case of stars(5), the recursive calls will be made as follows:
stars(5) -> stars(4) -> stars(3) -> stars(2) -> stars(1) -> stars(0) -> stars(-1)

When 'num' reaches -1, the method starts returning and printing the asterisk rows for each previous value of 'num' in reverse order. This generates the pattern mentioned in the main answer.

When calling the method stars(5), a pattern of asterisks is printed with each row containing an increasing number of asterisks, starting from one and ending with five.

To know more about recursive method visit:

https://brainly.com/question/13106357

#SPJ11

why should each finish be listed separately on the estimate?

Answers

Each finish should be listed separately on the estimate to provide transparency and accuracy in pricing.

1. Clarity and organization: Listing each finish separately helps to provide a clear and organized estimate, making it easier for both the service provider and the client to understand the specific costs and details associated with each finish.

2. Accurate cost breakdown: By listing each finish individually, you can accurately allocate costs for materials, labor, and other expenses related to each specific finish. This helps in providing a transparent and accurate cost breakdown to the client.

3. Customization: Separating each finish allows the client to choose, add, or remove specific finishes based on their preferences and budget constraints.

4. Project management: Listing each finish separately can help in better project management and scheduling, as different finishes might require different time frames, resources, and coordination efforts.

5. Tracking progress: Having a separate list for each finish can help track the progress of each finish during the project execution, ensuring that all finishes are completed as planned and within the allocated budget.

Learn more about estimate: https://brainly.com/question/28416295

#SPJ11

what should a technician do if they discover that some r-410a was added to an r-22 system?

Answers

If a technician discovers that R-410A has been added to an R-22 system, they should immediately address the situation to prevent potential damage and safety hazards.

First, the technician must recover the mixed refrigerant from the system using proper recovery equipment, ensuring that both R-22 and R-410A are removed. It is important to follow EPA guidelines during the recovery process to avoid environmental harm and potential fines.

Once the mixed refrigerant is recovered, the technician should carefully inspect the system components for damage, as R-410A operates at a higher pressure than R-22, which could cause strain on the system. Any damaged or incompatible parts should be replaced with components that are suitable for the intended refrigerant type.

After replacing any necessary components, the technician can then recharge the system with the appropriate refrigerant, either R-22 or a suitable alternative approved by the system manufacturer. This process ensures the system operates efficiently and safely, while also complying with relevant regulations.

Finally, it is essential to educate the system owner about the importance of using the correct refrigerant to prevent similar issues in the future.

You can learn more about EPA guidelines at: brainly.com/question/30745008

#SPJ11

cmu units are manufactured using high slump concrete. (True or False)

Answers

False. CMU (Concrete Masonry Units) are typically manufactured using low slump or stiff concrete. This type of concrete is better suited for producing strong and durable blocks that can withstand the pressure and weight of building structures. High slump concrete, on the other hand, is typically used for applications where flowability and ease of placement are more important than strength and durability, such as in paving and flatwork. Therefore, it is not common to manufacture CMU using high slump concrete.

The statement "CMU units are manufactured using high slump concrete" is False.

CMU units, or Concrete Masonry Units, are manufactured using low slump concrete to maintain their shape and structural integrity.

To know more about Concrete visit:

https://brainly.com/question/31607678

#SPJ11

A(n) symbol in a URL indicates a query.

Answers

Yes, A(n) "?" symbol in a URL indicates a query.

Step-by-step explanation:
1. A URL (Uniform Resource Locator) is a web address that helps locate a specific resource on the internet.
2. In a URL, different symbols have specific meanings and functions.
3. The "?" symbol is used to separate the main part of the URL from the query parameters.
4. When the "?" symbol appears in a URL, it indicates that a query or a set of parameters is being provided to the web server to filter or customize the content being requested.
5. These query parameters usually follow the "?" symbol and are separated by "&" if there are multiple parameters.

For example, in the URL "https://www.example.com/search?query=example&sort=date", the "?" symbol indicates that a query is being provided, with the parameters "query=example" and "sort=date".

Learn more about URL: https://brainly.com/question/28431103

#SPJ11

Other Questions
_______ is an estimating technique in which complex activities are further decomposed to a point where more accurate estimates can be made. FreshBr, a campus coffee shop at Dalhousie University, uses 100 bags of whole bean coffee every month. Currently, FreshBr has been purchasing its coffee beans from a domestic supplier (DS), located on East Coast, Canada. It costs $20 per bag to purchase from DS. The fixed cost for every shipment, independent of the order size, is $120. The annual cost of holding is approximately 25% of the purchase cost.First, calculate the EOQ for the DS. Then calculate the total minimum annual cost (purchase, holding, and ordering).Due to increased demand by the conscious students on campus and driven by the increasing social vision of the coffee shop, FreshBr is also considering the possibility of purchasing from a fair trade supplier (FS), a cooperative located in Cte DIvoire, West Africa. The price of coffee beans from FS is $25 per bag, and the transportation cost per shipment is estimated to be $2000. The contract with FS would require exactly three shipments per year. Calculate for the FS the total annual cost (purchase, holding, and ordering).c. As a part of their project, Dr. lks talented students conducted a survey and found that all customers are willing to pay at least 10 cents more for a cup of fair-trade coffee. They also learned from FreshBr administration that a bag of coffee beans yields about 200 cups of coffee and that the demand for coffee is stable throughout the year. Should FreshBr go with DS or FS? Show all your calculations, quantitative justification, and include assumptions if needed. which type of invasin allows a pathogen to break down a blood clot that the body has generated to trap their spread? group of answer choices kinase neuraminidase flagella collagenase coagulase Consider all of the different types of C-H bonds in cyclopentene and rank them in order of increasing bond strength: 10.25 Compound A has the molecular formula C3H12 and undergoes monochlorination to produce four different constitutional isomers. (a) Compound A has the molecular formula C5H12 and undergoes monochlorination to produce four different constitutional isomers. Draw the structure of compound A when the sea retreats because sea level drops and/or land is uplifted, a(n) occurs. ____________ is the branch of philosophy concerned with examining the nature of knowledge. for a company that manufactures plastic signs, the printing press to make the signs, the manager's salary, and the utilities are all examples of what is needed before you can disseminate a classified report held by your organization which originated at the department of agriculture to a department of state inspector that you have been assigned to assist? the report was created on may 24, 2011 and it does not contain any dissemination control markings. you have an azure web app named contoso2023.you add a deployment slot to contoso2023 named slot1.you need to be able to perform a deployment slot swap with preview.what should you modify? Consider the circuit shown. Note that this is the same circuit as shown in Figure 1 of the lab (and it is the same circuit that you will build in lab), except that I have chosen the direction of the two loops (the two gray arrow loops) to be opposite of how they are in Figure 1 of the lab. Note that the choice of direction in the loops is arbitrary, meaning that you'll get the same answer no matter how you draw your loops a) Use the loop and junction rules to write down the three equations for circuit drawn to the right that correspond to Equations (1), (2), and (3) in the lab. Loop 1 12 b) Why aren't the resistors R1 and R2 in series? Why aren't they in parallel? Evaluate the integrals (Indefinite and Definite) and Simplify.3x/(x+4) dx How much charge does 1000 electrons have ? (charge of an electron is -1. 6x10^-19) the convention on biological diversity was ratified or accepted by 193 countries. which country was not among those who ratified this treaty? Deferred revenue should be classified as a(n) ________ on the balance sheet write the equation of an ellipse centered at the origin with height 8 units and width 16 units. be sure to show or explain how you got your answer (2 points). the following budget data pertain to the machining department of yolkenverst co.: maximum capacity 60,000 units machine hours per unit 2.50 variable factory overhead $3.60 per machine hour fixed factory overhead $433,500 the company prepared the budget at 85 % of the maximum capacity level. the department uses machine hours as the basis for applying standard factory overhead costs to production. the standard fixed overhead application rate for the machining department (to two decimal places) is: Triangle LMN is similar to triangle MNP. 16. 0 in. M8. 0 inNPart AWhat is the length of NP. In inches?Enter your answer in the boxPart BIf the perimeter of triangle LMN is 43. 2 inches, what is the perimeter of triangle MNP in inches?Enter your answer in the box 1) How many more ounces need to be added to the right side for the scale to be balanced? 8 ounces 4 ounces 2 ounces 16 ounces if a researcher is devising a laboratory study using animals to determine the effects of inhalking a toxicant how will the toxicant likely be introduced Give me an example of a pictogram