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
leonid [27]
2 years ago
8

Which product is superior for sound control and has a better thermal property, Standard batt Insulation, or HP Fiberglass Insula

tion? Explain why?
Engineering
1 answer:
hjlf2 years ago
5 0

HP Fiberglass Insulation is superior for sound control and has a better thermal property.

<h3>What is Fiberglass Insulation is better?</h3>

Fiberglass is a better insulator than wood. It is available in various widths, with the widest being 3/4 inch and having an R-value of 0.94. However, the R-value of fiberglass, the thinnest of which is 3/4 inch, is 3. Fiberglass is a superior insulator as a result.

Thus, option B is correct.

For more details about Fiberglass Insulation, click here:

brainly.com/question/14040359

#SPJ1

You might be interested in
What would the Select lines need to be to send data for the fifth bit in an 8-bit system (S0 being the MSB and S2 being the LSB)
Maurinko [17]

Answer:

A. S0 = 1, S1 = 0, S2 = 0

lines need to send data for the fifth bit in an 8 bit system

5 0
3 years ago
Nitrogen at an initial state of 300 K, 150 kPa and 0.2 m3 is compressed slowly in an isothermal process to a final pressure of 8
s344n2d4d5 [400]

Answer:

Work = - 4175.23 J

Heat Transfer = -4175.23 J

Explanation:

The work done in an isothermal process, is given by the following formula:

W = RT ln (P1/P2)

where,

W = Work done

R = Universal Gas Constant = 8.314 J/mol.k

T = Constant Temperature = 300 K

P1 = initial pressure = 150 KPa

P2 = final pressure = 800 KPa

using these values, we get:

W = (8.314 J/mol.K)(300 k) ln (150/800)

<u>W = - 4175.23 J</u>

Here, negative sign shows that work is done on the system.

In isothermal process, from 1st law of thermodynamics:

Heat Transfer = Q = W     (Since change in internal energy is zero for isothermal processes)

<u>W = - 4175.23 J</u>

Here, negative sign shows that heat is transferred from the system to surrounding.

6 0
3 years ago
Read 2 more answers
A controller on an electronic arcade game consists of a variable resistor connected across the plates of a 0.227 μF capacitor. T
anyanavicka [17]

Answer:

R min = 28.173 ohm

R max = 1.55 × 10^{4}  ohm

Explanation:

given data

capacitor = 0.227 μF

charged to 5.03 V

potential difference across the plates =  0.833 V

handled effectively = 11.5 μs to 6.33 ms

solution

we know that resistance range of the resistor is express as

V(t) = V_o \times e^{t\RC}    ...........1

so R will be

R = \frac{t}{C\times ln(\frac{V_o}{V})}    ....................2

put here value

so for t min 11.5 μs

R = \frac{11.5}{0.227\times ln(\frac{5.03}{0.833})}

R min = 28.173 ohm

and

for t max 6.33 ms

R max = \frac{6.33}{11.5} \times 28.173  

R max = 1.55 × 10^{4}  ohm

4 0
3 years ago
Assume a program contains a void function named calcNewPrice(). The function receives two double variables named oldPrice and ne
liberstina [14]

Answer:

(C) calcNewPrice(oldPrice, &newPrice);

Explanation:

It's a void function so there's no return value, however they wanted to change a value. The only way to do that is to pass in an address of the variable into the function, and deference it and store the new data there.

4 0
3 years ago
g For this project you are required to perform Matrix operations (Addition, Subtraction and Multiplication). For each of the ope
Kruka [31]

Answer:

C++ code is explained below

Explanation:

#include<iostream>

using namespace std;

//Function Declarations

void add();

void sub();

void mul();

//Main Code Displays Menu And Take User Input

int main()

{

  int choice;

  cout << "\nMenu";

  cout << "\nChoice 1:addition";

  cout << "\nChoice 2:subtraction";

  cout << "\nChoice 3:multiplication";

  cout << "\nChoice 0:exit";

 

  cout << "\n\nEnter your choice: ";

 

  cin >> choice;

 

  cout << "\n";

 

  switch(choice)

  {

      case 1: add();

              break;

             

      case 2: sub();

              break;

             

      case 3: mul();

              break;

     

      case 0: cout << "Exited";

              exit(1);

     

      default: cout << "Invalid";      

  }

  main();  

}

//Addition Of Matrix

void add()

