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
Sphinxa [80]
3 years ago
5

Most technician jobs in the field of metrology require a college degree. True or False?

Engineering
2 answers:
Elanso [62]3 years ago
7 0

Answer:

True

Explanation:

Because I Said

DochEvi [55]3 years ago
6 0

Answer:

true

Explanation:

You might be interested in
An Ideal gas is being heated in a circular duct as while flowing over an electric heater of 130 kW. The diameter of duct is 500
Assoli18 [71]

Answer: The exit temperature of the gas in deg C is 32^{o}C.

Explanation:

The given data is as follows.

C_{p} = 1000 J/kg K,   R = 500 J/kg K = 0.5 kJ/kg K (as 1 kJ = 1000 J)

P_{1} = 100 kPa,     V_{1} = 15 m^{3}/s

T_{1} = 27^{o}C = (27 + 273) K = 300 K

We know that for an ideal gas the mass flow rate will be calculated as follows.

     P_{1}V_{1} = mRT_{1}

or,         m = \frac{P_{1}V_{1}}{RT_{1}}

                = \frac{100 \times 15}{0.5 \times 300}  

                = 10 kg/s

Now, according to the steady flow energy equation:

mh_{1} + Q = mh_{2} + W

h_{1} + \frac{Q}{m} = h_{2} + \frac{W}{m}

C_{p}T_{1} - \frac{80}{10} = C_{p}T_{2} - \frac{130}{10}

(T_{2} - T_{1})C_{p} = \frac{130 - 80}{10}

(T_{2} - T_{1}) = 5 K

T_{2} = 5 K + 300 K

T_{2} = 305 K

           = (305 K - 273 K)

           = 32^{o}C

Therefore, we can conclude that the exit temperature of the gas in deg C is 32^{o}C.

8 0
3 years ago
Which statements describe the motion of car A and car B? Check all that apply. Car A and car B are both moving toward the origin
vekshin1

Answer:

car a is moving faster than the car b

8 0
3 years ago
An 1,840 W toaster, a 1,420 W electric frying pan, and a 70 W lamp are plugged into the same outlet in a 15 A, 120 V circuit. (T
Viktor [21]

Answer:

A)

Current drawn by toaster = 15.33 A

Current drawn by electric frying pan = 11.83 A

Current drawn by lamp = 0.58 A

B)

The fuse will definitely blow up since the current drawn by three devices (27.74 A) is way higher than 15 A fuse rating.

Explanation:

There are three devices plugged into the same outlet.

Toaster = 1840 W

Electric frying pan = 1420 W

Lamp = 70 W

Since the three devices are connected in parallel therefore, the voltage across them will be same but the current drawn by each will be different.

A) What current is drawn by each device?

The current flowing through the device is given by

I = P/V

Where P is the power and V is the voltage.

Current drawn by toaster:

I = 1840/120

I = 15.33 A

Current drawn by electric frying pan:

I = 1420/120

I = 11.83 A

Current drawn by lamp:

I = 70/120

I = 0.58 A

B) Will this combination blow the 15-A fuse?

The total current drawn by all three devices is

Total current = 15.33 + 11.83 + 0.58

Total current = 27.74 A

Therefore, the fuse will definitely blow up since the current drawn by three devices (27.74 A) is way higher than 15 A fuse rating.

5 0
3 years ago
For this problem, you may not look at any other code or pseudo-code (even if it is on the internet), other than what is on our w
sergiy2304 [10]

Answer:

(a)

(i) pseudo code :-

current = i

// assuming parent of root is -1

while A[parent] < A[current] && parent != -1 do,

if A[parent] < A[current] // if current element is bigger than parent then shift it up

swap(A[current],A[parent])

current = parent

(ii) In heap we create a complete binary tree which has height of log(n). In shift up we will take maximum steps equal to the height of tree so number of comparison will be in term of O(log(n))

(b)

