Brass is made from copper and zinc in the ratio 5:3 by weight if there are 6kg of zinc work out the weight of copper
If there are 25kg of copper work out the weight of zinc

Answers

Answer 1

please mark as brainiest

Answer:

a. 10kg of copper

b. 15lg of zinc

Step-by-step explanation:

copper:zinc

5:3

3=6

5=?

5×6÷3= 10kg of copper

5=25

3=?

25×3÷5

=15kg of zinc

Answer 2

Answer:

Weight of Copper = 5/8 x 6kg = 3.75kg

Weight of Zinc = 3/8 x 25kg = 9.375kg


Related Questions

How can I the Find the value of x

How can I the Find the value of x

Answers

Answer: the answer is 129

Step-by-step explanation: 180 subtract by 51 and it will give u 129

Answer:

129 degrees

Step-by-step explanation:

A straight line measurement is 180 degrees.

180 - 51 = 129 degrees

6) Your car cost $42,500 when you
purchased it in 2017. The value of the
car depreciates by 15% annually.
a) Write an exponential function to
represent this situation.
b) How much will your car be worth
in 20242 Round your answer to the
nearest dollar.
HELP ME

Answers

Answer:

Step-by-step explanation:

Using exponential function concepts, it is found that:

The model is: .

The car will be worth $13,625 in 7 years.

Help me with math!!!

Help me with math!!!

Answers

Answer:

- 7

Step-by-step explanation:

Given

t < - 6

Then t = - 7 is less than - 6 and is a solution

Which of these options is not a quadratic equation in x?

Which of these options is not a quadratic equation in x?

Answers

Answer:

\(x^4-5x^2-6=0\)

Step-by-step explanation:

A quadratic equation is always in the form of ;

\(ax^2 +bx+c =0\)

Number 1 : Can be solved using factorization , Quadratic equation or Completing the square method

Number 2 : Quadratic formula or Completing the square method

Number 3 :Difference of two squares

Number 4 : not a quadratic equation but can be solved using Factorization

I Hope it Helps :)

