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
Dafna11 [192]
3 years ago
7

The _____ is a voice for small business.

Engineering
1 answer:
Sliva [168]3 years ago
6 0

Answer:

The <u>National Federation of Independent Business (NFIB) </u>is a voice for small business

Explanation:

The National Federation of Independent Business is a not for profit business association with goal of supporting and upholding small business owners right to carry out their privately owned business, protecting them from excessive government intrusions into their businesses.

The association have their headquarters in Tennessee with offices in Washington DC and the capitals of the 50 state capitals making NFIB the most far-reaching and largest association for small business in the U.S.

You might be interested in
Compute the volume percent of graphite, VGr, in a 2.5 wt% C cast iron, assuming that all the carbon exists as the graphite phase
ludmilkaskok [199]

Answer:

The volume percent of graphite is 91.906 per cent.

Explanation:

The volume percent of graphite (\% V_{Gr}) is determined by the following expression:

\%V_{Gr} = \frac{V_{Gr}}{V_{Gr}+V_{Fe}} \times 100\,\%

\%V_{Gr} = \frac{1}{1+\frac{V_{Gr}}{V_{Fe}} }\times 100\,\%

Where:

V_{Gr} - Volume occupied by the graphite phase, measured in cubic centimeters.

V_{Fe} - Volume occupied by the ferrite phase, measured in cubic centimeters.

The volume of each phase can be calculated in terms of its density and mass. That is:

V_{Gr} = \frac{m_{Gr}}{\rho_{Gr}}

V_{Fe} = \frac{m_{Fe}}{\rho_{Fe}}

Where:

m_{Gr}, m_{Fe} - Masses of the graphite and ferrite phases, measured in grams.

\rho_{Gr}, \rho_{Fe} - Densities of the graphite and ferrite phases, measured in grams per cubic centimeter.

Let substitute each volume in the definition of the volume percent of graphite:

\%V_{Gr} = \frac{1}{1 +\frac{\frac{m_{Gr}}{\rho_{Gr}} }{\frac{m_{Fe}}{\rho_{Fe}} } } \times 100\,\%

\%V_{Gr} = \frac{1}{1+\left(\frac{m_{Gr}}{m_{Fe}} \right)\cdot \left(\frac{\rho_{Fe}}{\rho_{Gr}} \right)}\times 100\,\%

Let suppose that 100 grams of cast iron are available, masses of each phase are now determined:

m_{Gr} = \frac{2.5}{100}\times (100\,g)

m_{Gr} = 2.5\,g

m_{Fe} = 100\,g - 2.5\,g

m_{Fe} = 97.5\,g

If m_{Gr} = 2.5\,g, m_{Fe} = 97.5\,g, \rho_{Fe} = 7.9\,\frac{g}{cm^{3}} and \rho_{Gr} = 2.3\,\frac{g}{cm^{3}}, the volume percent of graphite is:

\%V_{Gr} = \frac{1}{1+\left(\frac{2.5\,gr}{97.5\,gr} \right)\cdot \left(\frac{7.9\,\frac{g}{cm^{3}} }{2.3\,\frac{g}{cm^{3}} } \right)} \times 100\,\%

\% V_{Gr} = 91.906\,\%

The volume percent of graphite is 91.906 per cent.

6 0
2 years ago
A steel bar 100 mm long and having a square cross section 20 mm x 20 mm is pulled in
Ierofanga [76]

Answer:

222.5 Gpa

Explanation:

From definition of engineering stress, \sigma=\frac {F}{A}

where F is applied force and A is original area

Also, engineering strain, \epsilon=\frac {\triangle l}{l} where l is original area and \triangle l is elongation

We also know that Hooke's law states that E=\frac {\sigma}{\epsilon}=\frac {\frac {F}{A}}{\frac {\triangle l}{l}}=\frac {Fl}{A\triangle l}

Since A=20 mm* 20 mm= 0.02 m*0.02 m

F= 89000 N

l= 100 mm= 0.1 m

\triangle l= 0.1 mm= 0.1\times 10^{-3} m

By substitution we obtain

E=\frac {89000\times 0.1}{0.02^{2}\times 0.1\times 10^{-3}}=2.225\times 10^{11}= 225.5 Gpa

5 0
3 years ago
13. Write a function which is passed two strings. The function creates a new string from the two original strings by copying one
attashe74 [19]

Answer:

I am writing the code in C++. Let me know if you want the program in some other programming language.

#include <iostream>  // includes header file for input output functions

using namespace std;     //to identify objects like cin cout

string CopyStrings(string string1, string string2)  

{   string newString = "";    

   for (int loop = 0; loop < string1.length() ||  

                   loop < string2.length(); loop++)      {      

       if (loop < string1.length())  

           newString += string1[loop];          

       if (loop < string2.length())  

           newString += string2[loop];      }  

   return newString;   }  

