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
kenny6666 [7]
3 years ago
14

calculate how much black eyes seeds are necessary to plant a 6- hectare( 14.425 acres) field. given that the weight of 1000 blac

k eye peas is 230 g ( take 1 lb=453.4 grams), consider that the planting area is 100 m wide​
Engineering
1 answer:
11111nata11111 [884]3 years ago
6 0

Answer: 1.38g

Explanation:

Width of planting area = 100m

Field size = 6-hectares(14.425 acres)

Weight of 1000 black eye seed = 230g

1 lb = 453.4g

1 black eye seed = 230g/1000 = 0.23g = 0.00023kg

1 hectare = 10,000sq metre

6 hectare = 60,000sq metre

(Weight/Area) kg/m2

0.00023kg / 10,000 = 2.3×10^-8kg/m^2

And field size = 6hectares = 60,000m^2

(2.3×10^-8) × 60,000 = 0.00138kg of black eye seed

0.00138kg × 1000 = 1.38g

You might be interested in
Bending is defined as? A. the application of a load tending to distort a member in one direction. B. the application of opposing
amm1812
Hi how are you today
4 0
3 years ago
A cylinder fitted with a frictionless piston contains 2 kg of R-134a at 3.5 bar and 100 C. The cylinder is now cooled so that th
inna [77]

Answer:

The answer to the question is

The heat transferred in the process is -274.645 kJ

Explanation:

To solve the question, we list out the variables thus

R-134a = Tetrafluoroethane

Intitial Temperaturte t₁ = 100 °C

Initial pressure = 3.5 bar = 350 kPa

For closed system we have m₁ = m₂ = m

ΔU = m×(u₂ - u₁) = ₁Q₂ -₁W₂

For constant pressure process we have

Work done = W = \int\limits^a_b P \, dV  = P×ΔV = P × (V₂ - V₁) = P×m×(v₂ - v₁)

From the tables we have

State 1 we have h₁ = (490.48 +489.52)/2 = 490 kJ/kg

State 2 gives h₂ = 206.75 + 0.75 × 194.57= 352.6775 kJ/kg

Therefore Q₁₂ = m×(u₂ - u₁) + W₁₂ = m × (u₂ - u₁) + P×m×(v₂ - v₁)

= m×(h₂ - h₁) = 2.0 kg × (352.6775 kJ/kg - 490 kJ/kg) =-274.645 kJ

5 0
3 years ago
A 100 meter dash is run on a track in the direction of the vector = 2 + 7 . The wind velocity is = 5 + km/hr. The rules say that
Scrat [10]

Answer:joe mamma

Explanation:

6 0
3 years ago
A fan that consumes 20 W of electric power when operating is claimed to discharge air from a ventilated room at a rate of 1.0 kg
solong [7]

Answer:

No, the claim is not reasonable for 20 W electric power consumption.

It is reasonable for 40 W electric power consumption.

Explanation:

Power = (1/2)*mass flow rate*(square of velocity)

mass flow rate = 1 kg/s

velocity = 8 m/s

square of velocity = 64 m^2 / s^2

Power = (1/2)*(1)*(64)

Power  = 32 W

For a fan that consumes 20 W power it is not possible to deliver more power than 20 W but this one is delivering 32 W hence it is a false claim.

For a fan that consumes 40 W it is indeed possible to deliver 32 W considering the efficiency. Hence this claim is reasonable.

5 0
3 years ago
For a project in C++ we are supposed toDesign a class named Month. The class should have the following private members:-name: a
mart [117]

Answer:

include <iostream>

using namespace std;

 

class Month

{

public:

 Month (char firstLetter, char secondLetter, char thirdLetter);

 

 Month (int monthNum);

.

 

 Month();

 void outputMonth_num();

 

 

 void outputMonthLetters();

private:

 int month;

};

 

 

int main ()

{

 //

 // Variable declarations

 //

 int monthNum;

 char firstLetter, secondLetter, thirdLetter;    

 char testAgain;              

 

 do {

 

   cout << endl;

   cout << "Testing the default constructor ..." << endl;

   Month defaultMonth;

   defaultMonth.outputMonth_num();

   defaultMonth.outputMonthLetters();

 

   //

   // Construct a month using the constructor with one integer argument

   //

   cout << endl;

   cout << "Testing the constructor with one integer argument..." << endl;

   cout << "Enter a month number: ";

   cin >> monthNum;

 

   Month testMonth1(monthNum);

   testMonth1.outputMonth_num();

   testMonth1.outputMonthLetters();

 

   //

   // Construct a month using the constructor with three letters as arguments

   //

   cout << endl;

   cout << "Testing the constructor with 3 letters as arguments ..." << endl;

   cout << "Enter the first three letters of a month (lowercase): ";

   cin >> firstLetter >> secondLetter >> thirdLetter;

   cout << endl;

 

   Month testMonth2(firstLetter, secondLetter, thirdLetter);

   testMonth2.outputMonth_num();

   testMonth2.outputMonthLetters();

 

   //

   // See if user wants to try another month

   //

   cout << endl;

   cout << "Do you want to test again? (y or n) ";

   cin >> testAgain;

 }

 while (testAgain == 'y' || testAgain == 'Y');

 

 return 0;

}

 

 

