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
kotykmax [81]
2 years ago
5

Jordan's dad made a new recipe for dinner. Jordan looked at the food and saw that it was white, yellow, and purple in color. She

picked up a few pieces and felt that they were firm. As she moved the pieces to her mouth, she recognized the scent of carrot and black pepper. When she took a bite, she noticed it was salty and sweet.
Which statement best describes how Jordan used her senses to know what ingredients were in the recipe?
Engineering
1 answer:
zhenek [66]2 years ago
7 0

Answer:

Jordan used her eyes to see the food, her touch to feel the food, and her nose to smell the food, and lastly, but most importantly, she used her mouth to taste the food.

You might be interested in
Air flows from a large reservoir in which the pressure and temperature are 1 MPa and 30°C, respectively, through a convergent–di
SSSSS [86.1K]

Answer:

The solution is attached in the attachment.

3 0
3 years ago
Read 2 more answers
In a black box experiment, when the amount of material exiting a closed system is less than the amount of material entering the
Oksi-84 [34.3K]

When the material that exits is lesser in amount than that of the entering material in a black box experiment, the parts of the system need to be changed.

<h3>What happens in a black box experiment?</h3>

In a black box experiment, the experimenters need to make assumptions regarding the drawing of conclusions. One such conclusion is the amount of material that exits.

If such amount is lesser than the one that enters the system, such experiment concludes that it is the time to change the parts of the system.

Hence, option D holds true regarding the black box experiment.

Learn more about black box experiment here:

brainly.com/question/13403296

#SPJ1

4 0
2 years ago
Entor" by
IrinaVladis [17]

Answer:

To generalize your thought about answer. in technology

Explanation:

4 0
3 years ago
A shaft made of stainless steel has an outside diameter of 42 mm and a wall thickness of 4 mm. Determine the maximum torque T th
fiasKO [112]

Answer:

Explanation:

Using equation of pure torsion

\frac{T}{I_{polar} }=\frac{t}{r}

where

T is the applied Torque

I_{polar} is polar moment of inertia of the shaft

t is the shear stress at a distance r from the center

r is distance from center

For a shaft with

D_{0} = Outer Diameter

D_{i} = Inner Diameter

I_{polar}=\frac{\pi (D_{o} ^{4}-D_{in} ^{4}) }{32}

Applying values in the above equation we get

I_{polar} =\frac{\pi(0.042^{4}-(0.042-.008)^{4})}{32}\\I_{polar}= 1.74 x 10^{-7} m^{4}

Thus from the equation of torsion we get

T=\frac{I_{polar} t}{r}

Applying values we get

T=\frac{1.74X10^{-7}X100X10^{6}  }{.021}

T =829.97Nm

7 0
3 years ago
More discussion about seriesConnect(Ohm) function In your main(), first, construct the first circuit object, called ckt1, using
STALIN [3.7K]

Answer:

resistor.h

//circuit class template

#ifndef TEST_H

#define TEST_H

#include<iostream>

#include<string>

#include<vector>

#include<cstdlib>

#include<ctime>

#include<cmath>

using namespace std;

//Node for a resistor

struct node {

  string name;

  double resistance;

  double voltage_across;

  double power_across;

};

//Create a class Ohms

class Ohms {

//Attributes of class

private:

  vector<node> resistors;

  double voltage;

  double current;

//Member functions

public:

  //Default constructor

  Ohms();

  //Parameterized constructor

  Ohms(double);

  //Mutator for volatage

  void setVoltage(double);

  //Set a resistance

  bool setOneResistance(string, double);

  //Accessor for voltage

  double getVoltage();

  //Accessor for current

  double getCurrent();

  //Accessor for a resistor

  vector<node> getNode();

  //Sum of resistance

  double sumResist();

  //Calculate current

  bool calcCurrent();

  //Calculate voltage across

  bool calcVoltageAcross();

  //Calculate power across

  bool calcPowerAcross();

  //Calculate total power

  double calcTotalPower();

  //Display total

  void displayTotal();

  //Series connect check

  bool seriesConnect(Ohms);

  //Series connect check

  bool seriesConnect(vector<Ohms>&);

  //Overload operator

  bool operator<(Ohms);

};

#endif // !TEST_H

resistor.cpp

//Implementation of resistor.h

#include "resistor.h"

//Default constructor,set voltage 0

Ohms::Ohms() {

  voltage = 0;

}

//Parameterized constructor, set voltage as passed voltage

Ohms::Ohms(double volt) {

  voltage = volt;

}

//Mutator for volatage,set voltage as passed voltage

void Ohms::setVoltage(double volt) {

  voltage = volt;

}

//Set a resistance

