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
fenix001 [56]
3 years ago
8

Government actions can have positive or negative effects on business. true or false

Engineering
2 answers:
Papessa [141]3 years ago
5 0

This is true. Anything the government does has a positive or negative effect on anything including businesses.

Deffense [45]3 years ago
4 0

Answer:true

Explanation:pretty simple question

You might be interested in
A sheet of steel 3-mm thick has nitrogen atomospheres on both sides at 900 C and is permitted to achieve a steady-state di usion
kati45 [8]

Answer:

X_B = 1.8 \times 10^{-3} m = 1.8 mm

Explanation:

Given data:

Diffusion constant for nitrogen is = 1.85\times 10^{-10} m^2/s

Diffusion flux = 1.0\times 10^{-7} kg/m^2-s

concentration of nitrogen at high presuure = 2 kg/m^3

location on which nitrogen  concentration is 0.5 kg/m^3   ......?

from fick's first law

J = D \frac{C_A C_B}{X_A X_B}

Take C_A as point  on which nitrogen concentration is 2 kg/m^3

x_B = X_A + D\frac{C_A -C_B}{J}

Assume X_A is zero at the surface

X_B = 0 + ( 12\times 10^{-11} ) \frac{2-0.5}{1\times 10^{-7}}

X_B = 1.8 \times 10^{-3} m = 1.8 mm

4 0
3 years ago
Air at 400 kPa, 980 K enters a turbine operating at steady state and exits at 100 kPa, 670 K. Heat transfer from the turbine occ
shusha [124]

Answer:

A)W'/m = 311 KJ/kg

B)σ'_gen/m = 0.9113 KJ/kg.k

Explanation:

a).The energy rate balance equation in the control volume is given by the formula;

Q' - W' + m(h1 - h2) = 0

Dividing through by m, we have;

(Q'/m) - (W'/m) + (h1 - h2) = 0

Rearranging, we have;

W'/m = (Q'/m) + (h1 - h2)

Normally, this transforms to another equation;

W'/m = (Q'/m) + c_p(T1 - T2)

Where;

W'/m is the rate at which power is developed

Q'/m is the rate at which heat is flowing

c_p is specific heat at constant pressure which from tables at a temperature of 980k = 1.1 KJ/kg.k

T1 is initial temperature

T2 is exit temperature

We are given;

Q'/m = -30 kj/kg (negative because it leaves the turbine)

T1 = 980 k

T2 = 670 k

Plugging in the relevant values;

W'/m = -30 + 1.1(980 - 670)

W'/m = 311 KJ/kg

B) The Entropy produced from the entropy balance equation in a control volume is given by the formula;

(Q'/T_boundary) + m(s1 - s2) + σ'_gen = 0

Dividing through by m gives;

((Q'/m)/T_boundary) + (s1 - s2) + σ'_gen/m = 0

Rearranging, we have;

σ'_gen/m = -((Q'/m)/T_boundary) + (s2 - s1)

Under the conditions given in the question, this transforms normally to;

σ'_gen/m = -((Q'/m)/T_boundary) - c_p•In(T2/T1) - R•In(p2/p1)

σ'_gen/m is the rate of entropy production in kj/kg

We are given;

p2 = 100 kpa

p1 = 400 kpa

T_boundary = 315 K

For an ideal gas, R = 0.287 KJ/kg.K

Plugging in the relevant values including the ones initially written in answer a above, we have;

σ'_gen/m = -(-30/315) - 1.1(In(670/980)) - 0.287(In(100/400))

σ'_gen/m = 0.0952 + 0.4183 + 0.3979

σ'_gen/m = 0.9113 KJ/kg.k

6 0
3 years ago
What is the definition of comma
masya89 [10]
Com·ma
/ˈkämə/
NOUN
1. a punctuation mark (,) indicating a pause between parts of a sentence. It is also used to separate items in a list and to mark the place of thousands in a large numeral.

2. a minute interval or difference of pitch.
5 0
3 years ago
A large increase in elevation can cause a carbureted engine to run ________ if not properly adjusted for the altitude. a Rich b
mash [69]

Answer:

B - Poor

Explanation:

As you get higher up, There is less oxygen which causes the engine to create less power.

3 0
3 years ago
Integer to Float Conversion All labs must be done during lab time. Each labs worth 10 points The lab can be hand in next day wit
andrew-mc [135]

Answer:

Code explained below

Explanation:

.data

msg1: .asciiz "Please input a temperature in celsius: "

msg2: .asciiz "The temperature in Fahrenheit is: => "

num: .float 0.0

.text

main:

#print the msg1

li $v0, 4

la $a0, msg1

syscall

#read the float value from user

li $v0,6 #read float syscall value is $v0

syscall #read value stored in $f0

#formula for celsius to fahrenheit is

#(temperature(C)* 9/5)+32

#li.s means load immediate float

#copy value 9.0 to $f2

li.s $f2,9.0  

#copy value 5.0 to $f3

li.s $f3,5.0

# following instructions performs: 9/5

#div.s - division of two float numbers

#divide $f2 and f3.Result will stores in $f1

div.s $f1,$f2,$f3

#following instruction performs: temperature(C) * (9/5)

#multiple $f1 and $f0.Result stored in $f1

mul.s $f1,$f1,$f0

#copy value 32 to $f4

li.s $f4,32.0

#following instruction performs: (temperature(C) * (9/5))+32

#add $f1 and $f4.Result stores in $f1

add.s $f1,$f1,$f4

#store float from $f1 to num

s.s $f1,num

#print the msg2

li $v0, 4 #print string syscall value is 4

la $a0, msg2 #copy address of msg2 to $a0

#print the float

syscall

li $v0,2 #print float syscall value is 2

l.s $f12,num #load value in num to $f12

syscall

#terminate the program

li $v0, 10 #terminate the program syscall value is 10

syscall

4 0
3 years ago
Other questions:
  • A thermal energy storage unit consists of a large rectangular channel, which is well insulated on its outer surface and encloses
    7·1 answer
  • Determine displacement (in) of a 1.37 in diameter steel bar, which is 50 ft long under a force of 27,865 lb if elasticity modulu
    5·1 answer
  • Light energy produces the only voltage in a solar cell. (a)-True(T) (b)- false(F)
    9·1 answer
  • A signal containing both a 5k Hz and a 10k Hz component is passed through a low-pass filter with a cutoff frequency of 4k Hz. Wh
    9·1 answer
  • In a typical transmission line, the current I is very small and the voltage V is very large. A unit length of the line has resis
    8·1 answer
  • Which scientist was famous for his laws on gravity?
    10·2 answers
  • 6.
    8·1 answer
  • A heating system must maintain the interior of a building at TH = 20 °C when the outside temperature is TC = 2 °C. If the rate o
    10·1 answer
  • Select the correct answer.
    6·1 answer
  • The project's criteria.
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!