public class BinarySearch \{ public static void main(Stringll args) f int [1]yl ist ={1,2,3,7,10,12,20}; int result = binarysearch ( inylist, 20); if (result =−1 ) System, out, println("Not found:"); else System.out.println("The index of the input key is " + result+ ". "): y public static int binarysearch(int]l List, int key) \{ int low =0; int high = iist. length −1 while (high >= low) \& int mid =( low + high )/2; if (key < List [mid] high = mid −1; else if (key =1 ist [ mid ] ) return inid; else low = mid +1; return −1; // Not found \} l TASK 4: Binary Search in descending order We have learned and practiced the implementation of the binary search approach that works on an array in ascending order. Now let's think about how to modify the above code to make it work on an array in descending order. Name your new binary search method as "binarysearch2". Implement your own code in Eclipse, and ensure it runs without errors. Submit your source code file (.java file) and your console output screenshot. Hint: In the ascending order case, our logic is as follows: int mid =( low + high )/2 if ( key < list [mid] ) else if (key = ist [mid]) return mid; In the descending order case; what should our logic be like? (Swap two lines in the above code.)

Answers

The task involves modifying the given code to implement binary search on an array in descending order. The logic of the code needs to be adjusted accordingly.

The task requires modifying the existing code to perform binary search on an array sorted in descending order. In the original code, the logic for the ascending order was based on comparing the key with the middle element of the list. However, in the descending order case, we need to adjust the logic.

To implement binary search on a descending array, we need to swap the order of the conditions in the code. Instead of checking if the key is less than the middle element, we need to check if the key is greater than the middle element. Similarly, the condition for equality also needs to be adjusted.

The modified code for binary search in descending order would look like this:

public static int binarysearch2(int[] list, int key) {

   int low = 0;

   int high = list.length - 1;

   while (high >= low) {

       int mid = (low + high) / 2;

       if (key > list[mid])

           high = mid - 1;

       else if (key < list[mid])

           low = mid + 1;

       else

           return mid;

   }

   return -1; // Not found

}

By swapping the conditions, we ensure that the algorithm correctly searches for the key in a descending ordered array.

For more information on array visit: brainly.com/question/30891254

#SPJ11

Write this ratio in simplest form: 72:9​

Answers

Answer:

12

Step-by-step explanation:12x9

Answer:

8:1

Step-by-step explanation:

The GCF of 72 and 9 is 9.

Therefore, we would do 72/9 : 9/9

After dividing, we would get an answer of 8:1

Hope this helps!:)

Can Yall help me with this​

Can Yall help me with this

Answers

Step-by-step explanation:

\( \sqrt{1.44} \)

\( \sqrt{ \frac{144}{100} } \)

\( \frac{ \sqrt{144} }{ \sqrt{100}} \)

\( \frac{12}{10} \)

\( \frac{6}{5} \)

= 1.2

Answer is 1.2 I think

Amelia stars reading at 3: 25 and reads for 15 minute. What type of angle is formed by the hour and minute hands of the clock wen Amelia fineshes reading

Answers

Answer:

Step-by-step explanation:

If sh starts reading at 3:25 and reads for 15 minutes, she is finished at 3:40. The hour hand is on the 3 and the minute hand is on the 8, so there is a difference of 25 minutes between the hour hand and the minute hand. Each 5-minute increment is 30 degrees (360 / 12) so 30 x 5 = 150 degrees. This is an obtuse angle. Not sure what kind of an answer you're looking for so I gave both the degree measure of the angle formed by the hour hand and the minute hand, and the classification of the angle.

Answer:

90 degrees, which is a right angle

Step-by-step explanation:

The time indicates when she starts reading is irrelevant. The only thing to notice is that she reeds for 15 minutes. Whenever you read for 15 minutes the angle that is formed by the hour and minute hands of the clock will always be the same, regardless of the starting time!

60 minutes comes down to 360 degrees.

1 minute = 60/60 and that comes down to 360/60 = 6 degrees.

15 minutes = 15 times 1 minute....

15 minutes comes down to 15* 6 = 90 degrees

90 degrees is a right angle

Why
is the use and interpretation of an R or s chart so critical when
examining an X-bar chart?

Answers

The use and interpretation of an R or s chart are critical when examining an X-bar chart because they provide additional information about the variation within the subgroups. This allows for a more comprehensive analysis of the process and helps identify any issues or sources of variability.

When using an X-bar chart, the focus is on monitoring the process mean or average. However, the X-bar chart alone does not provide information about the variation within the subgroups. This is where the R or s chart comes into play. The R chart measures the range of values within each subgroup, while the s chart measures the standard deviation.
By using an R or s chart alongside the X-bar chart, we can assess the variability within the subgroups and determine if it is stable over time. If the variation within the subgroups is high and unpredictable, it may indicate that the process is out of control or that there are sources of variation that need to be addressed. The R or s chart provides additional insights into the process performance and helps in identifying the presence of special causes of variation.
In summary, the use and interpretation of an R or s chart in conjunction with an X-bar chart allow for a more comprehensive analysis of process variation. This helps in understanding the stability and capability of the process and enables appropriate actions to be taken to improve quality and performance.

learn more about X-bar chart here

https://brainly.com/question/31861365



#SPJ11




QUESTION 16 Draw the network representation of the following network flow problem. What is the value of the objective funct MIN: \( \quad 5 X_{12}+3 X_{13}+2 X_{14}+3 X_{24}+2 X_{34} \) Subject to: \[

Answers

The network representation of the given network flow problem is a directed graph with nodes representing sources, sinks, and intermediate points, and edges representing flow paths. The objective function value cannot be determined without the rest of the constraints.

To draw the network representation of the given problem, we need additional information about the constraints, such as the capacities of the edges, the supply and demand of nodes, and any other constraints related to flow.

The network representation consists of nodes and edges. Nodes represent the sources, sinks, and intermediate points in the problem, while edges represent the flow paths between nodes.

Each edge is assigned a variable (e.g., X12, X13, etc.) that represents the flow or quantity of flow on that edge. The objective function, in this case, is to minimize the sum of the products of the flow variables and their respective coefficients.

However, without information about the capacities, supply and demand, and other constraints, it is not possible to determine the value of the objective function.

In conclusion, the network representation of the problem can be drawn, but the value of the objective function cannot be determined without the additional constraints and information.

Learn more about constraints here:

https://brainly.com/question/32387329

#SPJ11

Can you please help me with this?​

Can you please help me with this?

Answers

Answer:

257 pihff ertu job ruu 7oinc aet box took

the time needed to complete a final examination in a particular college course is normally distributed with a mean of

Answers

The probability of a student completing the final examination in less than 65 minutes is 13.45%.

The time it takes to complete a final examination in a particular college course is normally distributed with a mean of 77 minutes and a standard deviation of 12 minutes. This can be expressed mathematically as X~N(77, 12).

The probability of a student completing the final examination in less than 65 minutes can be calculated by using the Z-score formula:

Z = (x - μ) / σ

Where x = 65 minutes, μ = 77 minutes, and σ = 12 minutes.

Plugging these values into the formula, we get:

Z = (65 - 77) / 12 = -1.17

Using a Z-score table, we can find the probability of a student completing the final examination in less than 65 minutes, which is equal to 0.1345, or 13.45%. Therefore, the probability of a student completing the final examination in less than 65 minutes is 13.45%.

Learn more about probability here:

brainly.com/question/30034780

#SPJ4


A knight travels in a straight line from the starting point to Token 1. The knight can only make right-angle turns to get to
Tokens 2 and 3. Answer parts (a) to (c) below.
a. Since the knight can only make right-angle turns, what are the slopes of the straight line paths the knight can travel?

A knight travels in a straight line from the starting point to Token 1. The knight can only make right-angle

Answers

The slope of the straight line paths the knight can travel is 1.

What is slope?

Slope is the ratio of the rise, the vertical change, to the run, the    horizontal change of a line.

To calculate the slope of the straight paths, we use the formula below.

Formula:

s = (y₂-y₁)/(x₂-x₁)............ Equation 1

Where:

s = Slope of the straight line paths

From the question,

Given:

y₂ = 5y₁ = 2x₂ = 6x₁ = 3

Substitute these values into equation 1

s = (5-2)/(6-3)s = 3/3s = 1

hence, the slope of the straight line part is 1.

Learn more about slope here: https://brainly.com/question/3493733

#SPJ1

Taylor currently earn $24. 00 an hour at her job. Thank to her hard work, her bo i going to give her a 15% raie. How much will he earn each hour after the raie?

Answers

Answer:

Taylor will earn $27.60 after the raise.

Step-by-step explanation:

If you take $24.00 and multiply it by $1.15, your answer should be $27.60. Therefore, this is the answer to your question.

Hopefully this helps, did the best I could!

Luciana is adding water to a pool at a constant rate. Before she added any water, the pool had $12,000$ gallons of water. Luciana is adding $9$ gallons of water each minute.

Which equation represents the total number of gallons of water in the pool, $w$ , after Luciana adds water for $m$ number of minutes?

Answers

Answer:

T(m) = 12,000 gallons + (9 gallons/ minute)m

Step-by-step explanation:

This is a linear function with beginning value 12,000 gallons and unit rate of increase 9 gallons/minute:

T(m) = 12,000 gallons + (9 gallons/ minute)m

PS:  Please don't use " $ " to set off numbers.  Not needed!

In pensacola in june, high tide was at noon. the water level at high tide was 12 feet and 2 feet at low tide. assuming the next high tide is exactly 12 hours later and that the height of the water can be modeled by a cosine curve, find an equation for water level in june for pensacola as a function of time (t). f(t) = 12 cospi over 2t 5 f(t) = 5 cospi over 2t 12 f(t) = 5 cospi over 6t 7 f(t) = 7 cospi over 6t 12

Answers

An equation for water level in june for pensacola as a function of time (t) is f(t) = 5 cos pi/6 t + 7.

Which equation of cos show period amplitude ?

The equation given below show aplitude and period

\(y = A cos bx + c\)

where A = amplitude,

b = 2 pi/Period,

Period = 12 hrs,

c = midline,

x = t and y = f(t)

We have to find the amplitude

What is the formula for the amplitude?

\(A = 1/2 (Xmax - Xmin)\)

\(12 - 2 / 2 = 10/2 = 5\)

\(b = 2 pi / 12 = pi/6\)

\(c = 1/2 (Xmax + Xmin)\)

\(12+2/2 = 7\)

Therefore, the an equation for water level in june for pensacola as a function of time (t)

\(f(t) = 5 cos pi/6 t + 7\)

To learn more about the function of time visit:

https://brainly.com/question/24872445

Solve the trigonometric equation on the interval of [0,2π) below:
\( \large{cos(2 \theta + \frac{ \pi}{3} ) = \frac{ \sqrt{3} }{2} }\)
Show your work, thanks! ​

Answers

Answer:

\( \displaystyle \theta = \frac{3\pi}{4},\frac{11\pi}{12}, \frac{7\pi}{4}, \frac{23\pi}{12} \)

Step-by-step explanation:

we would like to solve the following trigonometric equation on interval of [0,2π)

\( \displaystyle \cos \left(2 \theta + \frac{\pi}{3} \right ) = \frac{ \sqrt{3} }{2} \)

remember that,

\( \displaystyle \cos(t) = \cos(2\pi - t) \)

so the equation has two solutions

\( \begin{cases} \displaystyle \cos \left(2 \theta + \frac{\pi}{3} \right ) = \frac{ \sqrt{3} }{2} \\ \cos \left(2\pi - (2 \theta + \frac{\pi}{3} )\right ) = \frac{ \sqrt{3} }{2} \end{cases}\)

take inverse trig both sides which yields:

\( \begin{cases} \displaystyle 2 \theta + \frac{\pi}{3} = \frac{\pi}{6} \\ 2\pi - 2 \theta - \frac{\pi}{3} = \frac{\pi}{6} \end{cases}\)

simplify the second equation:

\( \begin{cases} \displaystyle 2 \theta + \frac{\pi}{3} = \frac{\pi}{6} \\ \frac{5\pi}{3} - 2 \theta = \frac{\pi}{6} \end{cases}\)

add period of 2kπ:

\( \begin{cases} \displaystyle 2 \theta + \frac{\pi}{3} = \frac{\pi}{6} + 2k\pi \\ \frac{5\pi}{3} - 2 \theta = \frac{\pi}{6} + 2k\pi\end{cases} \)

By making theta subject of the equation we acquire:

\( \begin{cases} \displaystyle \theta = \frac{11\pi}{12} + k\pi \\ \theta = \frac{3\pi}{4} - k\pi\end{cases} \)

since \(k\in\mathbb{Z}\) we get:

\( \begin{cases} \displaystyle \theta = \frac{11\pi}{12} + k\pi \\ \theta = \frac{3\pi}{4} + k\pi\end{cases} \)

as we want to Solve the trigonometric equation on the interval of [0,2π) we get

\( \begin{cases} \displaystyle \theta = \frac{11\pi}{12} \\ \theta = \frac{3\pi}{4} \end{cases} \text{and} \begin{cases} \displaystyle \theta = \frac{11\pi}{12} + \pi \\ \theta = \frac{3\pi}{4} + \pi\end{cases} \)

by simplifying we acquire:

\( \begin{cases} \displaystyle \theta = \frac{11\pi}{12} \\ \theta = \frac{3\pi}{4} \end{cases} \text{and} \begin{cases} \displaystyle \theta = \frac{23\pi}{12} \\ \theta = \frac{7\pi}{4} \end{cases} \)

and we are done!

hence,

\( \displaystyle \theta = \frac{3\pi}{4},\frac{11\pi}{12}, \frac{7\pi}{4}, \frac{23\pi}{12} \)

Let P be the point (6,8,−4) in Cartesian coordinates. The cylindrical coordinates of P are (r,θ,z)=( The spherical coordinates of P are (rho,θ,ϕ)=(

Answers

The representation of point P in cylindrical coordinates is P (ρ, φ, z) = (10, 0.9273, -4).

In mathematics, we often use different coordinate systems to describe the position of a point in space.

Cartesian coordinates, also known as rectangular coordinates, are commonly used, but there are other coordinate systems as well. In this case, we have a point P with Cartesian coordinates (6, 8, -4), and we want to find its representation in cylindrical coordinates. Cylindrical coordinates describe a point in terms of its distance from the origin, an angle in the xy-plane, and its height above or below the xy-plane.

Conversion to Cylindrical Coordinates (r, θ, z):

To convert the point P (6, 8, -4) to cylindrical coordinates, we need to determine the cylindrical components: the radial distance from the origin (r), the angle in the xy-plane (θ), and the height above or below the xy-plane (z).

The radial distance (r) can be found using the formula:

r = √(x² + y²),

where x and y are the Cartesian coordinates of the point P.

Substituting the given values, we have:

r  = √(6² + 8²)

  = √(36 + 64)

  = √100

  = 10.

The angle in the xy-plane (θ) can be found using the formula:

θ = arctan(y / x),

where x and y are the Cartesian coordinates of the point P.

Substituting the given values, we have:

θ = arctan(8 / 6) ≈ 0.9273 radians (approximately).

The height (z) remains the same in cylindrical coordinates, so z = -4.

Therefore, the representation of point P in cylindrical coordinates is P (r, θ, z) = (10, 0.9273, -4).

Conversion to Cylindrical Coordinates (ρ, φ, z):

In some textbooks or conventions, cylindrical coordinates are denoted by (ρ, φ, z) instead of (r, θ, z). The formulas to convert Cartesian coordinates to cylindrical coordinates remain the same, but the notation changes.

Using the same formulas as in the previous explanation, we can find the cylindrical components:

ρ = √(x² + y²)

  = √(6² + 8²)

  = 10,

φ = arctan(y / x) = arctan(8 / 6) ≈ 0.9273 radians (approximately),

z = -4.

Therefore, the representation of point P in cylindrical coordinates is P (ρ, φ, z) = (10, 0.9273, -4).

Note: The symbol φ (phi) is often used to represent the angle in cylindrical coordinates to avoid confusion with the polar angle θ in spherical coordinates.

To know more about Cartesian coordinates here

https://brainly.com/question/8190956

#SPJ4

Complete Question

Consider the point P= (6,8,-4) in Cartesian coordinates.

1. What is P in cylindrical coordinates?

  P (r,∅,z) =

2. What is P in cylindrical coordinates?

  P (p,,θ,∅) =

the sales tax rate in your city is 7.5%. What is the total amount you pay for a $6.84 item.

Answers

Answer:

$7.35

Step-by-step explanation:

Solve for c law of sines

Solve for c law of sines

Answers

Answer:

c/sin(60°) = 14/sin(25°)

c = 14sin(60°)/sin(25°) = 28.7

Clara is stacking cups; she put 45 plastic cups in the first stack, 38 plastic cups in the second stack, 31 plastic cups in the third stack, and 24 plastic cups in the fourth stack. What kind of sequence is this?

Answers

Answer:

Subtracting 7

Step-by-step explanation:

Given:

Clara is stacking cups; she put 45 plastic cups in the first stack, 38 plastic cups in the second stack, 31 plastic cups in the third stack, and 24 plastic cups in the fourth stack.

To Find:

What kind of sequence is this?

Solve:

Let's make a table:

[1 stack]  45

[2 stack] 38

[3 stack] 31

[4 stack] 24

Now all we have to do is subtract to see what each is:

45 - 38 = 7

38 - 31 = 7

31 - 24 = 7

Thus,

[1 stack]  45 ⇒ 7

[2 stack] 38 ⇒ 7

[3 stack] 31 ⇒ 7

[4 stack] 24 ⇒ 7

Hence, each stack is going down by 7.

Kavinsky

Suppose x1, x2, and x3 are binary variables that are equal to 1 if the corresponding project (1, 2, or 3) is selected and 0 if the corresponding project is not selected. Which constraint reflects the statement "if project 1 is selected then project 2 must be selected"? X1 + x2 > 2 X1 < x2 X1 + X2 52 X1 x2

Answers

The constraint that reflects the statement "if project 1 is selected then project 2 must be selected" is x1 ≤ x2.

How does the constraint x1 ≤ x2 reflect the statement "if project 1 is selected then project 2 must be selected"?

The constraint x1 ≤ x2 ensures that if project 1 is selected (x1 = 1), then project 2 must also be selected (x2 = 1).

This constraint imposes a logical relationship between the binary variables x1 and x2, indicating that the value of x2 should be at least as large as x1. If x1 is 0 (indicating project 1 is not selected), the constraint does not impose any specific condition on x2.

Learn more about constraint that reflects

brainly.com/question/17156848

#SPJ11

WILL GIVE BRAINLIEST, I NEED HELP QUICKLY

Which formula would make it easier to find the 100th term of a sequence? explicit ОО recursive​

Answers

arithmetic sequences formula

-recursive

It is recommended to drink 8 glasses of water per day. A glass of water contains approximately 237 mL. If Carmelo drank 7 glasses, approximately how many liters of water did he drink?
H. 3,059 L
B. 16. 59L
C. 1,359 L
D. 1,659 L

Answers

Answer:

d Because I just took the test and got it right

What is the range 0 -9 -9 -6 -4 -7 -5 -3

Answers

Answer:

9

Step-by-step explanation:

put in order least to greatest

-9 -9 -7 -6 -5 -4 -3  0

9-0=9

range cannot be negative because it is the space between numbers and distance cannot be negative

Answer: The range is 9.

choose the best description of how the data sets shown below compare to one another

choose the best description of how the data sets shown below compare to one another

Answers

B. Similar spreads different centers.

А B H What is the area of a cross section that is parallel to face BFGC? 7 cm 32 cm D 12 cm C Enter your answer in the box. cm2​

Answers

Answer: Answer

4.0/5

37

jdoe0001

Genius

13.9K answers

122.5M people helped

check the picture below.

notice, the cross-section is just a 6x36 rectangle, and its area is, well just 6*36.

Step-by-step explanation: hope this helped

HELP FAST

where is the answer to the this expression 3-7 on a horizontal number line

4 units to the left of 3

7 units to the left of 3

4 units to the right of 3

7 units to the right of 3

Answers

Answer:

-4

-1

-4

7

10

Step-by-step explanation:

It is easier if you do it practically on the number line.

You can also do it physically by drawing a number line on the ground .

two angles that add up to 90 degrees are called ________ angles.

Answers

Answer: Right/complementary angles

Step-by-step explanation:

Two angles that add up to 90 degrees are called complementary angles.

Complementary angles are a pair of angles that, when added together, equal a right angle, which measures 90 degrees.

In other words, the sum of the measures of complementary angles is always 90 degrees.

Complementary angles often arise in geometry and trigonometry, and understanding their properties is important when working with angles and solving problems involving right triangles.

To learn more on Angles click:

https://brainly.com/question/28451077

#SPJ6

The positive integers x and y are the two smallest positive integers for which the product of 360 and x is a square and the product of 360 and y is a cube. What is the sum of x and y?

Answers

The required sum of the positive integers x and y with the given condition of product of x and y as  square and cube is equal to 85.

Two positive integers are x and y.

Product of 360 and x is a square.

Product of 360 and y is a cube.

Prime factors of 360 equals to ,

360 = 2³ × 3² × 5

To make a product of 360 and x as square ,

Multiply by 2 and 5 and 3 is already a perfect square.

x = 2 × 5

 = 10

360 × 10 = 3600

Now , to make product of 360 and y as cube.

Multiply by 3  and 5² and 2 is already a perfect cube.

y = 3 × 5²

   = 75

360 × 75 = 27000

Sum of the values of x and y is equal to,

x + y

= 10 + 75

= 85

Therefore, the sum of the positive integers x and y are 85.

Learn more about integers here

brainly.com/question/3669791

#SPJ4

Other Questions
which of the following properties of water are physical properties? select all that apply. multiple select question. electrolysis of water produces both hydrogen gas and oxygen gas. water exists as a liquid at 25oc. the boiling point of water is 373.15 k. water combines with carbon dioxide to make carbonic acid. water has a density of 1.00 g/ml. The main purpose of the statute of frauds is to :__________ a) Create an equal exchange of information so that both parties can make an informed decision. b) Prevent fraud by requiring a written contract to have written evidence of the agreement. c) Encourage parties to operate ethically and morally. d) Ensure that both parties have equal bargaining power. which illness is caused by a viral infection 1. bacterial meningitis 2. aids3. diabetes 4. prostate cancer if c.p. = Rs 280 and profit percent = 10% find profit amount. Simplify:-(x+9)Plz help Select the correct answer. in what way did realists try to portray life? a. as objectively as possible b. as subjectively as possible c. as happily as possible d. as depressingly as possible What were the advantages that made Italy the birthplace of the renaissance ? Given vectors u and y placed tail-to-tail, lul = 8, = 15 and 0=65". Find the sum of the vectors u and v if is the angle between them. labor inputs are of little consequence in operations management since they account for a small proportion of operating expenses in a hospital.T/F what is the name for the topographical representation of the sensory input to the somatosensory cortex? a. homunculus b. homo sapiens c. postcentral gyrus d. primary cortex determine it is complex or compound1) The dosa was cold,yet we relished it.2) rashi, who i met on the train, words in the same office as me.3) should i finished my words sleep?4) santosh adjvsted his seat so that sheetal could see the film properly. Chapter 11: The climax of the plot of a story is considered a turning point, or a high point of tension. What is the following is a turning point in The Hobbit?Question 2 options:A. "Now they all pushed together, and slowly a part of the rock-wall gave way. Long straight cracks appeared and widened. A door five feet high and three broad was out-lined, and slowly without a sound swung inwards. It seemed as if darkness flowed out like a vapour from the hole in the mountain-side, and deep darkness in which nothing could be seen lay before their eyes leading in and down."B. "All he knew was that the river seemed to go on and on and on for ever, and he was hungry, and had a nasty cold in the nose, and did not like the way the Mountain seemed to frown at him and threaten him as it drew ever nearer. After a while, however, the river took a more southerly course and the Mountain receded again, and at last, late in the day the shores grew rocky, the river gathered all its wandering waters together into a deep and rapid flood, and they swept along at great speed.""C. Thorin of course saw the sense of this, so after a few more groans he got up and helped the hobbit as well as he could. In the darkness floundering in the cold water they had a difficult and very nasty job finding which were the right barrels. Help me with this please The nurse asks a patient to smile, blow out his cheeks, raise his eyebrows, and close his eyes tightly. The nurse is assessing which cranial nerve Four friends want to take a vacation together, so each one gets a part-time job. Each person has 8 weeks to save $720 for the vacation. Analyze the four individual plans below and decide which of the four people will reach his or her goal of saving $720 for vacation.Friend A: Works 13 hours per week at $6.95 per hour.Friend B: Works 15 hours per week at $5.85 per hour.Friend C: Works 18 hours per week at $5.25 per hour.Friend D: Works 11 hours per week at $7.80 per hour. (c) Joseph puts a small amount of water into a flat dish in Diagram 1. Diagram 1 He then leaves the dish outside in the warm sunshine. After a while the water disappears. Explain what happens to the water particles. What were the principal values and ideals of the Pilgrims?Question 1 options:pride, piety, and lazinesscourage, pride, and honestynone of the abovepiety, courage, and industryQuestion 2 (2 points) The literary style of Pilgrim writing can best be described asQuestion 2 options:epicplainpoeticsymbolicQuestion 3 (2 points) The lives and writings of the Puritans were greatly influenced byQuestion 3 options:Pilgrim's ProgressThe OdysseyThe Old TestamentThe entire BibleQuestion 4 (2 points) Bradford's account describes primarilyQuestion 4 options:the savagery of the nativesHis own pietyGod's relationship to the emigrantsthe many hardships faced by early American settlersQuestion 5 (2 points) Bradford feels that the death of the "profane" seaman is attributable toQuestion 5 options:SatanDivine retributionCancerAlcoholismQuestion 6 (2 points) Once Squanto acts as interpreter and the Puritans are able to communicate with the Indians, they proceed toQuestion 6 options:hold friendly conversationsexchange giftsdraw up a peace treatyall of the aboveQuestion 7 (2 points) "Then while we live, in love let's so perseverThat when we live no more, we may live ever."Which statement best summarizes the message of the final couplet in Bradstreet's "To My Dear and Loving Husband?Question 7 options:Let us stop loving one another so that we can love one another in heaven.Let us enjoy the love we have, because it is going to end soon.Let us continue to love one another so that we can reach heaven.Let us love now, because there will be no love in the afterlife.Question 8 (2 points) In "Upon the Burning of Our House,"Anne Bradstreet discovers the fire whenQuestion 8 options:she smells smokeshe awakens to cries of "Fire!"her children scream for helpshe hears the fire enginesQuestion 9 (2 points) As her house burns, Bradstreet reminds herself thatQuestion 9 options:It belonged not to her, but to GodToo many possessions are burdensomeGod is punishing herHer husband will build her a new oneQuestion 10 (2 points) The phrase "my hope and treasure lies above" describesQuestion 10 options: her books going up in smokethe valuables hidden in the atticthe ghost of her dead fatherher vision of the afterlifeQuestion 11 (2 points) Like many Puritan writers, Bradstreet expressesQuestion 11 options:a compulsion to save soulslove of God despite great hardshipsa desire for material possessionsintolerance of other religionsQuestion 12 (2 points) In his sermon, Edwards mainly taps into his audience's fear ofQuestion 12 options:associating with sinnerstheir minister's wrathburning forever in a fiery pitfloods and other natural disastersQuestion 13 (2 points) When Edwards refers to the "unconverted persons in his congregation," he chiefly addresses theQuestion 13 options:parishioners who don't want Edwards as their leadermembers who do not accept Christ as their Saviormen and women who do not believe in Godchurch visitors who are followers of other religionsQuestion 14 (2 points) According to Edwards' sermon, the only thing that has saved his listeners from Hell is God'sQuestion 14 options:lovecompassionhandwrathQuestion 15 (2 points) Edwards' purpose in delivering this sermon is toQuestion 15 options:jolt his congregation into mending their ways and seeking salvationgive such a memorable speech that his congregation will never forget himdominate his congregation and maintain his position in the churchfrighten listeners so much that they never return to church Match the graph with its function. Which is an example of growth decay? One method of trouble shooting sequential logic circuits involves a proccess of exercising the circuit being tested with a known input waveform and then checking the output to see if the proper bit pattern exist. T/F A group of students went on a field trip there were three boys for every four girls in the group if they were 20 girls how many students in All went on the field trip