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
13

Hello everyone, how can you draw this drawing?

Engineering
1 answer:
dedylja [7]3 years ago
4 0
I don’t see a drawing? Is there supposed to be a picture or something?
You might be interested in
The Acme tool is aligned to the work with: A. A square B. The eye C. An Acme tool gage D. A center gage
kotegsom [21]

Answer:

(c) an acme tool gage

Explanation:

with the help of an acme tool we measure the pitch of a screw thread it is used as reference for finding the pitch of the thread it is also called an inspection tool is aligned to work with an acme tool gage it is also used for gage the internal and external threaded product. it is also used for grinding and setting tools it is mainly work 29° thread angle

8 0
4 years ago
Air enters a 34 kW electrical heater at a rate of 0.8 kg/s with negligible velocity and a temperature of 60 °C. The air is disch
Flura [38]

Answer:

79 kW.

Explanation:

The equation for enthalpy is:

H2 = H1 + Q - L

Enthalpy is defined as:

H = G*(Cv*T + p*v)

This is specific volume.

The gas state equation is:

p*v = R*T (with specific volume)

The specific gas constant for air is:

287 K/(kg*K)

Then:

T1 = 60 + 273 = 333 K

T2 = 200 + 273 = 473 K

p1*v1 = 287 * 333 = 95.6 kJ/kg

p2*v2 = 287 * 473 = 135.7 kJ/kg

The Cv for air is:

Cv = 720 J/(kg*K)

So the enthalpies are:

H1 = 0.8*(0.72 * 333 + 95.6) = 268 kW

H2 = 0.8*(0.72 * 473 + 135.7) = 381 kW

Ang the heat is:

Q = 34 kW

Then:

H2 = H1 + Q - L

381 = 268 + 34 - L

L = 268 + 34 - 381 = -79 kW

This is the work from the point of view of the air, that's why it is negative.

From the point of view of the machine it is positive.

4 0
4 years ago
Inhalation is the most common way for a(n)
Mademuasel [1]

inhalation is the most common way for chemical to enter the body

6 0
3 years ago
Visual interpretations when driving are two things: first, what the driver sees around him or her passively, so it is what the e
Phoenix [80]

Answer:

A. How the driver understands and processes the things his or her eyes receive.

Explanation:

When driving, visual interpretation occurs in two things;

  • What the driver sees around him or her passively, mainly what is received by the eye
  • How the driver understands and processes the things his or her eyes receive

Proper vision is vital while driving. There is the central vison and the peripheral vision. The central vision is what the driver sees in front through the windshield straight ahead. The Peripheral vision is what is seen at the corners of the eyes.

8 0
3 years ago
For this lab you will be creating a auto-expanding dynamic-array. This array will explicitly hold std library strings. As with a
Inessa05 [86]

Answer:

Explanation:

Program is divided into 3 files. stringVector.h , stringVectory.cpp (implementation file) and main.cpp (testing file)

stringVector.h

#include<iostream>

using namespace std;

class stringVector {

private:

string * data;

unsigned length;

unsigned allocated_length;

public:

stringVector();

virtual ~stringVector();

unsigned size();

unsigned capacity();

void reserve(unsigned new_size);

bool empty();

void append(string new_data);

void swap(unsigned pos1, unsigned pos2);

stringVector &operator = (stringVector const &rhs);

string& operator[](unsigned position);

void sort();

};

stringVector.cpp

#include<iostream>

#include<stdexcept>

#include"stringVector.h"

stringVector::stringVector()

{

data = NULL;

length = 0;

allocated_length = 0;

}

stringVector::~stringVector()

{

delete [] data;

}

unsigned stringVector::size()

{

return length;

}

unsigned stringVector::capacity()

{

return allocated_length;

}

void stringVector::reserve(unsigned new_size)

{

string *temp = new string[new_size]; // Create a new array

 

/*Copy the contents of the array*/

for(int i =0; i < new_size; i++){

if(i < length){

temp[i] = data[i];

}

else

break;

}

 

delete []data ;// Delete previous array

data = temp;

allocated_length = new_size;

if(length > new_size){

length = new_size;

}

}

