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
Sliva [168]
3 years ago
12

What is the missing number in the pattern below? 0, 1, 2, 3, 6, 11, 20, _?_, 68

Engineering
1 answer:
lbvjy [14]3 years ago
3 0

Answer:

0, 1, 2, 3, 6, 11, 20, 37, 68

Explanation:

Each number in the series, starting with 3, is the total of the three numbers before it. The following number is the total of the preceding three numbers, according to the pattern. The pattern's next number is 125.

You might be interested in
I need help with the question
Nataliya [291]

Answer:

in my opinion, it's TRUE statement .

Explanation:

plz mark me brainliest

8 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
A refrigerated space is maintained at -15℃, and cooling water is available at 30℃, the refrigerant is ammonia. The refrigeration
Illusion [34]

Answer:

(1) 5.74

(2) 5.09

(3) 3.05×10⁻⁵ kg/s

(4) 0.00573 kW

Explanation:

The parameters given are;

Working temperature, T_C  = -15°C = 258.15 K

Temperature of the cooling water, T_H = 30°C = 303.15 K

(1) The Carnot coefficient of performance is given as follows;

\gamma_{Max} = \dfrac{T_C}{T_H - T_C}  =  \dfrac{258.15}{303.15 - 258.15}   = 5.74

(2) For ammonia refrigerant, we have;

h_2 = h_g = 1466.3 \ kJ/kg

h_3 = h_f = 322.42 \ kJ/kg

h_4 = h_3 = h_f = 322.42 \ kJ/kg

s₂ = s₁ = 4.9738 kJ/(kg·K)

0.4538 + x₁ × (5.5397 - 0.4538) = 4.9738

∴ x₁ = (4.9738 - 0.4538)/(5.5397 - 0.4538) = 0.89

h_1 = h_{f1} + x_1 \times h_{gf}

h₁ = 111.66 + 0.89 × (1424.6 - 111.66) = 1278.5 kJ/kg

\gamma = \dfrac{h_1 - h_4}{h_2 - h_1}

\gamma = \dfrac{1278.5 - 322.42}{1466.3 - 1278.5} = 5.09

(3) The circulation rate is given by the mass flow rate, \dot m as follows

\dot m = \dfrac{Refrigeration \ capacity}{Refrigeration \ effect \ per \ unit \ mass}

The refrigeration capacity = 105 kJ/h

The refrigeration effect, Q = (h₁ - h₄) = (1278.5 - 322.42) = 956.08 kJ/kg

Therefore;

\dot m = \dfrac{105}{956.08}  = 0.1098 \ kg/h

\dot m = 0.1098 kg/h = 0.1098/(60*60) = 3.05×10⁻⁵ kg/s

(4) The work done, W = (h₂ - h₁) = (1466.3 - 1278.5) = 187.8 kJ/kg

The rating power = Work done per second = W×\dot m

∴ The rating power = 187.8 × 3.05×10⁻⁵ = 0.00573 kW.

6 0
3 years ago
What dimensions are used when measuring the area of a building
scoundrel [369]

Answer:According to NEC 220.12,

“the floor area shall be calculated from outside dimensions of the buildings, dwelling unit, or other area involved.

The area should not include open porches, garages or unused or unfinished spaces not adaptable for future use”.

pa brainliest plss..thankss

Explanati

4 0
2 years ago
Read 2 more answers
What are cars manufactured with today that allows for quick stopping without the brakes locking up?
stiks02 [169]

Answer:

ABS

Explanation:

an Anti Lock Breaking system will not lock up your breaks even when used in a tight situation. This helps inexperienced drivers with no breaking technique break proprly.

5 0
4 years ago
Other questions:
  • 100 points Im so bored lol
    11·2 answers
  • Which of the following are benefits of the Python programming
    15·2 answers
  • Which option is a potential environmental benefit of adopting a new<br> technology?
    9·2 answers
  • Match each situation with the type of material (conductor or inductor) you would want to use in it. You need to connect a recent
    15·1 answer
  • Three possible career opportunities in embedded systems engineering
    11·1 answer
  • A person is planning a bungee jump from a 40 meter high bridge. Under the bridge is a river with crocodiles, so the person does
    7·1 answer
  • Fire andwater ______(do/does) not agree​
    8·1 answer
  • Determine the size of memory needed for CD recording of a piece of music, which lasts for 26 minutes, is done with a 20-bit Anal
    14·1 answer
  • Match the terms with the correct definitions.
    14·1 answer
  • Which of the following is a measurement at the nominal level?
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!