bool Ohms::setOneResistance(string name, double resistance) {

  if (resistance <= 0){

      return false;

  }

  node n;

  n.name = name;

  n.resistance = resistance;

  resistors.push_back(n);

  return true;

}

//Accessor for voltage

double Ohms::getVoltage() {

  return voltage;

}

//Accessor for current

double Ohms::getCurrent() {

  return current;

}

//Accessor for a resistor

vector<node> Ohms::getNode() {

  return resistors;

}

//Sum of resistance

double Ohms::sumResist() {

  double total = 0;

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

      total += resistors[i].resistance;

  }

  return total;

}

//Calculate current

bool Ohms::calcCurrent() {

  if (voltage <= 0 || resistors.size() == 0) {

      return false;

  }

  current = voltage / sumResist();

  return true;

}

//Calculate voltage across

bool Ohms::calcVoltageAcross() {

  if (voltage <= 0 || resistors.size() == 0) {

      return false;

  }

  double voltAcross = 0;

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

      voltAcross += resistors[i].voltage_across;

  }

  return true;

}

//Calculate power across

bool Ohms::calcPowerAcross() {

  if (voltage <= 0 || resistors.size() == 0) {

      return false;

  }

  double powerAcross = 0;

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

      powerAcross += resistors[i].power_across;

  }

  return true;

}

//Calculate total power

double Ohms::calcTotalPower() {

  calcCurrent();

  return voltage * current;

}

//Display total

void Ohms::displayTotal() {

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

      cout << "ResistorName: " << resistors[i].name << ", Resistance: " << resistors[i].resistance

          << ", Voltage_Across: " << resistors[i].voltage_across << ", Power_Across: " << resistors[i].power_across << endl;

  }

}

//Series connect check

bool Ohms::seriesConnect(Ohms ohms) {

  if (ohms.getNode().size() == 0) {

      return false;

  }

  vector<node> temp = ohms.getNode();

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

      this->resistors.push_back(temp[i]);

  }

  return true;

}

//Series connect check

bool Ohms::seriesConnect(vector<Ohms>&ohms) {

  if (ohms.size() == 0) {

      return false;

  }

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

      this->seriesConnect(ohms[i]);

  }

  return true;

}

//Overload operator

bool Ohms::operator<(Ohms ohms) {

  if (ohms.getNode().size() == 0) {

      return false;

  }

  if (this->sumResist() < ohms.sumResist()) {

      return true;

  }

  return false;

}

main.cpp

#include "resistor.h"

int main()

{

   //Set circuit voltage

  Ohms ckt1(100);

  //Loop to set resistors in circuit

  int i = 0;

  string name;

  double resistance;

  while (i < 3) {

      cout << "Enter resistor name: ";

      cin >> name;

      cout << "Enter resistance of circuit: ";

      cin >> resistance;

      //Set one resistance

      ckt1.setOneResistance(name, resistance);

      cin.ignore();

      i++;

  }

  //calculate totalpower and power consumption

  cout << "Total power consumption = " << ckt1.calcTotalPower() << endl;

  return 0;

}

Output

Enter resistor name: R1

Enter resistance of circuit: 2.5

Enter resistor name: R2

Enter resistance of circuit: 1.6

Enter resistor name: R3

Enter resistance of circuit: 1.2

Total power consumption = 1886.79

Explanation:

Note

Please add all member function details.Its difficult to figure out what each function meant to be.

8 0
3 years ago
Other questions:
  • Technician A says that horsepower equals the ability to perfoem work at a rate of 33,000 foot-pounds per minute. Technician B sa
    15·1 answer
  • Type the correct answer in the box. Spell all words correctly.
    9·1 answer
  • Estimate the theoretical fracture strength of a brittle material if it is known that fracture occurs by the propagation of an el
    10·2 answers
  • A trapezoidal ditch is designed with a bottom width of 3 space f t and side slopes of m equals 1 on both sides. The channel is m
    9·1 answer
  • Since the engineering design process may take the engineer back to its beginning, the process is considered ________
    9·1 answer
  • An exclusive 20-year right to manufacture a product or use a process is a: Franchise. Trademark. Patent. Copyright.
    6·1 answer
  • Consider the following ways of handling deadlock: (1) banker’s algorithm, (2) detect
    9·1 answer
  • In a true Brayton cycle, the pressure ratio is 9. Air input temperature to the cycle 300 K pressure is 100 kPa. The maximum temp
    9·1 answer
  • Mr. Blue lives in a blue house, Mrs. Pink lives in a pink house and Mr. Red lives in a red house. Who lives in the White House?
    11·1 answer
  • 6. During some actual expansion and compression processes in piston–cylinder devices, the gases have been
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!