Standard Proctor compaction was performed on a soil and the following results were obtained Maximum dry unit weight - 115 pcf Optimum water content = 18% The above described soil is to be used as a compacted fill material for a construction job. Specification requires a relative compaction of 90% of Standard Proctor compaction, Soil from a borrow site is to be used for this job. The borrow site has a water content of 18% and a bulk unit weight of 105 pct. The specific gravity of the soil particles is 2.75. This soil is to be excavated and transported to the construction job site for use as a fill material. What is the minimum number of cubic yards of soil needed from the borrow site to produce 10,000 cubic yards of compacted fill.

Answers

Answer 1

Thus, the minimum number of cubic yards of soil needed from the borrow site to produce 10,000 cubic yards of compacted fill is 9858 cubic yards.

To calculate the minimum number of cubic yards of soil needed from the borrow site to produce 10,000 cubic yards of compacted fill, we need to use the concept of relative compaction.

First, let's calculate the target dry unit weight for the compacted fill material based on the specification requirement of 90% of Standard Proctor compaction:

Target dry unit weight = 0.9 x Maximum dry unit weight
Target dry unit weight = 0.9 x 115 pcf
Target dry unit weight = 103.5 pcf

Next, we need to calculate the required volume of soil from the borrow site to produce 10,000 cubic yards of compacted fill:

Required volume = (10,000 cubic yards) / Relative compaction
Relative compaction = (Bulk unit weight of soil in borrow site) / (Target dry unit weight)
Relative compaction = (105 pcf) / (103.5 pcf)
Relative compaction = 1.0145

Required volume = (10,000 cubic yards) / 1.0145
Required volume = 9858 cubic yards

Therefore, the minimum number of cubic yards of soil needed from the borrow site to produce 10,000 cubic yards of compacted fill is 9858 cubic yards.

Know more about the relative compaction

https://brainly.com/question/15681999

#SPJ11


Related Questions

You are developing a new programming language and currently working on variable names. You have a list of words that you consider to be good and could be used for variable names. All the strings in words consist of lowercase English letters.

A complex variable name is a combination (possibly with repetitions) of some strings from words, written in CamelCase. In other words, all the strings are written without spaces and each string (with the possible exception of the first one) starts with a capital letter.

Your programming language should accept complex variable names only.

You need to check if the variableName is accepted by your programming language.

Example

For words = ["is", "valid", "right"] and variableName = "isValid", the output should be camelCaseSeparation(words, variableName) = true.

As variableName consists of words "is" and "valid", and both of them are in words.

For words = ["is", "valid", "right"] and variableName = "IsValid", the output should be camelCaseSeparation(words, variableName) = true.

Note that both variants: "IsValid" and "isValid" are valid in CamelCase.

For words = ["is", "valid", "right"] and variableName = "isValId", the output should be camelCaseSeparation(words, variableName) = false.

variableName is separated to words "is", "val", "id", and not all words are in words.

Input/Output

[execution time limit] 0.5 seconds (cpp)

[input] array.string words

An array of words consisting of lowercase English letters.

Guaranteed constraints:

1 ≤ words.length ≤ 103.

[input] string variableName

A string to be checked. Consists of lowercase and uppercase English letters only.

Guaranteed constraints:

1 ≤ variableName.length ≤ 103.

[output] boolean

Return true, if variableName is a complex variable name, and false otherwise

PLEASE DO THIS IN C++ or JAVA

bool camelCaseSeparation(vector words, string variableName) {

}

Answers

To check if a variable name is accepted by the programming language, we need to split the variable name into its constituent words and check if each word is present in the list of valid words. We can do this by iterating through the variable name string and keeping track of the start and end indices of each word.

If a word is found that is not in the list of valid words, the function should return false. If all the words are valid, the function should return true. Here's a sample implementation in C++: ``` bool camelCaseSeparation(vector words, string variableName) { int n = variableName.length(); int start = 0; vector parts; // split the variable name into constituent words for (int i = 1; i < n; i++) { if (isupper(variableName[i])) { parts.push_back(variableName.substr(start, i - start));  start = i; } } parts.push_back(variableName.substr(start)); // check if all the words are in the list of valid words for (string part : parts) { bool found = false; for (string word : words) { if (part == word) { found = true; break; } } if (!found) { return false;  } } return true; } ``` The function takes in the list of valid words as a vector of strings and the variable name as a string. It then iterates through the variable name to split it into constituent words, using the `isupper` function to detect the start of each word. It then checks if each word is present in the list of valid words, and returns false if any of them are not found. If all the words are valid, the function returns true.

Learn more about programming language here-

https://brainly.com/question/23959041

#SPJ11

1. A plate bearing test using 750 mm diameter rigid plate was made on a subgrade as well as on 254 mm of gravel base course. The unit load required to cause settlement of 5 mm was 69 kPa and 276 kPa, respectively. Determine the required thickness of base course to sustain a 222.5 kN tyre, 690 kPa pressure and maintain a deflection of 5 mm.

Answers

To determine the required thickness of base course to sustain a 222.5 kN tire, 690 kPa pressure, and maintain a deflection of 5 mm, we can use the following equation derived from the plate bearing test results:

q = (P/D^2) × [(2.5 + 0.35B)/B] × (1 + 0.2B/G)

where q is the allowable pressure in kPa, P is the wheel load in kN, D is the diameter of the plate in mm, B is the thickness of the base course in mm, and G is the thickness of the subgrade in mm.

First, we need to determine the allowable pressure for the given deflection of 5 mm:

q = (276 kPa) × [(2.5 + 0.35(254 mm))/254 mm] × (1 + 0.2(254 mm/0))

q = 996.16 kPa

This means that the 254 mm gravel base course can already sustain a pressure of 996.16 kPa while maintaining a deflection of 5 mm.

Next, we can use the same equation to determine the required thickness of base course for the given wheel load and pressure:

222.5 kN = P
690 kPa = q
D = 750 mm
G = unknown
B = to be determined

690 kPa = (222.5 kN/750^2) × [(2.5 + 0.35B)/B] × (1 + 0.2B/G)

Solving for B, we get:

B = 260 mm

Therefore, the required thickness of base course to sustain a 222.5 kN tire, 690 kPa pressure, and maintain a deflection of 5 mm is 260 mm.
Final answer:

This is a question pertaining to Geotechnical Engineering, specifically dealing with the thickness of a gravel base course needed to distribute a specific load to maintain a deflection of 5mm. The calculated thickness of gravel base course needed is approximately 377 mm.

Explanation:

Essentially, this question relates to the principles of Civil Engineering, specifically the field of Geotechnical Engineering. It is asking how thick a base course of gravel needs to be in order to absorb and properly distribute a given load without letting the road surface sag more than a designated amount, in this case, 5mm. This is important in road construction, where the stability and longevity of the road surface is paramount.