{

  int rows1,cols1,i,j,rows2,cols2;

 

  cout << "\nmatrix1 # of rows: ";

  cin >> rows1;

 

  cout << "\nmatrix1 # of columns: ";

  cin >> cols1;

 

   int m1[rows1][cols1];

 

  //Taking First Matrix

  for(i=0;i<rows1;i++)

      for(j=0;j<cols1;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m1[i][j];

          cout << "\n";

      }

  //Printing 1st Matrix

  for(i=0;i<rows1;i++)

  {

      for(j=0;j<cols1;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

     

  cout << "\nmatrix2 # of rows: ";

  cin >> rows2;

 

  cout << "\nmatrix2 # of columns: ";

  cin >> cols2;

 

  int m2[rows2][cols2];

  //Taking Second Matrix

  for(i=0;i<rows2;i++)

      for(j=0;j<cols2;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m2[i][j];

          cout << "\n";

      }

  //Displaying second Matrix

  cout << "\n";

  for(i=0;i<rows2;i++)

  {

      for(j=0;j<cols2;j++)

          cout << m2[i][j] << " ";

      cout << "\n";

  }

  //Displaying Sum of m1 & m2

  if(rows1 == rows2 && cols1 == cols2)

  {

      cout << "\n";

      for(i=0;i<rows1;i++)

      {

          for(j=0;j<cols1;j++)

              cout << m1[i][j]+m2[i][j] << " ";

          cout << "\n";  

      }

  }

  else

      cout << "operation is not supported";

     

  main();

 

}

void sub()

{

  int rows1,cols1,i,j,k,rows2,cols2;

  cout << "\nmatrix1 # of rows: ";

  cin >> rows1;

 

  cout << "\nmatrix1 # of columns: ";

  cin >> cols1;

 

   int m1[rows1][cols1];

 

  for(i=0;i<rows1;i++)

      for(j=0;j<cols1;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m1[i][j];

          cout << "\n";

      }

 

  for(i=0;i<rows1;i++)

  {

      for(j=0;j<cols1;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

     

  cout << "\nmatrix2 # of rows: ";

  cin >> rows2;

 

  cout << "\nmatrix2 # of columns: ";

  cin >> cols2;

 

  int m2[rows2][cols2];

 

  for(i=0;i<rows2;i++)

      for(j=0;j<cols2;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m2[i][j];

          cout << "\n";

      }

 

  for(i=0;i<rows2;i++)

  {

      for(j=0;j<cols2;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

  cout << "\n";

  //Displaying Subtraction of m1 & m2

  if(rows1 == rows2 && cols1 == cols2)

  {

      for(i=0;i<rows1;i++)

      {

          for(j=0;j<cols1;j++)

              cout << m1[i][j]-m2[i][j] << " ";

          cout << "\n";  

      }

  }

  else

      cout << "operation is not supported";

     

  main();

 

}

void mul()

{

  int rows1,cols1,i,j,k,rows2,cols2,mul[10][10];

  cout << "\nmatrix1 # of rows: ";

  cin >> rows1;

 

  cout << "\nmatrix1 # of columns: ";

  cin >> cols1;

 

   int m1[rows1][cols1];

 

  for(i=0;i<rows1;i++)

      for(j=0;j<cols1;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m1[i][j];

          cout << "\n";

      }

  cout << "\n";

  for(i=0;i<rows1;i++)

  {

      for(j=0;j<cols1;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

     

  cout << "\nmatrix2 # of rows: ";

  cin >> rows2;

 

  cout << "\nmatrix2 # of columns: ";

  cin >> cols2;

 

  int m2[rows2][cols2];

 

  for(i=0;i<rows2;i++)

      for(j=0;j<cols2;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m2[i][j];

          cout << "\n";

      }

  cout << "\n";

  //Displaying Matrix 2

  for(i=0;i<rows2;i++)

  {

      for(j=0;j<cols2;j++)

          cout << m2[i][j] << " ";

      cout << "\n";

  }

     

  if(cols1!=rows2)

      cout << "operation is not supported";

  else

  {

      //Initializing results as 0

      for(i = 0; i < rows1; ++i)

  for(j = 0; j < cols2; ++j)

  mul[i][j]=0;

// Multiplying matrix m1 and m2 and storing in array mul.

  for(i = 0; i < rows1; i++)

  for(j = 0; j < cols2; j++)

  for(k = 0; k < cols1; k++)

  mul[i][j] += m1[i][k] * m2[k][j];

// Displaying the result.

  cout << "\n";

  for(i = 0; i < rows1; ++i)

      for(j = 0; j < cols2; ++j)

      {

      cout << " " << mul[i][j];

      if(j == cols2-1)

      cout << endl;

      }

      }  

  main();

 }

5 0
3 years ago
Other questions:
  • The displacement volume of an internal combustion engine is 2.2 liters. The processes within each cylinder of the engine are mod
    13·1 answer
  • Webster is giving a speech on the benefits of moving toward the use of windmill energy instead of having to rely on fossil fuels
    7·1 answer
  • Hi, any kind of help on these questions will be appreciated.
    10·1 answer
  • An air standard cycle with constant specific heats is executed in a closed pistoncylinder system and is composed of the followin
    10·1 answer
  • A wastewater treatment plant has two primary clarifiers, each 20m in diameter with a 2-m side-water depth. the effluent weirs ar
    8·1 answer
  • Which method of freezing preserves the quality and taste of food?
    8·1 answer
  • i need help with this asap plz help me i rlly need help plzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
    13·2 answers
  • Es un principio de la distribución en plantas.
    15·1 answer
  • Is Tesla French, American, German, or Russian?
    10·2 answers
  • What Forces are involved with roller coasters?
    12·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!