A gas furnace has an efficiency of 75% . How many BTU will it produce from 1000 BTU of natural gas​

Answers

Answer 1

Solution : Given data

Efficiency of gas furnace = 75%

Energy input = 1000 BTU (chemical energy )

We know that

Energy output = Efficiency × energy input

= 75% × 1000

= 75/100 ×1000

= 750 BTU (Thermal energy)


Related Questions

A user is having a difficult time printing certain types of documents to her laser printer. When she sends complex, mult-page, multi-color PDF files to the printer, it refuses to print. What is most likely the solution

Answers

Answer:

Add RAM to the printer

Explanation:

Adding RAM to the printers gives the following advantages:

printer prints the documents faster with reduced print time. printer prints complex multi page, multi-color documents especially PDF files.Print server sends the job according to the capacity of the printer so when the RAM is added the print server can send more jobs and the printing process becomes faster and printer will not refuse to print large documents. As a result printer can accept more print jobs.It is also beneficial when the documents or files to be printed are of high resolution or are heavy files.

How to Fix 0xc000007b

Answers

Answer:

Method 1. Restart your computer

The first thing to try is restarting Windows. It sounds too simple, but it sometimes yields results.

Method 2. Update .NET framework

In most cases it's Microsoft .NET framework causing the issues. You can download the latest version of .NET Framework from Microsoft.

When it's installed (or re-installed) reboot and try your app or game again

Method 3. Enable Administrator rights

Try running the game or app with admin rights. To do that, right-click on the shortcut or the actual executable for the game, select Properties and open the Compatibility tab. Tick the 'Run this program as an administrator' box, and click on OK.

Method 4. Reinstall the app or game

You can uninstall and re-installing the game or program you're trying to run - simple but sometimes the quickest and most effective way to get rid of the error.

Method 5. Update Windows

Update Windows. In many cases Windows will automatically update, but to check, head to Control Panel and search for 'Windows Update'.

In later versions, including Windows 10, you can open the new Settings app (just search the Start menu or click the cog icon which appears just above the Windows logo when you click it in the bottom-left of the screen.

In the Settings app, click on Update & Security then you should see a button to check for updates:

Explanation:

Method 6. Run ChkDsk

Run chkdsk by opening cmd (search for it or press Win+R).

In the window type "chkdsk c: /f /r". If it is the primary windows disk, it will ask you to schedule it for next boot. When you restart, it will do a check before get to the login screen. Partitions or other drives can also be checked this way.

Method 7. Reinstall DirectX

This can be the fix for games that won't load. The way to do this depends on your version of Windows and which version of DirectX you need. There are full instructions on Microsoft's website

Hope it's help you. :-)

print out the last even number from an array of integers, if there is no even number, then print out a sentence indicating so.

Answers

Answer:

See the sample algorithm below.

Explanation:

array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 22];

function last_even(arr) {

    for( i = arr.length-1; i >= 0; i--) {

         if (arr[i] % 2 == 0) {

              console.log(arr[i]);

              break;

         }

         else {

              console.log("There is no even number!");

         }

    }

}

last_even(array);

Consider the following code snippet: int score = 0; double price = 100; if (score > 0 && price < 200 && price / score > 10) { System.out.println("buy"); } Which of the following statements is true on the basis of this code snippet? The output is buy. The code snippet compiles and runs, but there is no output. The code snippet doesn't compile. The code snippet causes a divide-by-zero error.

Answers

Answer:

The code snippet compiles and runs, but there is no output.

Explanation:

The condition is

score > 0 && price < 200 && price / score > 10

score = 0

price = 100

[(0) > 0]  and [(100) < 200] and [100)/(0) > 10]

false and ........

Since the first condition is false, the program will not validate the other conditions because the conditional "and" is false when at least one of the conditions is false

Which one of the following statements referring to mobile Internet
access is FALSE?
3G stands for Third
Generation and 4G
for Fourth
Generation.
A USB modem or Internet
dongle is a device with
which you can connect to
a 3G/4G network to
access the Internet.
A 3G/4G network is a high
speed data network used by
suppliers of mobile
cellphones for broadband
services and Internet
connection.
A USB modem looks
like a flash disk and
operates without a
SIM card.​