int main()  

{   string stringA = "ace";  

   string stringB = "bdf";  

   cout << CopyStrings(stringA, stringB);   }

Output:

abcdef

Explanation:

The function CopyStrings() function takes two strings i.e. string1 and string2 as parameters to copy characters from both the string one character from each.

The newString variable stores the new string after copying characters from both strings string1 and string2.

Then the for loop starts which has a variable loop which is an index variable that traverses through both the strings stored in string1 and string2. The loop continues to execute until it moves through entire length of string1 and string2 which means it copies all the characters from both string1 and string2. length() is used here which returns length of the string1 and string2.

If statement in the for loop checks the character that loop (index) variable is pointing to is less than the string1 length which means it checks each character stored in string1. For example if string1 contains "ace" and loop variable is moving through the string and is currently at "a" then this condition is true. If the condition evaluates to true then the body of if statement is executed. The next statement stores that character a into the newString variable.

Next If statement checks character that loop variable is pointing to is less than the string2 length which means it checks each character stored in string2. For example if string2 contains "bdf" and loop variable is moving through the string and is currently at "b" then this condition is true. If the condition evaluates to true then the body of if statement is executed. The next statement stores that character b into the newString variable.

Then the second iteration starts which again first stores the next character i.e. c from string1 into newString and then stores next character i.e d from string2 into newString.

Then the third iteration starts which again first stores the next character i.e. e from string1 into newString and then stores next character i.e f from string2 into newString.

Then the loop breaks as the loop variable reaches end of both the string1 and string2.

return newString will return the copied string into the output screen which is abcdef.

The screenshot of code along with output is attached.

3 0
3 years ago
(a) In a 3-phase, 4-wire system, the currents are in the A, B, and C lines under abnormal conditions of loading were as follows:
Verizon [17]

Answer:

Check the attached image below

Explanation:

Kindly check the attached image below to get the step by step explanation to the question above.

5 0
2 years ago
A flywheel made of Grade 30 cast iron (UTS = 217 MPa, UCS = 763 MPa, E = 100 GPa, density = 7100 Kg/m, Poisson's ratio = 0.26) h
hram777 [196]

Answer:

N = 38546.82 rpm

Explanation:

D_{1} = 150 mm

A_{1}= \frac{\pi }{4}\times 150^{2}

              = 17671.45 mm^{2}

D_{2} = 250 mm

A_{2}= \frac{\pi }{4}\times 250^{2}

              = 49087.78 mm^{2}

The centrifugal force acting on the flywheel is fiven by

F = M ( R_{2} - R_{1} ) x w^{2} ------------(1)

Here F = ( -UTS x A_{1} + UCS x A_{2} )

Since density, \rho = \frac{M}{V}

                        \rho = \frac{M}{A\times t}

                        M = \rho \times A\times tM = 7100 \times \frac{\pi }{4}\left ( D_{2}^{2}-D_{1}^{2} \right )\times t

                        M = 7100 \times \frac{\pi }{4}\left ( 250^{2}-150^{2} \right )\times 37

                        M = 8252963901

∴ R_{2} - R_{1} = 50 mm

∴ F = 763\times \frac{\pi }{4}\times 250^{2}-217\times \frac{\pi }{4}\times 150^{2}

  F = 33618968.38 N --------(2)

Now comparing (1) and (2)

33618968.38 = 8252963901\times 50\times \omega ^{2}

∴ ω = 4036.61

We know

\omega = \frac{2\pi N}{60}

4036.61 = \frac{2\pi N}{60}

∴ N = 38546.82 rpm

7 0
3 years ago
Other questions:
  • After informing his employer that he had cancer, Maury was abruptly fired. The federal legislation that prohibits discrimination
    6·1 answer
  • In order to avoid slipping in the shop, your footwear should __
    10·2 answers
  • The fluid-conditioning components of hydraulic-powered equipment provide fluid that is clean and maintained at an acceptable ope
    6·1 answer
  • Q1. Basic calculation of the First law (2’) (a) Suppose that 150 kJ of work are used to compress a spring, and that 25 kJ of hea
    6·1 answer
  • Demonstreaza in 20 de propoziti ca snoava pacala si zarzarele boerului e o snoava
    12·1 answer
  • Consider coaxial, parallel, black disks separated a distance of 0.20 m. The lower disk of diameter 0.40 m is maintained at 500 K
    13·1 answer
  • Question
    8·1 answer
  • Technician A says when the brakes are applied in a vacuum booster, the vacuum control valve is closed. Technician B says the vac
    7·1 answer
  • How can feeding plant crops to animals be considered an efficient use of those crops?
    6·1 answer
  • Which of the following is most likely to require changes to existing zoning laws?
    13·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!