bool stringVector::empty(){

return (length == 0) ? true : false;

}

void stringVector::append(string new_data)

{

string *temp = NULL;

if(length == allocated_length){

if(allocated_length == 0){

data = new string[10];

allocated_length = 10;    

}

else{

temp = new string[2 * allocated_length]; // Create a new array with double the size

for(int i = 0; i < length ; i++){

temp[i] = data[i];

}

allocated_length = 2 * allocated_length;

 

if(data != NULL)

delete []data;

data = temp;

}

}

data[length] = new_data;

length++;

}

void stringVector::swap(unsigned pos1, unsigned pos2)

{

string str;

if((pos1 >= length) || (pos2 >= length)){

cout << "Index Out of bounds" << endl;

return;

}

str = data[pos1];

data[pos1] = data[pos2];

data[pos2] = str;

}

stringVector& stringVector::operator = (stringVector const &rhs)

{

delete [] data;

length = rhs.length;

allocated_length = rhs.allocated_length;

this->data = new string[allocated_length];

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

this->data[i] = rhs.data[i];

}

string& stringVector::operator[](unsigned position)

{

if(position > length){

throw std::out_of_range("Position out of range");

}

return data[position - 1];

}

void stringVector::sort()

{

string str;

for(int i= (length - 1) ; i > 0; i--){

for(int j = 0; j < i; j++){

if(data[j].compare(data[j+1]) > 0){

//Swap

str = data[j];

data[j] = data[j+1];

data[j+1] = str;

}

}

}

}

main.cpp

#include<iostream>

#include<stdexcept>

#include"stringVector.h"

void printVector(stringVector &);

int main()

{

stringVector vector;

string str1("California");

string str2("Alabama");

string str3("Oklahoma");

string str4("Texas");

vector.append(str1);

vector.append(str2);

vector.append(str3);

vector.append(str4);

cout << vector.size() << " - " << vector.capacity() << endl;

printVector(vector);

cout << endl;

vector.reserve(3);

cout << vector.size() << " - " << vector.capacity() << endl;

printVector(vector);

cout << endl;

vector.append(str4);

cout << vector.size() << " - " << vector.capacity() << endl;

printVector(vector);

cout << endl << "Copied vector : " << endl;

stringVector vector2 = vector;

printVector(vector2);

cout << endl;

vector.sort();

cout << "Vector 1 after sorting" << endl;

printVector(vector);

return 0;

}

void printVector(stringVector &vec)

{

cout << "Vector : ";

for(int i = 1 ; i <= vec.size(); i++){

cout << vec[i] << " ";

}

cout << endl;

}

OUTPUT:

[[email protected] cppProg3]$ ./main

4 - 10

Vector: California Alabama Oklahoma Texas

3 -3

Vector: California Alabama Oklahoma

4 - 6

Vector: California Alabama Oklahoma Texas

Copied Vector:

Vector: California Alabama Oklahoma Texas

Vector 1 after sorting

Vector: Alabama California Oklahoma Texas

8 0
3 years ago
Other questions:
  • Zona intermedia de pozos <br> Y<br> Efecto de inavasion
    6·1 answer
  • 3. An isolated system has an initial temperature of 30oC. It is then placed on top of a Bunsen burner whose temperature is 70oC
    10·1 answer
  • The ____________ signal from the robot controller instructs the robot to do something.
    10·1 answer
  • A full-scale working model used to test a design solution by making actual observations and necessary adjustments.
    8·1 answer
  • Which sentence highlights the best way of site planning?
    15·1 answer
  • When trying to bleed a vehicle with heigh sensing proportioning valve, the technician notices there is no pressure/fluid coming
    7·1 answer
  • Starting with a context diagram, draw as many nested DFDs as you consider necessary to represent all the details of your times p
    11·1 answer
  • As a result of the 1934 requirement that public companies’ annual financial statements be "certified…by independent public accou
    11·1 answer
  • Suzanne Brett wants to borrow $55,000 from the bank. The interest rate is 6.5% and the term is for 5 years.
    5·1 answer
  • In a black box experiment, when the amount of material exiting a closed system is less than the amount of material entering the
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!