In the given problem, the applied stress is 690 kPa, however the base course can withstand only 276 kPa to maintain a deflection of 5mm. Thus, you need a thicker layer of base course. The calculation formula might look something like this: {(690 kPa / 276 kPa) - 1} * 254mm.

After performing the calculation above, the thickness of the base course required to withstand a pressure of 690 kPa and maintain a deflection of 5mm is approximately 377 mm.

Learn more about Gravel Base Course here:

https://brainly.com/question/33164566

#SPJ2

A liquid drug, with the viscosity and density of water, is to be administered through a hypodermic needle. The inside diameter of the needle is 0.28 mm and its length is 57 mm. Determine: Consider, Pwater = 1000 kg/m and = 0.001 N-s/m² a) The maximum volume flow rate for which the flow will be laminar (Re< 2300). m3/s. Submit part 1 mark Unanswered b) The pressure drop required to deliver the maximum flow rate. Δp= kPa. Submit part 1 mark Unanswered c) The corresponding wall shear stress. N/m2

Answers

a) The maximum volume flow rate for laminar flow is 0.092 m³/s.

b) The pressure drop required to deliver the maximum flow rate is 202.4     kPa.

c) The corresponding wall shear stress is 3.3 Pa.

a) The maximum volume flow rate for which the flow will be laminar (Re< 2300)

The Reynolds number is given by:

Re = (ρVD)/μ

where ρ is the density of the fluid, V is the velocity of the fluid, D is the diameter of the needle, and μ is the dynamic viscosity of the fluid.

For laminar flow, Re < 2300. Therefore, we can rearrange the above equation to solve for the maximum volume flow rate as:

V = (Reμ)/(ρD)

Substituting the given values, we get:

V = (2300 x 0.001 N-s/m²)/(1000 kg/m³ x 0.28 x 10⁻⁶ m)

V = 0.092 m³/s

Therefore, the maximum volume flow rate for laminar flow is 0.092 m³/s.

b) The pressure drop required to deliver the maximum flow rate.

The pressure drop can be calculated using the Hagen-Poiseuille equation:

Δp = (8μVL)/(πD⁴)

where L is the length of the needle.

Substituting the given values, we get:

Δp = (8 x 0.001 N-s/m² x 57 x 10⁻³ m x 0.092 m³/s)/(π x (0.28 x 10⁻³ m)⁴)

Δp = 202.4 kPa

Therefore, the pressure drop required to deliver the maximum flow rate is 202.4 kPa.

c) The corresponding wall shear stress.

The wall shear stress can be calculated using the formula:

τ = (4μV)/(πD)

Substituting the given values, we get:

τ = (4 x 0.001 N-s/m² x 0.092 m³/s)/(π x 0.28 x 10⁻³ m)

τ = 3.3 Pa

Therefore, the corresponding wall shear stress is 3.3 Pa.

Learn more about flow rate here:

https://brainly.com/question/27880305

#SPJ11

Sketch the straight-line Bode plot of the gain only for the following voltage transfer functions: T(s) = 20s/ (s^2 + 58s + 400)

Answers

A straight-line Bode plot is a simplified representation of the frequency response of a system using straight-line approximations. In a straight-line Bode plot, the magnitude and phase response of a system are approximated by straight lines over specific frequency ranges.

To sketch the straight-line Bode plot for the gain of the voltage transfer function T(s) = 20s / (s^2 + 58s + 400), you need to follow these steps:

1. Identify the type of transfer function: The given function is a first-order numerator and a second-order denominator, making it a type 1 transfer function.

2. Determine the poles and zeros: For the given function, there is one zero at s = 0 and two poles, which are the roots of the denominator. To find the poles, solve the quadratic equation s^2 + 58s + 400 = 0. The poles are at s = -20 and s = -40.

3. Plot the Bode magnitude plot:
- At the zero (s=0), the slope of the magnitude plot will start at 20 dB/decade.
- At the first pole (s=-20), the slope decreases by 20 dB/decade, making the slope 0 dB/decade.
- At the second pole (s=-40), the slope decreases by another 20 dB/decade, resulting in a slope of -20 dB/decade.

4. Combine the slopes: The overall Bode plot starts with a positive slope of 20 dB/decade, then transitions to 0 dB/decade, and finally becomes negative with a slope of -20 dB/decade. This represents the gain of the voltage transfer function T(s) across different frequencies.

Remember that this is a straight-line approximation of the Bode plot, and the actual plot may have some deviations from these straight lines.

To learn more about voltage transfer function visit:

https://brainly.com/question/29751748

#SPJ11

How to draw a Rectangle in Mars Bitmap Display using MIPS Assembly Language? Please use Loops only. I know how to do it with Functions. I want to know how to draw a Rectangle with loops only. And the Rectangle has to be a filled rectangle with a color. Not just the border.

Answers

To draw a filled rectangle in Mars Bitmap Display using MIPS Assembly Language, you can use loops to set the color of each pixel within the bounds of the rectangle.

Here's an example code that draws a filled rectangle with the dimensions 20x10 pixels, starting from the top left corner (x=10, y=10) with the color red (0xFF0000):

perl

Copy code

.data

rectWidth:  .word 20

rectHeight: .word 10

rectColor:  .word 0xFF0000

rectX:      .word 10

rectY:      .word 10

.text

main:

   # set the initial x and y coordinates

   lw $t0, rectX

   lw $t1, rectY

   

   # set the width and height of the rectangle

   lw $t2, rectWidth

   lw $t3, rectHeight

   

   # set the color of the rectangle

   lw $t4, rectColor

   

   # loop over each row of the rectangle

   addi $t5, $zero, 0    # $t5 will hold the current row counter

rowLoop:

   slt $t6, $t5, $t3     # check if current row is within bounds

   beq $t6, $zero, endRowLoop  # if not, exit loop

   

   # loop over each column of the current row

   addi $t7, $zero, 0    # $t7 will hold the current column counter

colLoop:

   slt $t8, $t7, $t2     # check if current column is within bounds

   beq $t8, $zero, endColLoop  # if not, exit loop

   

   # set the color of the current pixel

   add $t9, $t1, $t5     # calculate the y-coordinate of the current pixel

   sll $t9, $t9, 9       # multiply y-coordinate by 512 (the width of the display)

   add $t9, $t9, $t0     # add the x-coordinate of the current pixel

   sw $t4, ($t9)         # set the color of the current pixel

   

   addi $t7, $t7, 1      # increment column counter

   j colLoop             # jump back to the beginning of the column loop

   

endColLoop:

   addi $t5, $t5, 1      # increment row counter

   j rowLoop             # jump back to the beginning of the row loop

   

