1. Cleat wiring
2. Batten wiring
3. Conduit wiring
4. Casing and capping wiring
5. Lay in
6.Cable/Pull through
Answer:
Without Recursives
// Program is written using C++
// Comments are used for explanatory purpose
int main()
{
// Declare integer number, n
int n;
cout<<"Enter number of starts to print"
cin>>n;
// Iterate through to print * pattern
for(i=n; i>0;i--)
{
for(j=n; i>j-1;j--)
{
cout<<"*";
}
cout<"\n";
}
for(i=0; i< n; i++)
{
for(j=0;j<=i;j++)
{
cout<<"*";;
}
cout<"\n";
}
return 0;
}
Using Recursive
#include <iostream>
using namespace std;
void printStars(int lines);
int main()
{
// prompt the user to enter a number
int lines;
cin>> lines;
printStars(int lines);
return 0;
}
void printStars(int lines)
{
if (lines < 1)
return;
// to print the stars of a particular row
if (i <= lines)
{
cout << "* ";
// recursively print rest of the stars
// of the row
printPatternRecur(lines, i + 1);
}
else
{
// change line
cout << endl;
// print stars
printPatternRecur(lines-1, 1);
}
}
The diameter of an 18 mm dine when expressed in micrometers is; 18000 micrometers
<h3>Conversion of Units</h3>
We are given the diameter of dime at 18 mm.
Now, from conversion of units between mm(millimeter) and micrometer, we know that;
1 millimeter = 1000 micrometer.
Thus, by proportion, 18 millimeter will be;
18 millimeters × 1000 micrometers/1 millimeter
>> 18000 micrometers
In conclusion, the diameter of the 18mm fine in micrometers is; 18000 micrometers
Read more about conversion of units at; brainly.com/question/8421470
Answer:
1. Industrial revolution was initiated or borne through the production of Steel
2. World War 1 led to the development of Tanks
Explanation:
The production of Steel through the Bessemer Process in the middle of the nineteenth century was a major technological development that spurred the Industrial revolution. This invention led to the widespread use of steel in the production of many things including vehicles and airplanes.
During the First World War in 1914, soldiers found the use of just their armaments in battle as not so productive. This led to the development of Tanks in 1915 that would continue moving towards the enemy even when being shot at.
Answer:
FALSE.
Explanation:
the correct answer is FALSE.
Projection is the process of representing the 3 D object on the flat surface.
there are four ways of representing the projection
1) First angle projection
2) second angle projection
3) third angle projection
4) fourth angle projection.
Generally, people prefer First and third angle projection because there is no overlapping of the projection take place.
In USA people uses the third angle of projection.