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

How much heat (Btu) is prod uced by a 150-W light bulb that is on for 20-hours?

Engineering
1 answer:
erica [24]3 years ago
8 0

Answer:

heat produced by 150 watt bulb is 510 Btu

Explanation:

Given data:

Power of bulb is 150 W

Duration for light is 20 hr

We know that 1 Watt = 3.4 Btu

hence using above conversion value we can calculate the power in Btu unit

so for 150 W\ bulb  =  150\times 3.4 = 510 Btu

therefore, 150 W bulb consist of 510 Btu power for 20 hr

output heat by 150 watt bulb is 510 Btu

You might be interested in
A copper-nickel alloy of composition 60 wt% Ni-40 wt% Cu is slowly heated from a temperature of 1250°C (2280 °F). (a) At what te
makkiz [27]

Answer:

a. The very first liquid process, when heated from 1250 degree Celsius, is expected to form at the temperature by which the vertical line crosses the phase boundary (a -(a + L)) which is about <em>1310 degree Celsius. </em>

b. The structure of that first liquid is identified by the intersection with ((a+ L)-L) phase boundary; <em>47wt %of Ni</em> is of a tie line formed across the (a+ L) phase area <em>at 1310 degrees.</em>

c. To find the alloy's full melting, it is determined that the intersection of the same vertical line at 60 wt percent Ni with (a -(a+L)) phase boundary is around <em>1350 degrees.</em>

c. The structure of the last remaining solid before full melting correlates to the intersection with the phase boundary (a -(a + L), of the tie line built at 1350 degrees across the (a + L) phase area, <em>being 72wt % of Ni.</em>

4 0
3 years ago
A work element in a manual assembly task consists of the following MTM-1 elements: (1) R16C, (2) G4A, (3) M10B5, (4) RL1, (5) R1
ella [17]

Answer:

a)

1) R16C ; Tn = 17 TMU

2) G4A ; Tn = 7.3 TMU

3) M10B5 ; Tn = 15.1 TMU

4) RL1 ; Tn = 2 TMU

5) R14B ; Tn = 14.4 TMU

6) G1B ; Tn = 3.5 TMU

7) M8C3 ; Tn = 14.7 TMU

8) P1NSE ; Tn = 10.4 TMU

9) RL1 ; Tn = 2 TMU

b) 3.1 secs

Explanation:

a) Determine the normal times in TMUs for these motion elements

1) R16C ; Tn = 17 TMU

2) G4A ; Tn = 7.3 TMU

3) M10B5 ; Tn = 15.1 TMU

4) RL1 ; Tn = 2 TMU

5) R14B ; Tn = 14.4 TMU

6) G1B ; Tn = 3.5 TMU

7) M8C3 ; Tn = 14.7 TMU

8) P1NSE ; Tn = 10.4 TMU

9) RL1 ; Tn = 2 TMU

b ) Determine the total time for this work element in seconds

first we have to determine the total TMU = ∑ TMU = 86.4 TMU

note ; 1 TMU = 0.036 seconds

hence the total time for the work in seconds = 86.4 * 0.036 = 3.1 seconds

7 0
2 years ago
Asolid rectangular rodhas a length of 90mm, made of steel material (E =207,000 MPa, Syield= 300 MPa), the cross section of the r
erastova [34]

Answer:

13.6mm

Explanation:

We consider diameter to be a chord that runs through the center point of the circle. It is considered as the longest possible chord of any circle. The center of a circle is the midpoint of its diameter. That is, it divides it into two equal parts, each of which is a radius of the circle. The radius is half the diameter.

See attachment for the step by step solution of the problem

3 0
3 years ago
What does Clay say will happen if the system is rejected?
juin [17]

Answer:

the nation will suffer terrible consequences

Explanation:

I did that and got it right

6 0
3 years ago
Read 2 more answers
The second programming project involves writing a program that accepts an arithmetic expression of unsigned integers in postfix
Tpy6a [65]

Answer:

Explanation:

Note: In case of any queries, just comment in box I would be very happy to assist all your queries

SourceCode:

// MyGUI.java:

// Import packages

import java.awt.FlowLayout;

import java.awt.GridLayout;

import java.awt.event.ActionEvent;

import java.awt.event.ActionListener;

import java.io.BufferedReader;

import java.io.IOException;

import java.io.InputStreamReader;

import java.util.EmptyStackException;

import java.util.Stack;

import javax.swing.JButton;

import javax.swing.JFrame;

import javax.swing.JLabel;

import javax.swing.JOptionPane;