Answers

Technically, the last statement is false. All cellular devices operate using a SIM card, they are essentially how a network service provider (I.e. AT&T, Verizon, et. al.) identify their devices and know what level of service to provide to the device when it sends/receives signals from their tower. Some USB wireless broadband devices do look like USB thumb drives, however, they will either contain an integrated SIM card or have a spot for a replaceable SIM card.

In the cases of int, byte, long, short (In Java) Can you give the heirachy in ascending order?​

Answers

Answer:

Byte Short Int Long

Explanation:

Byte's 8 bit, short's 16, int's 32, and long's 65.

What is the value of the var variable after the execution of the following snippet of code:
int var;
var = -1;
var = var - 1;
var = var - var;

Answers

Answer:

The value of var is 0

Explanation:

Given:

The code snippet above

Required

Find the value of var after program execution

This line declares var as type integer

int var;

This line initializes var to -1

var = -1;

This line subtracts 1 from var; var - 1 = -1 -1 = -2

var = var - 1;

At this stage the value of var is -2

This line subtracts the value of var from var; i.e. -2 - (-2) = -2 + 2 = 0

var = var - var;

At this stage, the value of var is 0

A 1000 elements array is used to store integers ascending order . The array is used to search binary search algorithm for the integers 5215 and 7282. How many elements of the array would be examined by the algorithm to locate A). the integers 5215 stored in element 499 B.) the integers in 7282 stored

in element 686.

Answers

Answer:

The overview of the given scenario is described in the explanation section below.

Explanation:

BTS (Binary search tree) tends to be a tree with several nodes noting that perhaps the left sub-tree, along with its leaf, tends to have a key which is less than or equal to anything like the parental node value. The do-tree, including its leaf, seems to have a value greater than those of the key from it's own parent node.Binary search algorithm finds a general vicinity in the collection of O(log n) time complexity items whereby n represents the number of elements in the array.

So the provided has never been the binary search trees of its algorithm.

A. 249

B. 342

Mention 2 precautionary
measures to be observed
when using ICT tools​

Answers

Answer:

ICT is the abbreviated form of Information and Communication. It included different technologies like mobile phones, computers, USBs etc.

Following are two precautionary measures which should be observed when using any kind of ICT:

Use of Antivirus: It can used to protect anything placed inside the technology especially from hacking and viruses which can create many issues.Backup Data: Creating a backup of the data stored in the device is important as it can be recalled when the device malfunctions. Backup of the data can be created through using USBs, CDs etc or through cloud storage

What are examples of some Exotic currencies?
A) EURUSD, AUDUSD
B) GBPCHE, EURUSD
C) AUDCHF, NZDJPY
D) MXN, ZAR, HKD

Answers

Answer:

D) MXN, ZAR, HKD

Explanation:

Exotic currencies refer to currency that are used in countries with emerging economies therefore they lack liquidity, are extremely volatile and have very low volumes. The exchange rate of exotic currencies are usually very high because of its lack of liquidity, therefore trading these currencies are expensive. Examples of exotic currencies are South African rand (ZAR), Mexican peso (MXN), Hong Kong dollar (HKD), Chinese yuan (CYN), Turkish lira (TRY) and so on.

If the primary voltage of a transformer is 230V and the primary coil is 80. Calculate the secondary voltage when the secondary turn is 160. *Ans 460 volts*

Answers

Answer:

[tex]V_{out} = 460[/tex]

Explanation:

From your question, you already posted the answer

However, I'll give the steps to get the answer

Given

[tex]Primary\ Voltage = 230V[/tex]

[tex]Primary\ Coil = 80[/tex]

[tex]Secondary\ Coil = 160[/tex]

Required

Secondary Voltage

The relationship between the primary voltage, secondary voltage, turns of primary coil and secondary coil is as follows;

[tex]\frac{V_{out}}{V_{in}} = \frac{N_{s}}{N_{p}}[/tex]

Where

[tex]V_{in} = Primary\ Voltage = 230V[/tex]

[tex]V_{out} = Secondary\ Voltage = ??[/tex]

[tex]N_{p} = Primary\ Coil = 80[/tex]

