Enumerate at least 5 furnitures you would add to your house which would be practical and energy-saving.

Answers

Answer 1

Answer:1. Advanced house framing

Advanced house framing, also known as optimum value engineering, is a specific framing technique wherein a house is constructed using less lumber and waste. Advanced house framing saves energy by using less wood and more insulation. According to the U.S. Department of Energy, using advanced framing can lower material costs by $500 to $1,000 for a 1,200- to 2,400-square-foot house. It can also cut labor costs by 3-5% and annual heating and cooling costs by up to 5%.

2. Cool roofs

Cool roofs are designed to reflect sunlight and lower roofing temperatures. Cool roofs are made from a type of reflective material within roofing materials such as tiles, shingles, paint or other substances. This energy-saving technique is ideal for houses in warm climates where air conditioning costs are high all year around.

3. The right exterior doors

Choosing the right exterior door for a home should be a carefully thought-out decision. When you choose a door, you should first consider the doors' energy-performance ratings. This score lets you know how well each door does in preserving the energy in your home by trapping heat or cool air inside. Using this score to help you find the ideal door will also help you narrow down your selection and find an exterior door that best matches your taste, needs and wants.

4. Skylights

Skylights are often a feature that enters homeowners' mind when they think of improving their homes' energy efficiency. Skylights have many benefits, which makes them ideal for any home. Skylights improve houses' heating, lighting and ventilation. It is important to note that if you are considering placing skylights in your home, the U.S. Department of Energy recommends they be no larger than 5% of the floor area in rooms with several windows, and 15% of the floor area in rooms with minimal windows.

5. Window treatments

Boring curtains do more than drive your spouse crazy; they can actually help reduce energy costs in your home. By being specific in your choice of window treatments, you can reduce heat loss or keep cool air inside your home. Many factors determine window treatments' energy efficiency. For example, the type of material and color of the treatment are significant, along with how it opens and closes.

Explanation:


Related Questions

which is the following career pathway for human services

Answers

The career pathway for human services includes:

Consumer servicesCounseling and mental health services, etc.

What are career pathways?

This is known to be the likely career choices that one can make based on a specific field.

Note that  the career pathways within the human services cluster are:

Consumer services.Counseling and mental health services.Early childhood development and services.Family and community services.Personal care services.

Learn more about  career pathway from

https://brainly.com/question/9719007

#SPJ1

Which type of computer application is apple keynote? a. word processor b. spreadsheet c. presentation d. database e. multimedia

Answers

The type of computer application which apple keynote is, is: c. presentation.

What is a presentation application?

A presentation application can be defined as a type of computer application which is designed and developed to avail its end users an ability to create various slides that comprises both textual and multimedia information, which are typically used during a presentation.

This ultimately implies that, apple keynote is an example of a presentation application which is used on computers.

Read more on presentation application here: https://brainly.com/question/26404012

#SPJ4

What is the newest code language?​

Answers

Answer:

Python 3

Explanation:

The language's latest iteration, Python 3.9, was released on October 5, 2020. It includes even more new features such as relaxed grammar restrictions, flexible function and variable annotations, and new string methods to remove prefixes and suffixes.

New Programming Language 1: Python 3

The language's latest iteration, Python 3.9, was released on October 5, 2020. It includes even more new features such as relaxed grammar restrictions, flexible function and variable annotations, and new string methods to remove prefixes and suffixes.

1. What is a blog?Explain its use.

2. List any 5 websites that provide blog service.

3. Difference between web page and website.

4. What do you mean by publishing a post?​

Answers

Answer:

A blog is a type of website, usually maintained by an individual with regular entries of commentary, descriptions of events, or other material such as graphics or video. Entries are commonly displayed in reverse-chronological order.WordPress.com – Best for Free Blogs. ...WordPress.org – Best for Self-Hosted Blogs. ...Web.com – Best for Small Business Owners. ...Wix.com – Best for Small Websites. ...Joomla.com. ...The webpage is a single document on the web using a unique URL, while a website is a collection of multiple webpages in which information on a related topic or another subject is linked together under the same domain address. Learn more about what is the difference between a website and webpage from the table below.to submit (content) online, as to a message board or blog: I published a comment on her blog post with examples from my own life. They publish a new webcomic once a month. to announce formally or officially; proclaim; promulgate.