import javax.swing.JPanel;

import javax.swing.JTextField;

import javax.swing.SwingConstants;

// Declaare and define the class MyGUI

abstract class MyGUI extends JFrame implements ActionListener {

JTextField userInput;

JLabel inputDescLbl, resultLbl;

JPanel inputPanel, resultPanel;

JButton evlBtn;

Stack<Object> stk;

// Define the constructor MyGUI

MyGUI() {

super("Tree Address Generator");

inputPanel = new JPanel(new FlowLayout());

resultPanel = new JPanel(new FlowLayout());

setLayout(new GridLayout(2, 1));

userInput = new JTextField(20);

inputDescLbl = new JLabel("Enter Postfix Expression:");

evlBtn = new JButton("Construct Tree");

evlBtn.addActionListener(this);

resultLbl = new JLabel("Infix Expression:", SwingConstants.LEFT);

add(inputPanel);

add(resultPanel);

inputPanel.add(inputDescLbl);

inputPanel.add(userInput);

inputPanel.add(evlBtn);

resultPanel.add(resultLbl);

stk = new Stack<Object>();

}

}

//Stack.java:

// Declare and define the class Stack

class Stack {

private int[] a;

private int top, m;

public Stack(int max) {

m = max;

a = new int[m];

top = -1; }

public void push(int key) {

a[++top] = key; }

public int pop() {

return (a[top--]); }

}

// Declare and define the class Evaluation()

class Evaluation {

public int calculate(String s) {

int n, r = 0;

n = s.length();

Stack a = new Stack(n);

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

char ch = s.charAt(i);

if (ch >= '0' && ch <= '9')

a.push((int) (ch - '0'));

else if (ch == ' ')

continue;

else {

int x = a.pop();

int y = a.pop();

switch (ch) {

case '+':

r = x + y;

break;

case '-':

r = y - x;

break;

case '*':

r = x * y;

break;

case '/':

r = y / x;

break;

default:

r = 0;

}

a.push(r);

}

}

r = a.pop();

return (r);

}

}

// PostfixToInfix.java:

// Import packages

import java.util.Scanner;

import java.util.Stack;

// Declare and define the class PostfixToInfix

class PostfixToInfix {

// Determine whether the character entered is an operator or not

private boolean isOperator(char c) {

if (c == '+' || c == '-' || c == '*' || c == '/' || c == '^')

return true;

return false;

}

// Declare and define the convert()

public String convert(String postfix) {

Stack<String> s = new Stack<>();

for (int i = 0; i < postfix.length(); i++) {

char c = postfix.charAt(i);

if (isOperator(c)) {

String b = s.pop();

String a = s.pop();

s.push("(" + a + c + b + ")");

} else

s.push("" + c);

}

return s.pop();

}

// Program starts from main()

public static void main(String[] args) {

PostfixToInfix obj = new PostfixToInfix();

Scanner sc = new Scanner(System.in);

// Prompt the user to enter the postfix expression

System.out.print("Postfix : ");

String postfix = sc.next();

// Display the expression in infix expression

System.out.println("Infix : " + obj.convert(postfix));

}

}

Output:

e Console X terminated PostfixTolnfix [Java Application] C:\Program Files\Java\jrel.8.0_121\bin\javaw.exe Postfix : ABD++C-D/ .

3 0
3 years ago
Other questions:
  • Biologists use a sequence of letters A, C, T, and G to model a genome. A gene isa substring of a genome that starts after a trip
    5·1 answer
  • Which of the following is not true about Machine Learning?Machine Learning was inspired by the learning process of human beings.
    11·1 answer
  • If 20 kg of iron, initially at 12 °C, is added to 30 kg of water, initially at 90 °C, what would be the final temperature of the
    6·1 answer
  • an adiabatic compressor receives 1.5 meter cube per second of air at 30 degrees celsius and 101 kpa. The discharge pressure is 5
    11·1 answer
  • The spring has a stiffness k = 200 N&gt;m and an unstretched length of 0.5 m. If it is attached to the 3-kg smooth collar and th
    12·1 answer
  • Who is responsible for conducting a hazard assessment?
    8·1 answer
  • An engineering firm just lost one of their larger customers. The firm president says that the solution to this problem is to fir
    6·1 answer
  • I need help asapppp!!!!!
    7·1 answer
  • Christopher has designed a fluid power system that repeatedly gets clogs. Which of the following objects should he choose to add
    13·1 answer
  • True or false? if i were to hook up an ac voltage source to a resistor, the voltage drop across the resistor would be in phase w
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!