endRowLoop:

   # exit program

   li $v0, 10

   syscall

This code uses two nested loops to iterate over each row and column of the rectangle. The x and y coordinates of the top-left corner of the rectangle are loaded from memory, as well as its width, height, and color. Inside the loop, the program calculates the coordinates of the current pixel and sets its color to the desired value. Finally, the program exits using the syscall instruction.

Note that the program assumes the display has a width of 512 pixels. If your display has a different width, you'll need to adjust the multiplication factor used to calculate the y-coordinate of each pixel.

Learn more about MIPS here:

https://brainly.com/question/30543677

#SPJ11

What are the commands to setup a password on the console connection (assume you are in the user mode)?

Answers

To set up a password on the console connection while in user mode, you will need to follow these steps:

1. Enter privileged mode by typing 'enable' and pressing Enter.
2. Enter global configuration mode with the command 'configure terminal'.
3. Access the console line configuration mode using 'line console 0'.
4. Set a password using the 'password [your_password]' command, where [your_password] is the desired password.
5. Enable password checking at login by typing 'login'.

Exit back to privileged mode using 'exit' twice. Remember to save the configuration with 'write memory'  in privileged mode to ensure the password remains after a device reboot.

Learn more about global configuration: https://brainly.com/question/24229583

#SPJ11

An open feedwater heater operating at a pressure greater than atmospheric allows oxygen and other dissolved corrosive gases to be vented from the cycle. This process is called ___

Answers

The process you are referring to is called deaeration. In a power plant, the feedwater heater plays a crucial role in improving the overall thermal efficiency of the system.

Open feedwater heaters, in particular, are commonly used in power plants that operate at a pressure greater than atmospheric. These feedwater heaters work by extracting steam from the turbine at a high-pressure point and mixing it with the feedwater before it enters the boiler. One of the benefits of using open feedwater heaters is their ability to remove dissolved gases, including oxygen, from the feedwater, which can cause corrosion and other issues in the system. The process by which these gases are removed from the cycle is known as venting.

Learn more about feedwater heaters: https://brainly.com/question/15073245

#SPJ11

(a) Calculate planar densities for the (100), (110), and (111) planes for FCC. (b) Calculate planar densities for the (100) and (110) planes for BCC. for FCC.(100) plane (FCC) planar density (110) plane (FCC) planar density(111) plane (FCC) planar density(100) plane (BCC) planar density (110) plane (BCC) planar density

Answers

a) planar density of (111) plane for FCC = 3sqrt(3)/4a^2. b) , planar density of (100) plane.

(a) Planar densities for FCC:

(100) plane: The plane is parallel to the x-y plane and intersects the x-axis, y-axis, and z-axis at (1,0,0), (0,1,0), and (0,0,1), respectively. The lattice constant is denoted as 'a'. The length of the edge of the unit cell along the x-axis is also 'a'. Thus, the area of the (100) plane is a^2. Since there is only one (100) plane per unit cell, the planar density is simply the area of the (100) plane divided by the area of the unit cell (a^2). Therefore, planar density of (100) plane for FCC = 1/a^2.

(110) plane: The plane is parallel to the x-z plane and intersects the x-axis, y-axis, and z-axis at (1,0,0), (0,1,0), and (1,1,0), respectively. The length of the diagonal of the base of the unit cell is 'a√2'. The length of the edge of the unit cell along the x-axis is also 'a'. The area of the (110) plane is the product of the length of the edge along the x-axis and the length of the diagonal of the base along the x-z plane, i.e., a x a√2 = 2a^2√2. Since there are two (110) planes per unit cell, the planar density is twice the area of the (110) plane divided by the area of the unit cell (2a^3). Therefore, planar density of (110) plane for FCC = 2√2/a^2.

(111) plane: The plane is parallel to the x-y-z plane and intersects the x-axis, y-axis, and z-axis at (1,0,0), (0,1,0), and (0,0,1), respectively. The length of the diagonal of the face of the unit cell is 'a√2'. The area of the (111) plane is the area of an equilateral triangle with a side length of 'a√2', i.e., (sqrt(3)/4) x (a√2)^2 = (sqrt(3)/2) x a^2. Since there are three (111) planes per unit cell, the planar density is three times the area of the (111) plane divided by the area of the unit cell (4a^2√2). Therefore, planar density of (111) plane for FCC = 3sqrt(3)/4a^2.

(b) Planar densities for :

(100) plane: The plane is parallel to the x-y plane and intersects the x-axis, y-axis, and z-axis at (1,0,0), (0,1,0), and (0,0,1), respectively. The length of the diagonal of the base of the unit cell is 'a√2'. The length of the edge of the unit cell along the x-axis is also 'a'. The area of the (100) plane is the product of the length of the edge along the x-axis and the length of the diagonal of the base along the x-y plane, i.e., a x a√2 = 2a^2. Since there is only one (100) plane per unit cell, the planar density is simply the area of the (100) plane divided by the area of the unit cell (2a^3). Therefore, planar density of (100) plane.

Learn more about planar density here:

https://brainly.com/question/31058285

#SPJ11

The phasor voltage Vab in the circuit shown in (Figure 1) is 240 ∠0∘V (rms) when no external load is connected to the terminals a, b. When a load having an impedance of 80−j60 Ω is connected across a, b, the value of Vab is 115.2+j33.6V (rms).

a) Find the impedance that should be connected across a, b for maximum average power transfer. (rectangular form)

b) Find the maximum average power transferred to the load of Part A.

c) Construct the impedance of Part A using components from the table if the source frequency is 1000 Hz

Answers

a) The impedance that should be connected across a, b for maximum average power transfer is 80+j60 Ω. b) The maximum average power transferred to the load of Part A is 400 W. c) The impedance of Part A, using components from the table at a frequency of 1000 Hz, is 68 + j58.67 Ω.

a) The impedance that should be connected across a, b for maximum average power transfer is the complex conjugate of the load impedance, i.e., Z_L* = 80+j60 Ω.

b) The maximum average power transferred to the load of Part A is given by P_max = |V_ab|^2 / (4Re[Z_L]), where |V_ab| is the magnitude of the voltage across terminals a, b and Re[Z_L] is the real part of the load impedance. Substituting the given values, we have P_max = |115.2+j33.6|^2 / (480) = 400 W.

c) To construct the impedance of Part A using components from the table, we can use a combination of a 68 Ω resistor, a 10 μF capacitor, and a 2.2 mH inductor in series. The impedance of this combination at a frequency of 1000 Hz is given by Z = R + j(2πfL - 1/(2πfC)) = 68 + j(2π10002.210^-3 - 1/(2π10001010^-6)) = 68 + j58.67 Ω.

To know more about impedance,

