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
Evgen [1.6K]
3 years ago
14

f the rope is drawn toward the motor M at a speed of vM= (5t3/2) m/s, where t is in seconds, determine the speed of the cylinder

when t = 1.5
Engineering
1 answer:
SCORPION-xisa [38]3 years ago
4 0

harden you could either me or leave

harden you could either me or leave

harden you could either me or leave

harden you could either me or leave

harden you could either me or leave

harden you could either me or leave

harden you could either me or leave

GO WATCH AFTER OUT NOW RADDED Rharden you could either me or leave

harden you could either me or leave

harden you could either me or leave

GO WATCH AFTER OUT NOW RADDED Rharden you could either me or leave

harden you could either me or leave

harden you could either me or leave

harden you could either me or leave

harden you could either me or leave

GO WATCH AFTER OUT NOW RADDED Rharden you could either me or leave

harden you could either me or leave

harden you could either me or leave

GO WATCH AFTER OUT NOW RADDED Rharden you could either me or leave

harden you could either me or leave

harden you could either me or leave

GO WATCH AFTER OUT NOW RADDED Rharden you could either me or leave

harden you could either me or leave

harden you could either me or leave

GO WATCH AFTER OUT NOW RADDED Rharden you could either me or leave

harden you could either me or leave

harden you could either me or leave

GO WATCH AFTER OUT NOW RADDED Rharden you could either me or leave

harden you could either me or leave

harden you could either me or leave

GO WATCH AFTER OUT NOW RADDED RVV

harden you could either me or leave

GO WATCH AFTER OUT NOW RADDED R

harden you could either me or leave

GO WATCH AFTER OUT NOW RADDED R

harden you could either me or leave

GO WATCH AFTER OUT NOW RADDED R

You might be interested in
What is the volicity of a rocket?
Marysya12 [62]

Answer:

7.9 kilometers per second

Explanation:

8 0
2 years ago
Read 2 more answers
Consider a Carnot heat pump cycle executed in a steady-flow system in the saturated mixture region using R-134a flowing at a rat
attashe74 [19]

Answer:

7.15

Explanation:

Firstly, the COP of such heat pump must be measured that is,

              COP_{HP}=\frac{T_H}{T_H-T_L}

Therefore, the temperature relationship, T_H=1.15\;T_L

Then, we should apply the values in the COP.

                           =\frac{1.15\;T_L}{1.15-1}

                           =7.67

The number of heat rejected by the heat pump must then be calculated.

                   Q_H=COP_{HP}\times W_{nst}

                          =7.67\times5=38.35

We must then calculate the refrigerant mass flow rate.

                   m=0.264\;kg/s

                   q_H=\frac{Q_H}{m}

                         =\frac{38.35}{0.264}=145.27

The h_g value is 145.27 and therefore the hot reservoir temperature is 64° C.

The pressure at 64 ° C is thus 1849.36 kPa by interpolation.

And, the lowest reservoir temperature must be calculated.

                   T_L=\frac{T_H}{1.15}

                        =\frac{64+273}{1.15}=293.04

                        =19.89\°C

the lowest reservoir temperature = 258.703  kpa                    

So, the pressure ratio should be = 7.15

8 0
3 years ago
What components are included in a basic engine block?
atroni [7]
Houses the CYLINDERS, Water Jacket & Crankcase
8 0
2 years ago
Based on these statements:
Evgen [1.6K]

Answer:

the third statement is true

Explanation:

given data

Lenovos cost more than Dells

Lenovos cost less than Apples

solution

we have given 1st statement that is express as

cost (Lenovo) > cost (Dell)     ..................1

and

2nd statement that is express as

cost (Lenovo) < cost (Apple)

so we can say it as

cost (Apple) > cost (Lenovo)       ......................2

and

now above Both equation 1 and 2 can be written as

cost (Apple) > cost (Lenovo) > cost (Dell)      .........................3

so we can say cost of Apples is more than the cost of Lenovos and the cost of Dells

so as that given 3rd statement is true

7 0
3 years ago
You will create an array manipulation program that allows the user to do pretty much whatever they want to an array. When launch
enyata [817]

Answer:

Check the explanation

Explanation:

#include <iostream>

using namespace std;

void insert(int* arr, int* size, int value, int position){

if(position<0 || position>=*size){

cout<<"position is greater than size of the array"<<endl;

return ;

}

*size = *size + 1 ;

for(int i=*size;i>position;i--){

arr[i] = arr[i-1];

}

arr[position] = value ;

}

void print(int arr[], int size){

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

cout<< arr[i] <<" ";

}

cout<<" "<<endl;

}

void remove(int* arr, int* size, int position){

* size = * size - 1 ;

for(int i=position;i<*size;i++){

arr[i] = arr[i+1];

}

}

int count(int arr[], int size, int target){

int total = 0 ;

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

if(arr[i] == target)

total += 1 ;

}

return total ;

}

int main()

{

int size;

cout<<"Enter the initial size of the array:";

cin>>size;

int arr[size],val;

cout<<"Enter the values to fill the array:"<<endl;

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

cin>>val;

arr[i] = val ;

}

int choice = 5,value,position,target ;

do{

cout<<"Make a selection:"<<endl;

cout<<"1) Insert"<<endl;

cout<<"2) Remove"<<endl;

cout<<"3) Count"<<endl;

cout<<"4) Print"<<endl;

cout<<"5) Exit"<<endl;

cout<<"Choice:";

cin>>choice;

switch(choice){

case 1:

cout << "Enter the value:";

cin>>value;

cout << "Enter the position:";

cin>>position;

insert(arr,&size,value,position);

break;

case 2:

cout << "Enter the position:";

cin>>position;

remove(arr,&size,position);

break;

case 3:

cout<<"Enter the target value:";

cin>>target;

cout <<"The number of times "<<target<<" occured in your array is:" <<count(arr,size,target)<<endl;

break;

case 4:

print(arr,size);

break;

case 5:

cout <<"Thank you..."<<endl;

break;

default:

cout << "Invalid choice..."<<endl;

}

}while(choice!=5);

return 0;

}

Kindly check the attached images below for the code output.

3 0
3 years ago
Other questions:
  • If you know that the change in entropy of a system where heat was added is 12 J/K, and that the temperature of the system is 250
    10·1 answer
  • After a 65 newton weight has fallen freely from rest a vertical distance of 5.3 meters, the kinetic energy of the weight is
    12·1 answer
  • An electrochemical cell is composed of pure nickel and pure iron electrodes immersed in solutions of their divalent ions. If the
    13·1 answer
  • A very specific part of the population is called a
    6·1 answer
  • A heat engine receives heat from a heat source at 1453 C and has a thermal efficiency of 43 percent. The heat engine does maximu
    11·1 answer
  • A cylinder with a frictionless piston contains 0.05 m3 of air at 60kPa. The linear spring holding the piston is in tension. The
    11·1 answer
  • It is the tool used to measure the amount of electric current​
    6·2 answers
  • A pump transfers water from a lake to a reservoir, which is located 29.2 m above the lake, at a rate of 11.5 L/s. Determine the
    12·1 answer
  • What is the difference between a series circuit and a parallel circuit?
    11·2 answers
  • Draw the schematics for the following two battery connections. Can you explain the value of the output voltage in the series con
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!