Help me with this question asap please

Answers

Answer:

Parameter

Explanation:

The function's scope is truly local. The () brackets at the end execute the function -- the enclosing brackets are to disambiguate what is being executed.

Describe the ideal environment for a computer to work properly

Answers

The ideal environment for a computer to work properly is a cool place to avoid heating of the computer, good air circulation in the place so that the computer's fan can get cool air.

What is a computer?

Computer is an electronic device, that perform various of tasks easily that take humans much time.

It is a machine on which we can work and contains a screen and operators, like keyboard and mouse.

Thus, the ideal environment for a computer to work properly is a cool place to avoid heating of the computer, good air circulation in the place so that the computer's fan can get cool air.

Learn more about computer

https://brainly.com/question/21080395

#SPJ1

Question #1
dropdown
choose the term described.

a variable in a program that represents a class and is created by an assignment statement

function created within a class
definition

constructor
method
instance

Answers

Answer:

instance - a variable in a program that represents a class and is created by an assignment statement

method - function created within a class definition

Explanation:

A class is made up of the members fields and methods.

Fields are variables in the class and methods are functions in the class.

An instance is a copy of the class also called an object

Python

write a program that reads a list of integers, and outputs whether the list contains all even numbers, odd numbers, or neither. the input begins with an integer indicating the number of integers that follow. if the input is: 5 2 4 6 8 10 then the output is: all even if the input is: 5 1 3 5 7 9 then the output is all odd if the input is: 5 1 2 3 4 5 then the output is: not even or odd your program must define and call the following three functions. def getuservalues(). getuservalues reads in, creates, and returns the list of integers. def islisteven(mylist). islisteven returns true if all integers in the list are even and false otherwise. def islistodd(mylist). islistodd returns true if all integers in the list are odd and false otherwise.

Answers

def is_list_even(my_list):

   for i in my_list:

       if(i%2 != 0):

           return False

   

   return True

   

   

def is_list_odd(my_list):

   for i in my_list:

       if(i%2 == 0):

           return False

   

   return True

   

def main():

   n = int(input())

   lst = []

   

   for i in range(n):

       lst.append(int(input()))

   

   if(is_list_even(lst)):

       print('all even')

   

   elif(is_list_odd(lst)):

       print('all odd')

   

   else:

       print('not even or odd')

       

       

if __name__ == '__main__':

   main()

In what year was the earliest documented use of the word computer?.

Answers

Answer:

1613

Explanation:

referring to a person who carried out calculations, or computations, and the word continued to be used in that sense until the middle of the 20th century. This means that at first, "a computer" was a "person".

What are some of the options available when previewing a worksheet before printing? Check all that apply.

applying styles
adjusting margins
inserting images
zooming in and out
navigating through pages
adding functions

Answers

Answer:

applying style to the worksheet before printing

A website implements a sequential menu (as shown in the diagram) that indicates the relative page that the visitor is on in the website. Which planning phase covers this aspect?

A. Wireframe
B. Browsing functionality
C. Content
D. Page description diagrams

Answers

Answer:

Letter B. Browsing Functionality

Explanation: I just did this question

software that requires a monthly subscription fee is called

Answers

Answer:

Software as a service

Explanation:

You may hear this as (SaaS) for short.

Carrie needs to keep a budget for her department. Each employee in her department sends her travel expenses. In cell, C2, C3, C4, and C5, she enters the total of each employee’s expenses. In cell B1, she enters the original amount of money the department was allotted for spending. What formula should she use to calculate the amount of money the department currently has?

=B1 -(C2+C3+C4+C5)
=B1-C2+ B1-C3+B1-C4+B1-C5
= (C2+C3+C4+C5)-B1
=(B1+C2+C3+C4+C5)

Answers

Answer:

(C2+C3+C4+C5)-B1