Month::Month(char firstLetter, char secondLetter, char thirdLetter)

{

if ((firstLetter == 'j')&&(secondLetter == 'a')&&(thirdLetter == 'n'))

  outputMonth_num = 1;

if ((firstLetter == 'f')&&(secondLetter == 'e')&&(thirdLetter == 'b'))

  outputMonth_num = 2;

if ((firstLetter == 'm')&&(secondLetter == 'a')&&(thirdLetter == 'r'))

  outputMonth_num = 3;

if ((firstLetter = 'a')&&(secondLetter == 'p')&&(thirdLetter == 'r'))

  outputMonth_num = 4;

if ((firstLetter == 'm')&&(secondLetter == 'a')&&(thirdLetter == 'y'))

  outputMonth_num = 5;

if ((firstLetter == 'j')&&(secondLetter == 'u')&&(thirdLetter == 'n'))

  outputMonth_num = 6;

if ((firstLetter == 'j')&&(secondLetter == 'u')&&(.thirdLetter == 'l'))

  outputMonth_num = 7;

if ((firstLetter == 'a')&&(secondLetter == 'u')&&(thirdLetter == 'g'))

  outputMonth_num = 8;

if ((firstLetter == 's')&&(secondLetter == 'e')&&(thirdLetter == 'p'))

  outputMonth_num = 9;

if ((firstLetter == 'o')&&(secondLetter == 'c')&&(thirdLetter == 't'))

  outputMonth_num = 10;

if ((firstLetter == 'n')&&(secondLetter == 'o')&&(thirdLetter == 'v'))

 outputMonth_num = 11;

if ((firstLetter == 'd')&&(secondLetter == 'e')&&(thirdLetter == 'c'))

 outputMonth_num = 12;

}

 

Month::inputMonthByNumber

{

if (Month_num > 12 && Month_num < 1)

cout << "Invalid number for Month, please choose 1-12)\n";

}

 

void Month::outputMonth_num()

{

 if (month >= 1 && month <= 12)

   cout ><< "Month: " << month << endl;

 else

   cout << "Error - The month is not a valid!" << endl;

}

 

void Month::outputMonthLetters()

{

 switch (month)

   {

   case 1:

     cout << "Jan" << endl;

     break;

   case 2:

     cout << "Feb" << endl;

     break;

   case 3:

     cout << "Mar" << endl;

     break;

   case 4:

     cout << "Apr" << endl;

     break;

   case 5:

     cout << "May" << endl;

     break;

   case 6:

     cout << "Jun" << endl;

     break;

   case 7:

     cout << "Jul" << endl;

     break;

   case 8:

     cout << "Aug" << endl;

     break;

   case 9:  

     cout << "Sep" << endl;

     break;

   case 10:

     cout << "Oct" << endl;

     break;

   case 11:

     cout << "Nov" << endl;

     break;

   case 12:

     cout << "Dec" << endl;

     break;

   default:

     cout << "Error - the month is not a valid!" << endl;

   }

}

7 0
3 years ago
Other questions:
  • What will happen in a wire drawing operation when the cross-sectional area has a reduction of 60% in a single pass?
    10·1 answer
  • What’s the purpose of current tracks
    6·1 answer
  • 1. Looking at the case study provided under the Companion Material section, what is the main problem that is addressed in this c
    13·1 answer
  • If 5000 N of thrust is acting to the left, and 4300 N of drag is acting to the right, what is the magnitude and direction of the
    11·1 answer
  • A heat pump and a refrigerator are operating between the same two thermal reservoirs. Which one has a higher COP?
    10·1 answer
  • Zionjasean17 zionjasean17
    8·2 answers
  • Add my sc please?.<br><br> kindacracked
    12·2 answers
  • Consider the following example: The 28-day compressive strength should be 4,000 psi. The slump should be between 3 and 4 in. and
    13·1 answer
  • What is the moment that the wrench puts on the bolt?
    13·1 answer
  • Respond with TRUE if the symbol of the valve shown belows
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!