https://brainly.com/question/31426850

#SPJ11

Consider a pendulum system, which is a point mass m swinging on a mass-less rod of length l. For the simulation, use the values m = 1kg and l = 1m. the equation referred to in part b is this: d2ϕ/dt2 = -mg/l * sin(ϕ). (b). Now introduce the following two variables: We clearly have the relation x, -x2. Determine the expression for x using the differential equation you derived before.

Answers

For a pendulum system, which is a point mass m swinging on a mass-less rod of length l, the expression for x using the differential equation is:

x = -(l^2/g) * d^2ϕ/dt^2.

To determine the expression for x using the differential equation for the pendulum system, we'll consider the relation between the variables x and ϕ.

In the pendulum system, the variable x represents the displacement of the pendulum mass along the horizontal axis. We can relate x to the angular displacement ϕ using the length of the pendulum rod (l) and trigonometric relations.

From the geometry of the pendulum, we know that x = l * sin(ϕ). This equation represents the relation between the displacement along the x-axis and the angular displacement ϕ.

To express x in terms of the differential equation for the pendulum system, we can substitute this relation into the equation:

d^2ϕ/dt^2 = -(g/l) * sin(ϕ)

Replacing x with l * sin(ϕ) gives:

d^2ϕ/dt^2 = -(g/l) * x / l

Simplifying, we have:

d^2ϕ/dt^2 = -(g/l^2) * x

So, the expression for x using the differential equation is:

x = -(l^2/g) * d^2ϕ/dt^2

Note that in this expression, x represents the displacement of the pendulum mass along the x-axis, while d^2ϕ/dt^2 represents the second derivative of the angular displacement ϕ with respect to time.

To learn more about pendulum visit:

https://brainly.com/question/26449711

#SPJ11

calculate the energy stored in a 26.4 µf capacitor when it is charged to a potential of 116 v .

Answers

The energy stored in a capacitor can be calculated using the formula:

[tex]E = (1/2) * C * V^2[/tex], where E is the energy stored, C is the capacitance, and V is the potential (voltage) across the capacitor.

To calculate the energy stored in the capacitor, we need to know the capacitance (C) and the potential (V).

Given:

Capacitance (C) = 26.4 µF = [tex]26.4 * 10^{-6}[/tex] F

Potential (V) = 116 V

Using the formula for energy stored in a capacitor, we can substitute the given values into the formula:

E = [tex](1/2) * C * V^2[/tex]

E = [tex](1/2) * (26.4 * 10^{-6}) * (116^2)[/tex]

Calculating the expression on the right side of the equation, we can determine the energy stored in the capacitor.

Therefore, the energy stored in the 26.4 µF capacitor when it is charged to a potential of 116 V is the calculated value of E.

To learn more about capacitors: https://brainly.com/question/21851402

#SPJ11

_____ is the degree to which a tool or test measures the same thing each time it is administered.

Answers

The degree to which a tool or test measures the same thing each time it is administered is referred to as reliability.

It is an essential aspect of any assessment instrument and is crucial for ensuring that the results obtained are accurate and consistent over time. A reliable tool or test produces consistent results regardless of who is administering it, the time at which it is administered, and the circumstances under which it is administered. To determine the reliability of a tool or test, various statistical techniques can be used, such as test-retest reliability, inter-rater reliability, and internal consistency reliability. Test-retest reliability involves administering the same test to the same individuals on two different occasions and comparing the results. Inter-rater reliability measures the degree of agreement among different raters or observers when scoring or interpreting the test results. Internal consistency reliability assesses the consistency of the items within a test or questionnaire. In conclusion, the reliability of an assessment tool or test is crucial for ensuring that the results obtained are valid, trustworthy, and meaningful.

Know more about reliability here:

https://brainly.com/question/30154360

#SPJ11

Metal plates (k=180W/m⋅K,p=2800/m^3 and cp = 880J/kg. K) with a length of 1 m and a thickness of 2 cm exiting an oven are then conveyed through a 10-m-long cooling chamber at a speed of 5 mm/s. The plates enter the cooling chamber at an initial temperature of 155∘C. In the cooling chamber, the plates are cooled with 10∘C air blowing in parallel over them. To prevent any incident of thermal burn, it is necessary to design the cooling process such that the plates exit the cooling chamber at a relatively safe temperature. Determine the air velocity such that the temperature of the plates exiting the cooling chamber is 45∘ C or less. Assume combined laminar and turbulent flow (verify this assumption)

Answers

The thermal conductivity of the metal plates is 180 W/m⋅K, the density is 2800 kg/m^3, cooling chamber and the specific heat capacity is 880 J/kg⋅K. The plates are 1 m in length and have a thickness of 2 cm.

The cooling chamber is 10 m long and the plates are moving through it at a speed of 5 mm/s. The plates enter the cooling chamber at a temperature of 155∘C, and are cooled with 10∘C air blowing in parallel over them.

To calculate the rate of heat transfer, we need to know the convective heat transfer coefficient. This depends on the properties of the cooling air, the velocity of the air, and the geometry of the plates.

Using this value of h, we can calculate the initial rate of heat transfer from the plates to the air in the cooling chamber:

The rate of heat transfer will decrease as the temperature of the plates decreases, so we need to integrate the heat transfer equation over the length of the cooling chamber to find the final temperature of the plates.

So, based on these assumptions and calculations, the plates should exit the cooling chamber at a temperature of approximately 85∘C.

Learn more about cooling chamber here

https://brainly.com/question/18271934

#SPJ4

A standard-weight steel pipe of 12-in. nominal diameter carries water under a pressure of 440 psi. Knowing that the outside diameter is 12.75 in. and the wall thickness is 0.375 in., determine the maximum tensile stress in the pipe.

Answers

If a standard-weight steel pipe of 12-in. nominal diameter carries water under a pressure of 440 psi then the maximum tensile stress in the pipe is 7040 psi.

To determine the maximum tensile stress in the steel pipe, we can use the formula for hoop stress in a cylindrical pressure vessel. The hoop stress (σ_h) is given by:

σ_h = P * D / (2 * t)

where:

P = Pressure inside the pipe

D = Inside diameter of the pipe

t = Wall thickness of the pipe

Given:

Pressure (P) = 440 psi

Inside diameter (D) = 12 inches

Wall thickness (t) = 0.375 inches

Converting the inside diameter to feet and the wall thickness to feet:

D = 12 inches = 1 foot

t = 0.375 inches = 0.03125 feet

Substituting the values into the formula:

σ_h = (440 psi) * (1 foot) / (2 * 0.03125 feet)

= 440 psi / 0.0625

= 7040 psi

Therefore, the maximum tensile stress in the steel pipe is 7040 psi.

To learn more about pressure:

https://brainly.com/question/28012687

#SPJ11

A small business that connects personal devices within a​ 500-meter radius is​ a(n) ________.
A. wide area network
B. unorganized network
C. worldwide network
D. local area network
E. binding network

Answers

A small business that connects personal devices within a 500-meter radius is a(n) D. local area network (LAN). A LAN is a network that allows devices to communicate and share resources within a limited geographical area, such as an office or a building.

It is designed to facilitate fast and reliable communication between devices, providing efficient data transfer and reducing the need for additional hardware.

In contrast, a wide area network (A) covers a much larger geographical area, often spanning cities or countries and is typically used to connect different LANs. An unorganized network (B) does not apply to this context, as it implies a lack of structure or connectivity. A worldwide network (C) refers to a global network infrastructure, such as the Internet, which connects computers and devices across the world. A binding network (E) is not a standard term in networking.

In summary, a local area network (D) is the most suitable option for a small business that aims to connect personal devices within a 500-meter radius, providing fast and reliable communication within a limited geographical area.

You can learn more about the local area network at: brainly.com/question/13267115

#SPJ11

p 3.44 3 of 8 review part a complete the discussion about the fluid-flow analogy for an inductor.

Answers

In the context of electrical circuits, an inductor is a passive component that stores energy in its magnetic field when current flows through it.

To understand the behavior of an inductor, we can use a fluid-flow analogy. Imagine water flowing through a pipe with a waterwheel inside. The waterwheel represents the inductor, while the water flow represents the electrical current. When water starts to flow, it takes some time for the waterwheel to spin up due to its inertia. Similarly, when current flows through an inductor, it takes time for the magnetic field to build up. During this discussion, we can make an analogy between the waterwheel's inertia and the inductor's property called inductance, measured in henries (H). The higher the inductance, the more energy the inductor stores in its magnetic field, just as a larger waterwheel would store more energy as it spins.

When the water flow stops, the waterwheel continues spinning for a while due to the stored energy. Likewise, when current flow stops in an inductor, the collapsing magnetic field induces a voltage across the inductor, trying to maintain the current flow. This can be compared to the waterwheel slowly releasing its stored energy and maintaining water flow for some time. In summary, the fluid-flow analogy for an inductor helps us understand its behavior in electrical circuits. An inductor stores energy in its magnetic field when current flows through it, analogous to a waterwheel storing energy when water flows through a pipe. The inductor's inductance represents its ability to store energy, and when the current flow stops, the collapsing magnetic field induces a voltage across the inductor, similar to the waterwheel continuing to spin and maintaining water flow.

Learn more about inductor here: https://brainly.com/question/15893850

#SPJ11

find the crc of 1001100 using a generator 1011. use mod 2 division. show all steps including the checking at the receiver.

Answers

The remainder is 0, which means that the message has been received correctly.  To calculate the CRC of 1001100 using a generator 1011 and mod 2 division, we first need to append 3 zeroes to the end of the message to create a dividend.

So our dividend becomes 100110000.

Next, we divide this by the generator 1011 using mod 2 division, which involves performing XOR operations.

Here are the steps:

yaml

Copy code

1011 ) 100110000

1011

-----

 1100

 1011

-----

  0110

  0000

 -----

  0110

  0000

 -----

  0000

The result of this division is 1100, which is the CRC. We append this to the original message to create the transmitted message, which is 10011001100.

To check this at the receiver, the receiver divides the received message (10011001100) by the generator (1011) using mod 2 division.

yaml

Copy code

1011 ) 10011001100

1011

-----

 1100

 1011

-----

  0110

  0000

 -----

  0110

  0000

 -----

  0000

If there are no remainders left after the division, then the message has been received correctly. In this case, the remainder is 0, which means that the message has been received correctly.

Note that if any errors were introduced during transmission, the remainder would not be 0 and the receiver would know that an error occurred.

Learn more about  CRC here:

https://brainly.com/question/29130227

#SPJ11

for a rectangular channel 3 m wide and discharge of 12 m3, what is the alternate depth to the 90 cm depth? what is the specific energy for these conditions?

Answers

According to the rectangular channel, the alternative flow depth for the given conditions is 0.787 m and the specific energy is 1.327 m.

To find the alternate depth and specific energy, we need to use the concept of specific energy equation. The specific energy equation relates the flow depth, velocity, and gravity to the total energy per unit weight of the fluid. The specific energy can be calculated as follows:

Specific Energy = (Flow Energy + Potential Energy) / Unit weight of fluid

Where,

Flow Energy = [tex]Q^2 / (2gA^2)[/tex]

Potential Energy = y

Here, Q is the discharge, A is the cross-sectional area of the channel, y is the depth of flow, and g is the acceleration due to gravity.

Given:

Width of the rectangular channel (b) = 3 m

Discharge [tex](Q) = 12 m^3/s[/tex]

Depth of flow (y) = 0.9 m

First, we can calculate the cross-sectional area (A) of the flow as:

[tex]A = b * y = 3 * 0.9 = 2.7 m^2[/tex]

Now, we can calculate the velocity (V) of the flow as:

Q = A * V

V = Q / A = 12 / 2.7 = 4.44 m/s

Using the specific energy equation, we can calculate the specific energy (E) for the given depth of flow (y) as:

E = [tex](Q^2 / (2gA^2)) + y[/tex]

E = [tex]((12^2) / (2 * 9.81 * 2.7^2)) + 0.9[/tex]

E = 1.327 m

To find the alternate depth of flow (y2), we can use the following equation derived from the specific energy equation:

y2 =[tex]E / (g * ((V^2 / 2g) + (y / 2)))[/tex]

Substituting the values, we get:

y2 = [tex]1.327 / (9.81 * ((4.44^2 / (2 * 9.81)) + (0.9 / 2)))[/tex]

y2 = 0.787 m

Therefore, the alternate depth of flow for the given conditions is 0.787 m, and the specific energy is 1.327 m.

Learn more about the rectangular channel:

https://brainly.com/question/29480984

#SPJ11

Why do shale, slate, and schist pose engineering hazards?

Answers

Shale, slate, and schist all pose engineering hazards because they are all sedimentary rocks that have a tendency to split or cleave along their layers or bedding planes.

This means that they are prone to collapse or failure when subjected to stress or pressure. Additionally, these rocks may contain natural defects or weaknesses that can further increase their susceptibility to failure. In an engineering context, these hazards can pose a risk to construction projects or infrastructure that rely on these rocks for support or stability, such as building foundations, roadways, or retaining walls.

It is important for engineers to carefully assess the geological characteristics of these rocks and design structures that can mitigate the potential hazards associated with their use.

Learn more about engineering:

https://brainly.com/question/28321052

#SPJ11