[tex]N_{s} = Secondary\ Coil = 160[/tex]

Substitute these values in the formula above;

[tex]\frac{V_{out}}{V_{in}} = \frac{N_{s}}{N_{p}}[/tex]

becomes

[tex]\frac{V_{out}}{230} = \frac{160}{80}[/tex]

[tex]\frac{V_{out}}{230} = 2[/tex]

Multiply both sides by 230

[tex]230 * \frac{V_{out}}{230} = 2 * 230[/tex]

[tex]V_{out} = 2 * 230[/tex]

[tex]V_{out} = 460[/tex]

Hence, the secondary voltage is 460 Volts

Answer:

460 volts

Explanation: hope this helps :)

_________ is the start up sequence a computer conducts.

Answers

Answer:

Booting

Explanation:

Booting is the start up sequence a computer conducts when it is being turned on. The booting is done by the operating system. The booting process is usually started when a hardware on the computer is pressed or by a software command. For a windows computer, the BIOS is used to start the booting sequence. These boot sequence is called boot order or BIOS boot sequence.

How has the manufacturing process of cell phones evolved over time? What factors have influenced these changes? *

Answers

Answer:

Cellphones have evolved rapidly since handheld mobile phones first appeared in the 1970s. ... Generally, phones have evolved to be more compact, to have longer battery life and to allow addition of features beyond making calls, like running apps and sending text messages.

Explanation:

What does DOS stand for?

Answers

Answer:

Disk Operating System

Explanation:

"DOS is a platform-independent acronym for Disk Operating System which later became a common shorthand for disk-based operating systems on IBM PC compatibles."

Who is known as the "father of computing"?
Mention his contributions?​

Answers

Answer: Charles Babbage

Explanation:

He was named father of computing because of the invention of the Analytical Engine in 1837. This machine contained an integrated memory, a ALU (arithmetic logic unit) and a basic flow control. This machine gave birth to the notion of computer. Unfortunately, the machine wasn't built when Babbage was alive due to some funding issues.

Answer:

Charles Babbage is known as the father of computer...

What visual practice provides more information about logical relations when creating an ERD

Answers

Answer:

Logical Data Model

Explanation:

An Entity Relationship Diagram (ERD) is a model or a diagram designed to reveal the relationship between various entities such as people, places, objects, and so on within an institution. Entity relationship diagram is also known as Entity relationship model. This model is used to design relational database by various sectors such as education, engineering, business, etc.

ERD is designed using conceptual data model, logical data model, and physical data model.

The visual practice or model that gives more insight into the logical relations among the entity is the logical data model.

The logical data model is used to illustrate more detailed operational and relational data among the entities. It is more detailed than the conceptual data.

So, the correct answer is logical data model.

What is shoulder browsing? A. accessing someone else’s computer without permission B. deceptively observing people type in personal information C. distributing illegal software D. using internet search engines for information

Answers

B. Deceptively observing people type in personal information.

Essentially, think of it as someone standing behind you, looking over your shoulder, watching everything you do on a computer.

Answer:

b

Explanation:

i want pizzzzzzzaaaaaaaaaaa

Answers

sameeeeeeeeeeeeeeeeeeeee

A user who has special security and access to a system, such as the right to assign passwords, is called a ____.​ a. ​ technical user b. ​ privileged user c. ​ database administrator d. ​ supervisor user

Answers

Answer:

C

Explanation:

This type of user would be called a privileged user.

can any one tell me the difference between the things showed in the circle i will mark brainiest to the first one

Answers

Answer:

The different brainly websites are different because they are associated with different countries. Each country has their own network and internet rules, and Brainly has to comply with each countries rules. Each country gets their own Brainly site. So, Brainly.com is for the US, Brainly.pl is for Poland, etc.

Explanation:

A port allows you to plug hardware into your CPU. Select one: A. False B. True

Answers

Answer: The answer is true.

Draw a truth table & logic circuit corresponding to the following logic statement
X = 1 if ( ( M is 1 OR N is 1 ) AND ( M is 1 AND N is 1 ) ) OR ( O is NOT 1 )

Answers

Answer:

The truth table, as well as the logic circuit of the given statement, is attached below.

Explanation:

Logical gates seem to be the essential building blocks of just about any computerized signal. It becomes a digital device with one or even more inputs and therefore only single output. The arrangement among outputs and inputs would be focused on this kind of logic. Upon that basis, logic gates were already called as AND, NOT, OR gate, etc.

Technician A says backup sensors use LEDs to detect objects. Technician B says that a backup sensor won't work correctly if the paint is thicker than 0.002 inch. Which technician is correct

Answers

Answer:

Technician B

Explanation:

As in the question,  it is mentioned that according to the Technician A the backup sensors used LED for tracking the objects and as per the technician B the backup sensor does not work correctly unless the paint is thicker than 0.002 inch

Therefore according to the above explanation, the technician B is correct as it provides the valid reason

You require your users to log on using a user name, password, and rolling 6-digit code sent to a keyfob device. They are then allowed computer, network, and email access. What type of authentication have you implemented

Answers

Answer:

Multi - Factor Authentication

Single Sign On

An array of int named a that contains exactly five elements has already been declared and initialized. In addition, an int variable j has also been declared and initialized to a value somewhere between 0 and 3. Write a single statement that assigns a new

Answers

Answer:

a[j] = 2 * a[j+1];

Explanation:

The complete statement is to Write a single statement that assigns a new value to the element of the array indexed by j. This new value should be equal to twice the value stored in the next element of the array.

So lets say a is an array of type int which is already declared and initialized.

int a[] = {};

declare an int variable j as int j;

The element of array a indexed by j can be represented as a[j] This means the j-th index of array a

The value to be assigned to a[j] is 2 * a[j+1]; with an assignment operator "= " between a[j] and 2 * a[j+1]; in order to assign 2 * a[j+1]; to a[j]

According to the requirement this new value should be twice the value stored in next element of array. The next element of array is represented by a[j+1] which means j+1 index of array a. This means the element at j+1 index that comes after the element at j-th index a[j].

Value should be twice the value stored in next element of array means multiply the 2 with the next element of array i.e. a[j+1]

Now assign this new value  2 * a[j+1];  to a[j].

What is the features of Mark 1​

Answers

Answer:

Okay:

Mark I was enourmous in size, measuring 8 feet high, 51 feet long and three feet deep. It weighed 5 tons, used 530 miles of wire and 730,000 separate parts. The operation of these parts was powered and synchronized by a long horizontal rotating shaft. A four horsepower engine drives the mechanical parts.

Harvard Mark I, an early protocomputer, built during World War II in the United States. While Vannevar Bush was working on analog computing at the Massachusetts Institute of Technology (MIT), across town Harvard University professor Howard Aiken was working with digital devices for calculation. He had begun to realize in hardware something like the 19th-century English inventor Charles Babbage’s Analytical Engine, which he had read about. Starting in 1937, Aiken laid out detailed plans for a series of four calculating machines of increasing sophistication, based on different technologies, from the largely mechanical Mark I to the electronic Mark IV.

Explanation:

hope it is helpful to you

What is digital divide

Answers

Explanation:

A digital divide is any uneven distribution in the access to, use of, or impact of information and communications technologies between any number of distinct groups, which can be defined based on social, geographical, or geopolitical criteria, or otherwise.

Why would you want to hyperlink objects into your own Google Slides presentation? (Select all that apply.) Select All Correct Responses For extending the learning experience for students. To make sure the presentation is linear So students can use the Slides for review and can go to additional resources outside of the presentation. To make the presentation more graphically appealing

Answers

The correct answers are A.  For extending the learning experience for students. C. So students can use the Slides for review and can go to additional resources outside of the presentation. D. To make the presentation more graphically appealing

Explanation:

The use of hyperlink objects in presentations means objects such as images, texts, or icons are associated with links or websites students can easily access by clicking on the specific image or element. This might be used in educational contexts to allow students to have a complete learning experience by providing alternative and external sources outside the presentation. For example, if the topic is space hyperlinks to NASA website can be included. This means, hyperlink objects extend learning experiences and provide additional resources (Option A and D).

Besides this, this resource can make a presentation more appealing as links to images, videos, and other visually interesting resources can be included (Option D). However, it also breaks the linearity of the presentation as students will need to move to other websites as they go through the presentation.