Explanation:

Answer:

=(C2+C3+C4+C5)/4

Explanation:

add all numbers together then div. by the total amount of numbers is how you get the average.

Answer quickly!!!

what type of structural semantics does html describe?

Answers

The type of structural semantics does html describe is known as paragraphs.

What type of structural semantics does HTML describe?

Semantic HTML  is known to be a semantic markup is HTML that  is composed of  or it is one that introduces meaning to the web page instead of just presentation. For example, a <p> tag indicates that the enclosed text is a paragraph.

Based on the above, The type of structural semantics does html describe is known as paragraphs.

Learn more about html from

https://brainly.com/question/13276343

#SPJ2

In order to receive financial aid at his vocational school, mario must fill out the fafsa. the fafsa is a form that must be completed to determine . in order to complete a fafsa, you must submit . the fafsa can help students obtain .

Answers

In order to receive financial aid at his vocational school, Mario must fill:

1. Financial and eligibility form.

2. Financial information.

3. Scholarships and grants.

What is financial aid ?

This is known to be funds or support through monetary terms that are give to student or for research purpose.

Therefore, based on the above, In order to receive financial aid at his vocational school, Mario must fill:

1. Financial and eligibility form.

2. Financial information.

3. Scholarships and grants are all correct.

Learn more about financial aid from

https://brainly.com/question/14173570

#SPJ4

Answer:

1. ✔ financial aid eligibility

2. ✔ financial information

3. ✔ scholarships and grants

Explanation:

different between simplex and duplex data transmission mode​

Answers

In simplex mode, Sender can send the data but that sender can't receive the data. In half duplex mode, Sender can send the data and also can receive the data but one at a time. In full duplex mode, Sender can send the data and also can receive the data simultaneously.

Type the correct answer in the box spell all words correctly.
karl has designed an interactive stories website for kids. he has implemented an alphabetical format for browsing through the stories. which
structure will he use for easy navigation?
kart implements a
structure for users to advance through the chapters.
reset
nexus

Answers

Kart should implement a main navigation structure for users to advance through the chapters.

The types of navigation.

In Computer technology, there are three main types of navigation used on websites and these include the following:

Structural navigationUtility navigationAssociative navigation

In this scenario, Kart should implement a main navigation structure for users to advance through the chapters on this interactive stories website for kids.

Read more on website here: https://brainly.com/question/26324021

#SPJ1

Complete the sentences.
The ACCUPLACER exam is a diagnostic test that evaluates the students’ progress in a specific academic field. It is divided into sections that assess reading, writing, and mathematics skills. The
section tests students’ ability to solve problems related to algebra, trigonometry, and geometry. The
section tests how well the students can write. The
section tests the students’ knowledge about sentence structure.

Answers

Answer:

fiances

Explanations it just  is

The ___ event is used to get things started and to set up vital initial information?

Answers

Answer:

Start-up

Explanation:

The start-up event is used to get things started and to set up vital initial information?

Distinguishing elements of your data visualizations makes the content easier to see. This can help make them more accessible for audience members with visual impairments. What is a method data analysts use to distinguish elements

Answers

It is a method data analysts use to distinguish elements data visualizations may be a powerful manner to talk about complicated statistics units by presenting a visible illustration of statistics via charts.

What is Data visualizations,?

Data visualizations, which include statistical charts, diagrams, and maps, are an powerful manner to represent, analyze, and discover statistics in addition to discovering and talking insights.

The number one techniques for statistical evaluation are qualitative statistics evaluation strategies and quantitative statistics evaluation strategies. These statistics evaluation strategies may be used independently or in aggregate with the alternative to assist enterprise leaders and decision-makers collect enterprise insights from exclusive statistics types.

Read more about the visualizations :

https://brainly.com/question/1822923

#SPJ1

Question 4 of 10
which phrase best describes algorithmic bias?
o a. when systematic errors in a program create unfair outcomes
b. when companies avoid using algorithms in their software
c. when programmers purposely create biased software
d. when people insist on doing things without technology

Answers