tech a says when diagnosing a torque converter clutch (tcsolenoid problem, use a multimeter to check for ground and power first. tech b says when checking the resistance of the tcc solenoid through the connector and the resistance is out of specifications, the problem could be the solenoid or wires to the solenoid inside the transmission pan. who is correct?

Answers

Both tech a and tech b are correct in their approaches to diagnosing a torque converter clutch (TCC) solenoid problem.

Tech a suggests checking for ground and power with a multimeter first, which is a crucial step in determining if the solenoid is receiving the necessary electrical signals to function properly. Tech b suggests checking the resistance of the TCC solenoid through the connector, which is another critical step in diagnosing the problem. If the resistance is out of specifications, it could indicate a problem with either the solenoid itself or the wires leading to it inside the transmission pan. Therefore, both approaches are valuable in determining the root cause of the TCC solenoid problem and should be used in conjunction for a thorough diagnosis.

learn more about torque converter clutch here:

https://brainly.com/question/30631762

#SPJ11

1) Draw a red-black tree for the following values inserted in this order. Illustrate

each operation that occurs:

k w o s y t p r

2) Draw a red-black tree for the following values inserted in this order. Illustrate

each operation that occurs:

30 20 11 28 16 13 55 52 26 50 87

3) Draw a 2-3-4 B-tree that corresponds to your red-black tree in problem #2.

4) Given the input {3823, 8806, 8783, 2850, 3593, 8479, 1941, 4290, 8818, 7413}

and a hash function h(x) = x mod 13, show the resulting separate chaining table.

5) Repeat #4 using open addressing with linear probing.

6) Repeat #4 using open addressing with quadratic probing.

7) Repeat #4 using open addressing with double hashing where the second hash function is 11 - (x mod 11).

8) Suppose these names have the following hash values. Insert them into the extendible hash

table shown below. Each leaf can only hold 4 entries. Note that the first two names

have already been inserted. Illustrate each operation that occurs.

Bob 0100

Sue 1000

Tim 1110

Ron 0010

Ann 1010

Jan 1101

Ben 0001

Don 0101

Tom 1111

Sam 1011

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

| 0 | 1 |

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

/ \

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

| Bob 0100 | | Sue 1000 |

| | | |

| | | |

| | | |

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

9) Using Cuckoo hashing, hash the following keys using the (h1,h2) pairs shown.

A: 2,0 B: 0,0

C: 4,1

D: 0,1

E: 2,3

10) Using Hopscotch hashing with a max hop of 4, hash the following keys.

A: 6

B: 7

C: 9

D: 7

E: 6

F: 7

G: 8

Answers

The tree satisfies all the red-black tree Properties, including having the same number of black nodes on every path from the root to the Leaf nodes.

The standard insertion rules for a red-black tree. Starting with the root node, we insert the values in the given order, following the below stepsInsert as the root node with color black. Insert 0 as the left child of the root node with color red.Insert 0 again, which violates the red-black tree properties. So, we need to perform a rotation to maintain the properties. We rotate the root node to the right, making the left child (0) the new root node with color black and the previous root node  its right child with color red. Insert as the right child of the current root node  with color red.Insert 6 as the left child of  with color black.Insert 8 as the right child of  with color black.Insert A as the left child of the previous root node  with color red. Insert B as the right child of A with color black.
The resulting red-black tree for the given values is:

         (0,B)
        /    \
  (R)2     (R)7
        /    \  
     (B)0   (B)8
            /
         (B)6
            \
            (B)A
              \
              (B)B
B represents the color black, and R represents the color red. We can see that the tree satisfies all the red-black tree properties, including having the same number of black nodes on every path from the root to the leaf nodes.

To learn more about Leaf nodes.

https://brainly.com/question/19590351

#SPJ11

The following function draws mickey mouse, if you call it like* this from main:** * draw (.5, .5, .25);* ** Change the code to draw mickey moose instead. Your solution should be* recursive.public static void draw (double centerX, double centerY, double radius) {

if (radius < .0005) return;

StdDraw.setPenColor (StdDraw.LIGHT_GRAY);

StdDraw.filledCircle (centerX, centerY, radius);

StdDraw.setPenColor (StdDraw.BLACK);

StdDraw.circle (centerX, centerY, radius);

double change = radius * 0.90;

StdDraw.setPenColor (StdDraw.LIGHT_GRAY);

StdDraw.filledCircle (centerX+change, centerY+change, radius/2);

StdDraw.setPenColor (StdDraw.BLACK);

StdDraw.circle (centerX+change, centerY+change, radius/2);

StdDraw.setPenColor (StdDraw.LIGHT_GRAY);

StdDraw.filledCircle (centerX-change, centerY+change, radius/2);

StdDraw.setPenColor (StdDraw.BLACK);

StdDraw.circle (centerX-change, centerY+change, radius/2);

}

Answers

To change the function to draw Mickey Moose instead of Mickey Mouse, you'll need to modify the "draw" function. Here's the updated code:

```java
public static void draw(double centerX, double centerY, double radius) {
   if (radius < .0005) return;
   StdDraw.setPenColor(StdDraw.LIGHT_GRAY);
   StdDraw.filledCircle(centerX, centerY, radius);
   StdDraw.setPenColor(StdDraw.BLACK);
   StdDraw.circle(centerX, centerY, radius);

   double change = radius * 0.90;
   double changeY = radius * 0.60; // Add a new changeY value to adjust the moose antlers

   // Draw the antlers
   StdDraw.setPenColor(StdDraw.LIGHT_GRAY);
   StdDraw.filledCircle(centerX + change, centerY + changeY, radius / 2);
   StdDraw.setPenColor(StdDraw.BLACK);
   StdDraw.circle(centerX + change, centerY + changeY, radius / 2);

   StdDraw.setPenColor(StdDraw.LIGHT_GRAY);
   StdDraw.filledCircle(centerX - change, centerY + changeY, radius / 2);
   StdDraw.setPenColor(StdDraw.BLACK);
   StdDraw.circle(centerX - change, centerY + changeY, radius / 2);

   // Call the function recursively to draw the rest of the moose
   draw(centerX + change, centerY + changeY, radius / 2);
   draw(centerX - change, centerY + changeY, radius / 2);
}
```

This updated "draw" function modifies the original code by adding a new changeY value to adjust the position of the moose antlers, and calls the function recursively to draw the rest of the moose.

Learn more about java function: https://brainly.com/question/18554491

#SPJ11

if you are using a piece of 1/8 inch thick base metal, what size electrode should you use?

Answers

The size of the electrode to use when welding with a 1/8 inch thick base metal depends on the welding process being used, as well as the specific requirements of the welding application. Here are some general guidelines for electrode selection based on some common welding processes:

- Shielded Metal Arc Welding (SMAW): For SMAW, the electrode diameter should generally be equal to the thickness of the base metal or slightly smaller. So for a 1/8 inch thick base metal, you would typically use a 1/8 inch (3.2 mm) or 5/32 inch (4.0 mm) diameter electrode.

- Gas Tungsten Arc Welding (GTAW): For GTAW, the electrode diameter should generally be smaller than the thickness of the base metal. So for a 1/8 inch thick base metal, you would typically use a 1/16 inch (1.6 mm) or 3/32 inch (2.4 mm) diameter tungsten electrode.

- Gas Metal Arc Welding (GMAW): For GMAW, the electrode diameter should generally be equal to or slightly larger than the thickness of the base metal. So for a 1/8 inch thick base metal, you would typically use a 0.030 inch (0.8 mm) or 0.035 inch (0.9 mm) diameter electrode.

It is important to note that these are just general guidelines, and the specific electrode size and welding parameters should be determined based on the welding application, material being welded, and other factors. It is always recommended to consult the welding procedure specification (WPS) or consult with a qualified welding professional for specific recommendations.

A diameter of approximately 1/8 inch for welding a 1/8 inch thick base metal.

To determine the appropriate electrode size for a 1/8 inch thick base metal, you should follow these steps:

Identify the base metal thickness: In this case, it is 1/8 inch thick.
Consider the material type: Since the material type is not specified, I will provide a general guideline.
Use the rule of thumb for electrode selection: For most materials, a common rule of thumb is to use an electrode with a diameter approximately equal to the thickness of the base metal.

Based on these guidelines, you should use an electrode with a diameter of approximately 1/8 inch for welding a 1/8 inch thick base metal. Please note that this is a general recommendation and may vary depending on the specific material and welding process being used.

Learn more about electrode

brainly.com/question/17060277

#SPJ11

which of the following will definitely increase the elastic modulus of a metal alloy? increasing the concentration of the alloying element. , not selected work hardening the material. , not selected decreasing the grain size to below 0.5 microns. , not selected all of the above. , not selected correct answer: none of the above.

Answers

The elastic modulus of a metal alloy is a measure of its stiffness or resistance to deformation under stress. It is influenced by several factors including the composition of the alloy, the microstructure, and the processing history.

Increasing the concentration of the alloying element may or may not increase the elastic modulus of a metal alloy, depending on the specific alloy system and the nature of the alloying element.

In some cases, adding certain elements can increase the stiffness of the alloy, while in others it may have no effect or even decrease the modulus.

Therefore, it cannot be stated definitively that increasing the concentration of the alloying element will increase the elastic modulus of a metal alloy.
Similarly, work hardening the material by plastic deformation may increase its strength, but it does not necessarily increase the elastic modulus. In fact, work hardening can sometimes decrease the elastic modulus due to the introduction of defects and dislocations in the microstructure.
Decreasing the grain size to below 0.5 microns can increase the strength and hardness of a metal alloy, but again, it does not necessarily increase the elastic modulus.

In fact, reducing the grain size can sometimes lead to a decrease in modulus due to the increased prevalence of grain boundaries and other defects.
Therefore, the correct answer is none of the above.

While the factors mentioned may affect other properties of a metal alloy, they do not definitively increase the elastic modulus.

Other factors that can influence the elastic modulus include the crystal structure, temperature, and the presence of impurities or defects in the material.

Know more about the elastic modulus here:

https://brainly.com/question/30402322

#SPJ11

Find the Laplace transform F(s) = L {f(t)} of the function f(t) = 3 + sin(6t), defined on the interval t greaterthanorequalto 0. F(s) = L {3 + sin (6t)} = For what values of s does the Laplace transform exist?

Answers

The Laplace transform exists for all s such that the integral defining F(s) converges, i.e., for all s in the complex plane such that Re(s) > 0.

The Laplace transform is a mathematical tool used to transform a function of time (usually denoted by f(t)) into a function of a complex variable (usually denoted by F(s)), where s is a complex frequency parameter.

Using the linearity property of the Laplace transform, we have:

L{3} = 3/s (by the formula L{1} = 1/s)

[tex]L{sin(6t)} = 6/(s^2 + 6^2)[/tex] (by the formula L{sin(at)} = [tex]a/(s^2 + a^2))[/tex]

So, applying the formula L{f(t)} = L{3 + sin(6t)} = L{3} + L{sin(6t)} we get:

F(s) = L{f(t)} = 3/s + 6/[tex](s^2 + 6^2)[/tex]

Thus, for all s such that the integral defining F(s) converges, i.e. for all s in the complex plane such that Re(s) > 0, the Laplace transform exists.

For more details regarding Laplace transform, visit:

https://brainly.com/question/31481915

#SPJ4

(define count (lambda (fx) (cond ((cons? x) (if (f(car x)) (+ 1 (count f(cdr x))) (count f(cdr x)))) (else 0))))F is a function

Could someone help me understand this lisp code.

Answers

The code defines a function called "count" that takes a function "f" and a list "x" as arguments. The purpose of this function is to count the number of elements in the list that satisfy the function "f".

The sequence is as follows :
1. The function is defined using the "define" keyword and is named "count"
2. The "lambda" keyword is used to create an anonymous function, which takes two parameters: "fx" and "x"
3. The "cond" keyword is used to set up a conditional expression
4. The first condition checks if "x" is a cons cell (i.e., a non-empty list) using the "cons?" keyword
5. If "x" is a cons cell, the "if" keyword is used to check if the function "f" returns true for the first element of the list (using "car x")
6. If "f" returns true for the first element, 1 is added to the recursive call of "count" with the function "f" and the rest of the list (using "cdr x")
7. If "f" returns false for the first element, the function proceeds with the recursive call of "count" without adding 1
8. If "x" is not a cons cell (i.e., an empty list or an atom), the "else" keyword is used to return 0
In summary, the Lisp code defines a "count" function that takes a function "f" and a list "x" as arguments and returns the number of elements in the list that satisfy the function "f".

To know more about define and lambda keyword, click the link - https://brainly.com/question/15728222

#SPJ11

Briefly explain the operating principles of a two-opening superimposed waveguide directional coupler

Answers

A two-opening superimposed waveguide directional coupler is a type of directional coupler that consists of two waveguides that are positioned parallel to each other.

The operating principle of a two-opening superimposed waveguide directional coupler is based on the interaction between the electromagnetic fields of the two waveguides.

When a signal is introduced into one waveguide, it creates an electromagnetic field that extends into the adjacent waveguide. The strength of the electromagnetic field in the adjacent waveguide depends on the separation distance between the two waveguides.

Learn more about directional coupler here:

https://brainly.com/question/13994768

#SPJ4

