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
Mademuasel [1]
3 years ago
8

If it is desired to lay off a distance of 10,000' with a total error of no more than ± 0.30 ft. If a 100' tape is used and the

distance can be measured using full tape measures, what is the maxim error per tape measure allowed?
Engineering
1 answer:
Ira Lisetskai [31]3 years ago
3 0

Answer:

± 0.003 ft

Explanation:

Since our distance is 10,000 ft and we need to use a full tape measure of 100 ft. We find that 10,000 = 100 × 100.

Let L' = our distance and L = our tape measure

So, L' = 100L

Now by error determination ΔL' = 100ΔL

Now ΔL' = ± 0.30 ft

ΔL = ΔL'/100

= ± 0.30 ft/100

= ± 0.003 ft

So, the maxim error per tape is ± 0.003 ft

You might be interested in
If a torque of M = 300 N⋅m is applied to the flywheel, determine the force that must be developed in the hydraulic cylinder CD t
Licemer1 [7]

Answer:

<em>866.1 N</em>

Explanation:

The torque on the flywheel = 300 N-m

The force from the hydraulic cylinder will generate a moment on CA about point A.

The part of this moment that will be at point B about A must be proportional to the torque on the cylinder which is 300 N-m

we know that moment = F x d

where F is the force, and

d is the perpendicular distance from the turning point = 1 m

Equating, we have

300 = F x 1

F = 300 N   this is the frictional force that stops the flywheel

From F = μN

where F is the frictional force

μ is the coefficient of static friction = 0.4

N is the normal force from the hydraulic cylinder

substituting, we have

300 = 0.4 x N

N = 300/0.4 = 750 N

This normal force calculated is perpendicular to CA. This actual force, is at 30° from the horizontal. To get the force from the hydraulic cylinder R, we use the relationship

N = R sin (90 - 30)

750 = R sin 60°

750 = 0.866R

R = 750/0.866 = <em>866.1 N</em>

3 0
3 years ago
What kind of value should an employee possess when employees are expected to be responsible and fair?
jasenka [17]

Answer:

E self-confidence

Explanation:

6 0
3 years ago
Two technicians are discussing relays. Technician A says that relays can fail because the relay winding is open. Technician B sa
hram777 [196]

Technician A says that relays can fail because the relay winding is open. Technician A is correct.

<h3>What is winding?</h3>

A single turn of the wound material, which is material wrapped or coiled around an object.

Poor contact alignment and open coils can also cause relays to malfunction.

The most important aspect impacting relay dependability is choosing the right relay type for a particular application. When incorporating them into circuits, several subpar design techniques are employed.

Hence, technician A is correct.

To learn more about the winding refer;

brainly.com/question/23369600

#SPJ1

4 0
2 years ago
What is the angular velocity (in rad/s) of a body rotating at N r.p.m.?
Darina [25.2K]

Answer:

0.1047N

Explanation:

To solve this problem we must remember the conversion factors, remembering that 1 revolution equals 2π radians and 1min equals 60s

N\frac{rev}{min} \frac{2\pi }{1rev} \frac{1min}{60} =N\frac{2\pi }{60} =0.1047N

in conclusion, to know how many rad / s an element rotates which is expressed in Rev / min we must only multiply by 0.1047

3 0
3 years ago
Amanda and Tyler opened a business that specializes in shipping liquids, such as milk, juice, and water, in cylindrical containe
USPshnik [31]

Answer:

circleType.h

#ifndef circleType_H

#define circleType_H

class circleType

{

public:

void print();

void setRadius(double r);

//Function to set the radius.

//Postcondition: if (r >= 0) radius = r;

// otherwise radius = 0;

double getRadius();

//Function to return the radius.

//Postcondition: The value of radius is returned.

double area();

//Function to return the area of a circle.

//Postcondition: Area is calculated and returned.

double circumference();

//Function to return the circumference of a circle.

//Postcondition: Circumference is calculated and returned.

circleType(double r = 0);

//Constructor with a default parameter.

//Radius is set according to the parameter.

//The default value of the radius is 0.0;

//Postcondition: radius = r;

private:

double radius;

};