The phrase that best describes algorithmic bias is that when systematic errors in a program create unfair outcomes.

What is Algorithmic bias?

This is known to be a term that tells about the systematic and repeatable errors as seen in a  computer system that forms "unfair or bad" outcomes.

Therefore, we can say that the phrase that best describes algorithmic bias is that when systematic errors in a program create unfair outcomes.

Learn more about algorithmic bias from

https://brainly.com/question/22236556

#SPJ1

To avoid fatal errors, it is advised to apply the _____ statement locally only to functions that are created rather than globally as the first line of the script file.

Answers

Answer:

To avoid fatal errors, it is advised to apply the "use strict" statement locally only to functions that are created rather than globally as the first line of the script file.

you are running out of time and budget for your game development project you had great ideas for making a randomized highly customizable game experience with high levels of emerg but now you can only fit in the features of one of those qualities highly immersive highly randomize or highly customized briefly describe your imaginary games style then explain which of these three qualities would be best to implement in that type of game on a limited budget​

Answers

My games style  in terms of their qualities will be made up of:

Movement from Attack to Defense.Set up Defense.Movement from Defense to Attack. Set Pieces.

What is a game style?

Game style is known to be a term that is made or used by coaches, sports scientists, etc., to show the patterns of play in a scenario of team sports.

Therefore, My games style  in terms of their qualities will be made up of:

Movement from Attack to Defense.Set up Defense.Movement from Defense to Attack. Set Pieces.

Learn more about Games from

https://brainly.com/question/5144258

#SPJ1

Every javafx main class __________. group of answer choices implements javafx.application.applicatio extends javafx.application.application overrides start(scene s) method overrides start() method

Answers

Two concepts central to JavaFX are a stage and a scene.

Marc is creating a physical design, what aspect of the design deals with the interaction between a user and data?
a. data design
b. user interface design
c. user data design
d. process design

Answers

Answer:

C. User data design

Explanation:

Interaction design can be understood in simple (but not simplified) terms: it is the design of the interaction between users and products. Most often when people talk about interaction design, the products tend to be software products like apps or websites.

1. Sunday Times wants an analysis of the demographic characteristics of its readers. The

Marketing department has collected reader survey records containing the age, gender, marital

status, and annual income of readers. Design an application (Flowchart) that accepts reader

data and, when data entry is complete, produces a count of readers by age groups as follows:

under 20, 20–29, 30–39, 40–49, and 50 and older. Hint: Refer to the program discussed in

class Figure 6-15




2. Create the logic (Flowchart) for a program that calculates and displays the amount of money

you would have if you invested R10000 at 4 percent simple interest for one year. Create a

separate method to do the calculation and return the result to be displayed.

The main program (Flowchart) should prompt the user for the amount of money and passes it

to the interest-calculating method. ​

Answers

Answer:

GIRL

Explanation:

DALAGANG FILIPINA

14 YEARS OLD

NEED FRIENDS

What is a benefit of being a member of a professional organization?

Answers

Answer: A benifit of being a member of a proffesional organzation is you can refresh your knowledge by acquiring new skills through workshops, seminars, and conferences.

Explanation:

how to transfer crypto from coinbase to coinbase wallet

Answers

Answer:

Open Coinbase Wallet on your mobile device.

Tap to go to your Settings.

Tap Buy or Transfer.

Select the supported crypto.

Enter the amount you want to transfer then tap Continue.

Follow the remaining steps to complete your transfer.

16
Select the correct answer.
St. Charles school's music community is organizing a fundraiser. They want to create a simple but attractive website. However, they don't have
too much time to invest in creating the website. Which web builder can the music community use to create a good website in less time?
OA text editor
OB.
WYSIWYG web builder
OC.
template builder
O D.
dynamic web builder
OE.
static web builder
Reset
Next

Answers

WYSIWYG web builder is web builder can the music community use to create a good website in less time. As it allows the person to easily advertise and sell music.

What website builder do artists use?

The most usable website builders for artists

Squarespace. Overall, For artists on a budget, the finest website builderWix is the finest website builder for artists. Shopify is The greatest website builder for artists that want complete control over their online presence.Voog is the greatest website builder for musicians that wish to sell to followers.