What are the useful techniques in program design?

Answers

A broad question, with many answers.

When designing a program you can use:

Setting up requirements, possibly in a use-case form ("as a ... I want to ... so that ...")Mapping the verbs and nouns in your requirements to classes and operations Drawing UML diagrams of the subject matterCreating flow charts and sequence diagrams Identify component boundaries with thin interfaces to keep complexity organized and local

which topology enables only one person, at one time, to send data to others on the network?

Answers

Question:

Which topology enables only one person, at one time, to send data to others on the network?

Answer:

Ring topology

Other Questions
The gravitational potential has a zero value gravitational field in the same place is? Maximum or null indeterminate Help pleaseThe scale on the map is given as 3 cm = 4 km. The distance between the airport andthe railway station is 24 cm. Find the actual distance between those places. What led the United States to get militarily involved in Vietnam? A. domino theory B. mutually assured destruction C. Marshall Plan D. NATO alliance Of the 35 jewelers in her town, Naomi polled the 5 biggest to learn about the latest jewelry trends. Her sample is . The sample is of the jewelers in Naomis town. In each succeeding payment on an installment note:_______A. The amount of interest expense increases. B. The amount of interest expense decreases. C. The amount of interest expense is unchanged. D. The amounts paid for both interest and principal increase proportionately. divide the equation 525.4 0.035 A ranger needs to capture a monkey hanging on a tree branch. The ranger aims his dart gun directly at the monkey and fires the tranquilizer dart. However, the monkey lets go of the branch at exactly the same time as the ranger fires the dart. Will the monkey get hit or will it avoid the dart? An electron moves in the plane of this screen toward the top of the screen. A magnetic field is also in the plane of the screen and directed toward the right. What is the direction of the magnetic force on the electron? After reading each clue, fill in the blanks with a vocab word. 1. El hijo de mi hermano * 2. La esposa de mi padre, pero (but) no soy su hijo * 3. El hijo de mi hija * 4. El esposo de hi hermana * 5. Un hombre que estudi (studied) computacin * 6. La madre de mi padre * 7. Un padre, una madre, y los hijos * 8. El hijo de mi madrastra, pero no de mi padre * 9. Un doctor * 10. Tus nietos son los ____ de tus hijos * 11. Las personas en general son_____ * 12. La hija de mi esposa, pero no es mi hija * 13. Una mujer que escribe (writes) para el New York Times * 14. Unos compaeros inseparables * 15. Unos chicos (starts with an "m") * 16. El esposo de mi madre es el _____ de mis abuelos * 17. El hijo de mi ta * 18. Abuelos, primos, tos, etc * 19. Pablo Picasso y Diego Velzquez (both people) * 20. El hermano de mi madre * What is the solution to the equation? StartFraction r Over 7.1 EndFraction = 4.2 r = 34 POINTS see attached Which set represents the range of the function shown? {(1, 5), (2, 8), (5, 3), (13, 4)} "Consider the following code snippet: int number = 0; Scanner in = new Scanner(System.in); System.out.print(""Enter a number: ""); number = in.nextInt(); if (number > 30) { . . . } else if (number > 20) { . . .. } else if (number > 10) { . . . } else { . . . } Assuming that the user input is 40, which block of statements is executed? a. if (number > 30) { . . .} b. else if (number > 20) { . . .} c. else if (number > 10) { . . .} d. else { . . .} What is the best estimate for the value of the expression?348163149.-3-21O7 Could these triangles be congruent?BEO yes,O yes, if AB - DEs, if BC = 7O yes, if AB EFO no, because the hypotenuses must have differentlengthsA7D7F If the same amount of heat is added to 25.0 g of each of the metals, which are all at the same initial temperature, which metal will have the highest final temperature Youre trying to save to buy a new $245,000 Ferrari. You have $50,000 today that can be invested at your bank. The bank pays 4.3 percent annual interest on its accounts. How long will it be before you have enough to buy the car? find the volume of this prism tu siempre llevas zapatos negros. esos de ah son ________ zapatos verdad?A. tusB. susC. tuD. su hydrogen bonding is a strong attractive force. T OR F