Why is it important to have optimum binder content in asphalt concrete? What would happen if a less-than-optimum binder content is used? What would happen if more than the optimum value is used? What is the typical range of binder content in asphalt concrete?

Answers

It is an essential component that plays a critical role in the performance and durability of the asphalt pavement.

And the typical range of binder to concrete (in mass) is 3% to 7%

Why is it important to have optimum binder content in asphalt concrete?

An optimum binder content is important for some reasons. It is important for the durability of the asphalt pavement.

What would happen if a less-than-optimum binder content is used?

First, if the binder content is too low, the asphalt concrete mix may be too dry and not have enough asphalt to properly coat the aggregate particles.

This can result in a mix that is too brittle, lacks flexibility, and is more susceptible to cracking, raveling, and other types of distresses.

What would happen if more than the optimum value is used?

If the binder content is too high, the asphalt concrete mix may be too soft, which can cause rutting and deformation under traffic loads. Also, excess binder can lead to drain-down of the asphalt during hot weather conditions, which can cause bleeding and flushing on the surface of the pavement.

What is the optimum range?

It actually depends on various factors like the type of asphalt concrete and ambiental characteristics, but the range is between 3% and 7% (in total weight).

Learn more about asphalt concrete:

https://brainly.com/question/31491415

#SPJ1

Consider the air over a city to be a box 100 km on a side that reaches up to an altitude of 1.0 km.
Clean air is blowing into the box along one of its sides with a speed of 4 m/s. Suppose an air
pollutant with a decay rate constant k = 0.20 1/hr is emitted into the box at a total rate of 10.0 kg/s.
Find the steady-state concentration if the air is assumed to be completely mixed. Watch your units.
Answer: 10.5 µg/m

Answers

The steady-state concentration if the air is assumed to be completely mixed is 10..5 µg/m

How to calculate the value

It is known that equation for steady state concentration is as:

= QC / Q + kV

where,   Q = flow rate

             k = rate constant

             V = volume

             C = concentration of the entering air

Formula for volume of the box is as follows:

V = a²h

= 100 × 100 × 1

= 1000

Therefore, the steady-state concentration if the air is assumed to be completely mixed is:

= 25 / (1 + 0.20 × 6.94)

= 10.5

Learn more about steady state on

https://brainly.com/question/14471600

#SPJ1

A roll of paper weight 5 N with center of gravity at point. The roll is supported by a steel bar A

B

that has negligible weight, and the roll rests against a vertical wall with equal coefficient of static and kinetic friction of 0. 7. If the paper tears when angle θ

reaches 20

o

, determine the strength of the sheet of paper.

Express your answer to four significant figures and include the appropriate units

Answers

The strength of the sheet of paper based on the information is 1.9404N

What is strength

In physics, the term "strength" is typically employed to describe the ability of a physical system to withstand or produce forces.

Tensile strength denotes the maximum stress that an item can tolerate prior to snapping when under tension. This attribute is profoundly important for materials used in various engineering roles, for instance structural elements.

Based on the information, the strength of the sheet of paper based on the information is 1.9404N

Learn more about strength on

https://brainly.com/question/26998713

#SPJ1

Other Questions
how do i share a folder from my computer to nvidia shield? how do i share shield tv folders with a pc? if yu had 1.73 moles of hydrogen (h2) and 0.89 moles of oxygen (o2), which is the limiting reactant? Russia and Austria disputed the future of the balkan states A current of 0.8 A passes through a lamp with a resistance of 5 Ohms. What is the power supplied to the lamp in Watts? 1. Let x, y and z be vectors in a vector space V. Prove that if x+y = x+z then y = z, carefully stating all vector space axioms you use 2. Consider the set of all polynomials p(z) in Ps satisfying p(0)0. Is this a subspace of Ps? Justify your answer 3. Which of the following are spanning sets for R3? Justify your answers. 0a0 4. Which of the sets of vectors in Problem 3 are linearly independent in R3? Justify your answers. 5. a) What is the dimension of the span of each set of vectors in Problem 3? b) Find a vector that will extend 3a) to a basis of R3 c) Is 3b) a basis of R3? d) Which vector should be removed to make 3c) into a basis of R3? Justify your answers. How many degrees of unsaturation are introduced by a triple bond? the c++ function ____ calculates the largest whole number that is less than or equal to x. to place a node in the left of a borderpane p, use ________. if you multiply an odd number and an odd number, what type of number do you get? explain why your answer is always correct which of the statements are correct descriptions about the pituitary gland? select all that apply. the pituitary gland controls signaling from the hypothalamus. the pituitary gland acts as the control center for most other endocrine glands in the body. the posterior pituitary gland is under the control of the hypothalamus. even though the anterior and posterior pituitary have distinctly different functions, they formed from the same embryonic tissue. the anterior pituitary gland is under the control of the hypothalamus. which trojan woman does aeneas encounter as the queen of a new city, on his journey from troy? in act 1, what seeds of conflict exist among rebecca nurse, reverend parris, giles corey, john proctor, and the putnams? explain. an asset that has an estimated physical life of six years and an estimated service life of four years should be depreciated over: group of answer choices four years. five years. six years. any of the other answer choices can be chosen by management. Assume that corpdata is a file object that has been used to read data from a file. Write the necessary statement to close the file. The differential equation xdxdyy=x2, has the general solutionAyx2=cxB2yx3=cxC2y+x2=2cxDy+x2=2cxMedium as the relative rate of reinforcement the relative rate of response . group of answer choices increases; increases increases; decreases decreases; ceases decreases; increases 2.) use physics to determine the electric field at a distance of 1 m from the charge. 3.) check the following settings. polar climates: group of answer choices have a small annual temperature range. produce taiga forests. are found only near the north pole. are cold because they reflect instead of absorb much of the incoming solar radiation. assume we have an integer pointer declared that is named p1 and an integer variable named value. we want p1 to point to the memory address where value is stored. what is the correct statement to do so? 1. (25 pts) Shannon Company has agreed to buy on September 1, 2018 Inventory for delivery on March 1, 2019 from a German supplier. The cost of the equipment is 500,000 and the bill will be settled in Euros. The purchase qualifies as a firm purchase commitment, as a contract was signed on September 1, 2018. Shannon enters into a forward contract to buy the needed Euros on March 1 at the 180 day forward rate.Exchange rates for 1.0 Euro are as follows 9/1 12/31 03/01Spot $1.34 $1.39 $1.41180 day forward $1.38 $1.44 $1.4560 day forward $1.37 $1.40 $1.441) Record the entries need on September 1. Dr. Cr.2) Record the entries needed at year end, December 31. Dr. Cr.3) Record the entries need on March 1, including the purchase of the inventory. Dr. Cr.