Thus, option B is correct.

For more information about website builder, click here:

https://brainly.com/question/15104973

#SPJ1

Zenith Computers is a software development company. It has received a random email claiming that there will be an attempt to hack and extract sensitive financial data of the company before the year end. The company has contacted you, a network analyst, to verify if such claims are indeed true. You have decided to set up a trap for the hackers by putting up a system containing false financial data. Which of the following will you use in this scenario?
A. Metasploit
B. Honeypot
C. Nessus
D. Nmap

Answers

Answer:

B. Honeypot

Explanation:

Honepots, like the name suggest, are sort of baits for the hackers. Honeypot pretty much decoys made to mimic the actual company computers. Hackers fall for it and think they hit jackpot. Once hackers try to extract info from the honeypot, the security analyst can either track the hackers to report to authorities or this is a way to distract hackers from the real protected data.

Other Questions
which statement best describes the central idea of the text a(math elements are interchangeable with each other b) it is possible to define all terms related to mathematics c)the basic elements of math are related in observable ways. d)some elements of mathematics are more important than others In most cases, bioluminescence is useful for:attracting preyproducing oxygensupporting plant lifenavigating dark waters What is the area of this figure? Please help A(2,-3), P(2,9)Find the slope of the line through the pair of points A square has a perimeter of 40 feet. Find the length of thediagonal of the square. Dress coded quote and page number explaing the hole entired book* I need help for my language art work please is due already Abdul and Jordan were making crafts. They were using beads, feathers, and crayons to make cards. Jordan got a little too excited at how nice his card turned out and knocked over a glass of water on their supplies. The beads, feathers, and crayons were all soaked in water. Which of the following explains what will happen to the craft supplies?(2 points)The crayons will dissolve in the water.The feathers will dissolve in the water.The beads will dissolve in the water.None of the craft supplies will dissolve. What was the Munich conference about? How did Hitler feel about it (according to Secretary Rhinehart Spitze)? Who looked like a fool (eventually) after the meeting? What had Hitler promised (and later wrote on a piece of paper)? Select the items that will influence the level of income you will need.where you want to livethe number of people in your familythe names of your childrenif you want to travelthe amount of free time you wantthe color of your parents' hair 3. In science, a theory is more like a scientific law than a hypothesis. A theoryexplains a set of observations or events. It must be verified multiple times bymany different scientists. One scientist cannot create a theory on his or her own.a) Look back at your hypothesis from question 2. Could this hypothesis becomea theory if you repeated your experiment 100 different times and got the sameresults? Can a theory be created by just one person? (2 points) Explore the role of friction when creating safety ramps and escalators. "Why is it important for people and object to move slowly on ramps and escalator? How would you write this expression as a sum or difference? What is the value of x in | - 6| = x? O 6 and -6 00 06 -6 HOURME Question 6(Multiple Choice Worth 5 points)(08.02 MC)Which of the following is considered a reason Genghis Khan was successful in his invasion of China?O He left major cities untouched.O He was very popular with the Chinese people.He had a large, wealthy army.He invaded China from the south. Which of the following describes iambic pentameter?a. the five values of Cicerob. the rhythm scheme of abca abcac. the ten-syllables rhythm of a petrarchan sonnetd. the first five lines of a petrarchan sonnet How was Germany affected by the Cold War? What do you think of when you hear the word statistics? What was the women's recommendation for a proper punishment for Hester? Group of answer choices She should be branded on the forehead with a hot iron. She should be banished. She should be hanged. She should be drowned. You are an application developer. You are writing a program to exchange video files through a TCP/IP network. You need to select a transport protocol that will guarantee delivery. Which TCP/IP protocol would you implement that provides this capability? RIP TCP IP TFTP UDP You need a loan and your friend, Joey, will lend you the $1250 you need. He has you sign a promissory note for four years with an annual simple interest rate of 5.5%. What is the total amount that you will pay Joey at the end of the four years?$1525$4225$2750$275