(i) There are two cases while comparing with grandparent. If grandparent is less than current node then surely parent node also will be less than current node so swap current node with parent and then swap parent node with grandparent.

If above condition is not true then we will check for parent node and if it is less than current node then swap these.

pseudo code :-

current = i

// assuming parent of root is -1

parent is parent node of current node

while A[parent] < A[current] && parent != -1 do,

if A[grandparent] < A[current] // if current element is bigger than parent then shift it up

swap(A[current],A[parent])

swap(A[grandparent],A[parent])

current = grandparent

else if A[parent] < A[current]

swap(A[parent],A[current])

current = parent

(ii) Here we are skipping the one level so max we can make our comparison half from last approach, that would be (height/2)

so order would be log(n)/2

(iii) C++ code :-

#include<bits/stdc++.h>

using namespace std;

// function to return index of parent node

int parent(int i)

{

if(i == 0)

return -1;

return (i-1)/2;

}

// function to return index of grandparent node

int grandparent(int i)

{

int p = parent(i);

if(p == -1)

return -1;

else

return parent(p);

}

void shift_up(int A[], int n, int ind)

{

int curr = ind-1; // because array is 0-indexed

while(parent(curr) != -1 && A[parent(curr)] < A[curr])

{

int g = grandparent(curr);

int p = parent(curr);

if(g != -1 && A[g] < A[curr])

{

swap(A[curr],A[p]);

swap(A[p],A[g]);

curr = g;

}

else if(A[p] < A[curr])

{

swap(A[p],A[curr]);

curr = p;

}

}

}

int main()

{

int n;

cout<<"enter the number of elements :-\n";

cin>>n;

int A[n];

cout<<"enter the elements of array :-\n";

for(int i=0;i<n;i++)

cin>>A[i];

int ind;

cout<<"enter the index value :- \n";

cin>>ind;

shift_up(A,n,ind);

cout<<"array after shift up :-\n";

for(int i=0;i<n;i++)

cout<<A[i]<<" ";

cout<<endl;

}

Explanation:

8 0
3 years ago
Information such as tolerances and scale can be found in the _______________ of an engineering drawing.
nasty-shy [4]

Answer:

Information such as tolerance and scale can be found in the <u>title block</u> of an engineering drawing

Explanation:

The title block of an engineering drawing can normally be found on the lower right and corner of an engineering drawing and it carries the information that are used to specify details that are specific the drawing including, the name of the project, the name of the designer, the name of the client, the sheet number, the drawing tolerance, the scale, the issue date, and other relevant information, required to link the drawing with the actual structure or item

8 0
2 years ago
Other questions:
  • In C++ the declaration of floating point variables starts with the type name float or double, followed by the name of the variab
    14·1 answer
  • Thermosetting polymers are polymers that becomes soft and pliable when heated. ( True , False )
    8·2 answers
  • Determine the average and rms values for the function, y(t)=25+10sino it over the time periods (a) 0 to 0.1 sec and (b) 0 to 1/3
    9·1 answer
  • Do you understand entropy? Why the concept of entropy is difficult to engineering students?
    11·1 answer
  • 0 - 1"<br> -20<br> -15<br> -10<br> 5<br> 0 1 2 3<br> 0
    14·1 answer
  • Why would Chris most likely conclude that he should seek help? A. He feels in control of his emotions even though people annoy h
    15·2 answers
  • 6.1-2. Diffusion of CO, in a Binary Gas Mixture. The gas CO2 is diffusing at stcady state through a tube 0.20 m long having a di
    7·1 answer
  • Describe the role of C-S-H in providing strength for cement. Discuss which compounds produce C-S-H and why balancing the amounts
    13·1 answer
  • A cylindrical 1045 steel bar is subjected to repeated compression-tension stress cycling along its axis. If the load amplitude i
    10·1 answer
  • أجوبة على مسائل في الإستاتيكا أيمكن ذالك
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!