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

You work for a printing company, and you realize that your colleague sent incorrect price quotes to a client. You begin to write

an e-mail to the client to apologize for the mistake. You want to remedy the situation without criticizing your colleague. The following sentence is an excerpt from your e-mail: "Incorrect information was included in the initial document we sent you."
Engineering
1 answer:
xxTIMURxx [149]3 years ago
4 0

Answer:

The sentence excerpted from the e-mail uses passive voice.  

Given the  purpose of your message, this voice is appropriate.

Explanation:

Because the objective is to remedy the situation a passive voice is great because it emphasizes the action and the object instead of the subject.

We want to emphasize the document and the incorrect information, not our colleague.

You might be interested in
A crystalline grain of aluminum in a metal plate is situated so that a tensile load is oriented along the [1 1 1] direction. Wha
Ivenika [448]

Answer: required tensile stress is 0.889 MPa

Explanation:

Given that;

tensile load is oriented along the [1 1 1] direction

shear stress is 0.242 MPa along [1 0 1] in the (1 1 -1) plane

first we determine

λ which is Angle between  [1 1 1]  and  [1 0 1]

so

cosλ = [ 1(1) +  1(0) + 1(1) ] / [ √(1² + 1² + 1²) √(1² + 0² + 1²)]

= 2 / √3√2 =  2/√6

Next, we determine ∅ which is angle between [1 1 1]  and  [1 1 -1]

so,

cos∅ = [ 1(1) +  1(1) + 1(-1) ] / [ √(1² + 1² + 1²) √(1² + 1² + (-1)²)]

cos∅ = [ 2-1] / [√3√3 ]

cos∅ = 1/3

Now, we know that;

σ = T_stress/cosλcosθ

so we substitute

σ = 0.242 / ( 2/√6 × 1/3 )

σ = 0.242 / 0.2721

σ = 0.889 MPa

Therefore, required tensile stress is 0.889 MPa

3 0
3 years ago
An AC generator supplies an rms voltage of 120 V at 50.0 Hz. It is connected in series with a 0.650 H inductor, a 4.80 μF capaci
Serggg [28]

Answer:

Explanation:

f = 50.0 Hz, L = 0.650 H, π = 3.14

C = 4.80 μF, R = 301 Ω resistor. V = 120volts

XL = wL = 2πfL

= 2×3.14×50* 0.650

= 204.1 Ohm

Xc= 1/wC

Xc = 1/2πfC

Xc = 1/2×3.14×50×4.80μF

= 1/0.0015072

= 663.48Ohms

1. Total impedance, Z = sqrt (R^2 + (Xc-XL)^2)= √ 301^2+ (663.48Ohms - 204.1 Ohm)^2

√ 90601 + (459.38)^2

√ 90601+211029.98

√ 301630.9844

= 549.209

Z = 549.21Ohms

2. I=V/Z = 120/ 549.21Ohms =0.218Ampere

3. P=V×I = 120* 0.218 = 26.16Watt

Note that

I rms = Vrms/Xc

= 120/663.48Ohms

= 0.18086A

4. I(max) = I(rms) × √2

= 0.18086A × 1.4142

= 0.2557

= 0.256A

5. V=I(max) * XL

= 0.256A ×204.1

=52.2496

= 52.250volts

6. V=I(max) × Xc

= 0.256A × 663.48Ohms

= 169.85volts

7. Xc=XL

1/2πfC = 2πfL

1/2πfC = 2πf× 0.650

1/2×3.14×f×4.80μF = 2×3.14×f×0.650

1/6.28×f×4.8×10^-6 = 4.082f

1/0.000030144× f = 4.082×f

1 = 0.000030144×f×4.082×f

1 = 0.000123f^2

f^2 = 1/0.000123048

f^2 = 8126.922

f =√8126.922

f = 90.14 Hz

8 0
3 years ago
PythonA group of statisticians at a local college has asked you to create a set of functionsthat compute the median and mode of
skelet666 [1.2K]

Answer:

  1. def median(l):
  2.    if(len(l) == 0):
  3.       return 0
  4.    else:
  5.        l.sort()
  6.        if(len(l)%2 == 0):
  7.            index = int(len(l)/2)
  8.            mid = (l[index-1] + l[index]) / 2
  9.        else:
  10.            mid = l[len(l)//2]  
  11.        return mid  
  12. def mode(l):
  13.    if(len(l)==0):
  14.        return 0
  15.    mode = max(set(l), key=l.count)
  16.    return mode  
  17. def mean(l):
  18.    if(len(l)==0):
  19.        return 0
  20.    sum = 0
  21.    for x in l:
  22.        sum += x
  23.    mean = sum / len(l)
  24.    return mean
  25. lst = [5, 7, 10, 11, 12, 12, 13, 15, 25, 30, 45, 61]
  26. print(mean(lst))
  27. print(median(lst))
  28. print(mode(lst))

Explanation:

Firstly, we create a median function (Line 1). This function will check if the the length of list is zero and also if it is an even number. If the length is zero (empty list), it return zero (Line 2-3). If it is an even number, it will calculate the median by summing up two middle index values and divide them by two (Line 6-8). Or if the length is an odd, it will simply take the middle index value and return it as output (Line 9-10).

In mode function, after checking the length of list, we use the max function to estimate the maximum count of the item in list (Line 17) and use it as mode.

In mean function,  after checking the length of list,  we create a sum variable and then use a loop to add the item of list to sum (Line 23-25). After the loop, divide sum by the length of list to get the mean (Line 26).

In the main program, we test the three functions using a sample list and we shall get

20.5

12.5

12

3 0
3 years ago
Force = 33 newtons
kicyunya [14]

Answer:

answer

Explanation:

4 0
3 years ago
Swing arm restraints are intended to prevent a vehicle from falling off a lift.
castortr0y [4]

The question is asking whether that statement is true or false. Options are;

A) True

B) False

This is about usage of Swing arm restraints.

<em><u>B) False</u></em>

There are different safety features that people employ when a vehicle is lifted. However, for this question, we will only talk about swing arm restraints.

  • Swing arm restraints are lifting restraint devices that are used to prevent a cars arms from shifting or going out of position after that car has been lifted and mounted.

  • This swing arm restraint does not prevent a vehicle from falling off a lift as it just helps to ensure that the swing arms that are unloaded basically maintain their position.

Read more at; brainly.com/question/17972874

4 0
3 years ago
Other questions:
  • Valves on steam lines are commonly encountered and you should know how they work. For most valves, the change in velocity of the
    10·1 answer
  • 12. Dies are turned using a special tool called a/an
    10·1 answer
  • One kilogram of water contained in a piston–cylinder assembly, initially saturated vapor at 460 kPa, is condensed at constant pr
    15·1 answer
  • Which energy source would you rank as the best option for the rescue team? Why?
    9·1 answer
  • What's the difference between a GED and a Diploma?
    12·1 answer
  • In the well-insulated trans-Alaska pipeline, the high viscosity of the oil and long distances cause significant pressure drops,
    12·1 answer
  • 5 kg of a wet steam has a volume of 2 m3
    8·1 answer
  • What is mechanical engineer​
    14·1 answer
  • Which of the following elements found in fertilizer helps plants produce fruit?
    15·2 answers
  • Which type of Artificial Intelligence (AI) can repeatedly perform tasks of limited scope?
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!