#endif

circleTypeImpl.cpp

#include <iostream>

#include "circleType.h"

using namespace std;

void circleType::print()

{

cout << "Radius = " << radius

<< ", area = " << area()

<< ", circumference = " << circumference();

}

void circleType::setRadius(double r)

{

if (r >= 0)

radius = r;

else

radius = 0;

}

double circleType::getRadius()

{

return radius;

}

double circleType::area()

{

return 3.1416 * radius * radius;

}

double circleType::circumference()

{

return 2 * 3.1416 * radius;

}

circleType::circleType(double r)

{

setRadius(r);

}

cylinderType.h

#ifndef cylinderType_H

#define cylinderType_H

#include "circleType.h"

class cylinderType: public circleType

{

public:

void print();

void setHeight(double);

double getHeight();

double volume();

double area();

//returns surface area

cylinderType(double = 0, double = 0);

private:

double height;

};

#endif

cylinderTypeImpl.cpp

#include <iostream>

#include "circleType.h"

#include "cylinderType.h"

using namespace std;

cylinderType::cylinderType(double r, double h)

: circleType(r)

{

setHeight(h);

}

void cylinderType::print()

{

cout << "Radius = " << getRadius()

<< ", height = " << height

<< ", surface area = " << area()

<< ", volume = " << volume();

}

void cylinderType::setHeight(double h)

{

if (h >= 0)

height = h;

else

height = 0;

}

double cylinderType::getHeight()

{

return height;

}

double cylinderType::area()

{

return 2 * 3.1416 * getRadius() * (getRadius() + height);

}

double cylinderType::volume()

{

return 3.1416 * getRadius() * getRadius() * height;

}

main.cpp

#include <iostream>

#include <iomanip>

using namespace std;

#include "cylinderType.h"

int main()

{

double radius,height;

double shippingCostPerLi,paintCost,shippingCost=0.0;

 

cout << fixed << showpoint;

cout << setprecision(2);

cout<<"Enter the radius :";

cin>>radius;

 

cout<<"Enter the Height of the cylinder :";

cin>>height;

 

 

cout<<"Enter the shipping cost per liter :$";

cin>>shippingCostPerLi;

 

 

//Creating an instance of CylinderType by passing the radius and height as arguments

cylinderType ct(radius,height);

 

double surfaceArea=ct.area();

double vol=ct.volume();

 

 

shippingCost+=vol*28.32*shippingCostPerLi;

 

char ch;

 

cout<<"Do you want the paint the container (y/n)?";

cin>>ch;

if(ch=='y' || ch=='Y')

{

cout<<"Enter the paint cost per sq foot :$";

cin>>paintCost;    

shippingCost+=surfaceArea*paintCost;    

}    

cout<<"Total Shipping Cost :$"<<shippingCost<<endl;

 

return 0;

}

3 0
3 years ago
Other questions:
  • A ring-shaped seal, made from a viscoelastic material, is used to seal a joint between two rigid pipes. When incorporated in the
    5·1 answer
  • A motor vehicle has a mass of 1.8 tonnes and its wheelbase is 3 m. The centre of gravity of the vehicle is situated in the centr
    14·1 answer
  • Can anybody teach me how to make an app with flask and pygame together?​
    10·1 answer
  • Which of these is least likely a step in replacing a failed compressor?
    12·2 answers
  • 2.18 The net potential energy between two adjacent ions, EN, may be represented by the following equation: (1) Calculate the bon
    5·1 answer
  • Depreciation is.... *
    7·2 answers
  • Digital leaders are people who __ others down a particular path.
    13·2 answers
  • A low-resistance path in a circuit, commonly called a _____ can cause a circuit breaker to trip
    7·1 answer
  • Di hola por 10 puntos
    8·1 answer
  • How do you explain the application of regulations in locations containing baths, showers and electric floor heating, including t
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!