. An air conditioner uses 1,800 W of power when plugged into a wall socket that operates at a voltage of 210 V. What is the current flowing through the air conditioner? If the air conditioner above were run for 180 hours per month, how much energy is used? If it costs $0.12/kWh, how much will it cost to run the air conditioner?

Answers

Answer 1

Answer:

Explanation:

Given that:

Power, P = 1800W

Voltage, V = 210 V

Current, I flowing through the air conditioner;

Recall :

P = IV

1800 = I * 210

I = 1800 / 210

I = 8.5714

Current flowing through the air conditioner = 8.57 ampere

If air-conditioner runs for 180 hours per month,

Energy used = Power * time

Energy used = 1800 * 180

Energy used = 324000Wh

1Kw = 1000 W

324000 / 1000 = 324 Kwh

If charge = $0.12 per kwh

Monthly cost = $0.12 * 324

Monthly cost = $38.88


Related Questions

QBasic commands any 10 with examples

Answers

Answer:

I haven't used qbasic in a quarter of a century, so my apologies if any of these are outdated.

I listed 13 here as I don't know what are being qualified as "commands" (I'm sure print is in there, but INT? LEN? these might be interpreted not so much as commands as functions)

PRINT prints text on the screen.

PRINT "How much wood would a woodcuhck chuck?"

INPUT gets text from the user

INPUT woodchuckwood$

INT casts a value as an integer

w = INT(woodchuckwood)

OPEN opens a file for input/output

OPEN "woodchuck.consumption" FOR OUTPUT AS #f

OPEN "woodchuck.consumption" FOR INPUT AS #f

CLS clears the screen

CLS

LOCATE specifies the cursor's location on the screen

LOCATE 10, 10

INKEY$ reads a character from the input buffer

a$ = INKEY$

LEN returns the length of a string

l = LEN(a$)

CHR$ takes an int and returns it's ascii value

$enter = CHR$(13)

ASC() returns the ascii value of a character:

$space = ASC(" ")

DO...LOOP repeats a loop until a condition is met:

x = 0

DO

   x = x + 1

LOOP UNTIL x = 10

SHARED declares global values as being accessible locally

SHARED $username

SHELL executes an os command

SHELL "dir /w"

Which of the following is NOT a standardized size for an editorial design?

11 inches by 14 1/2 inches

5 1/2 inches by 8 1/2 inches

8 1/2 inches by 11 inches

14 1/2 in by 24 inches

Answers

Answer:

14 1/2 in by 24 inches

Explanation:

Editorial designing belongs to the graphic design. It refers to the designing of the newspapers, books, magazines, and many more. Editorial designs are also made in online publications. Various online advertising agencies use them to provides ad online.

The main objective of an editorial design is to make the publication visually very interesting, attractive for the readers and should be easily understood by the reader.

There are various format sizes for publishing an item in editorial designing. The standard sizes are :

a).[tex]11 \ \text{inches by} \ 14 \frac{1}{2} \ \text{inches}[/tex]

b). [tex]8 \frac{1}{2} \ \text{inches by} \ 11 \ \text{inches}[/tex]

c). [tex]5 \frac{1}{2} \ \text{inches by} \ 8 \frac{1}{2} \ \text{inches}[/tex]

In Outlook 2016, the Tell Me function can be accessed by
O pressing F1 on the keyboard.
clicking on the File tab, then the question mark button.
typing a query in the textbox on the ribbon.
typing "help" in the search box in the message pane.

Answers

In Outlook 2016, the Tell Me function can be accessed by

O pressing F1 on the keyboard.

clicking on the File tab, then the question mark button.

typing a query in the textbox on the ribbon.

typing "help" in the search box in the message pane.

Explanation:

I think it should be typing a query in the textbox on the ribbon.

In Outlook 2016, the Tell Me function can be accessed by clicking on the File tab, then the question mark button. The correct option is B.

What is Outlook?

The preferred email client for sending and receiving emails from Microsoft Exchange Server is Microsoft Outlook. Accessibility to contact, email, calendar, and task management tools is also provided by Outlook.

You can send and receive emails, manage your calendar, save the names and phone numbers of your contacts, and keep track of your projects using Outlook.

Even if you utilize Outlook on a daily basis, you might not be aware of all the wonderful things it can do to boost your productivity.

By selecting the File tab, then the question mark button in Outlook 2016, you may open the Tell Me feature.

Thus, the correct option is B.

For more details regarding Microsoft outlook, visit:

https://brainly.com/question/26695071

#SPJ2

please help me guys​

Answers

Answer:

1. Machine Independence

High level languages will have something beneath them that automatically can compile your code into different machine languages for different devices. This means that you can program for just about any device and not have to re-write your code.

2. Micro computers

Almost all the computers that average people interact with today are microcomputers. A microcomputer usually has a single main processing chip or central processing unit. They're smaller than mainframe computers, which dominate a reasonably sized room, and minicomputers, which may be as tall as a refrigerator.

3. VLSI

Third generation computers are basically what we work with today. They use VLSI (Very large scale Integration) which started in the 80s and continues to be the point where modern computers are at.

Energy requirements of analog and digital signals.

First to get the correct answer is brainliest!

Answers

Analog signals require more energy.

Analog=Constant flowing modulated

Digital is bursts of on/off binary data.

Answer:

Explanation:

Analog requires more energy but I’m still trying to figure out what digital is please let me know if you found the answer

Application software consists of programs that perform a specific task for users. Examples include microsoft word internet explorer and micro type 5.

A.true
B.false​

Answers

Answer: verdadero

Explanation:

Which details in paragraphs 1-5 contrast with your experience and expectations?

Based on these details,what do you think the setting of the story is?

Answers

Answer:

among us

Explanation:

HELP ASAP!!! What portfolio document is most likely to speak of your soft skills?
cover letter
transcript
recommendations
resume

Answers

Answer: resume

Explanation:

Answer:

recommendations was the right answer

Explanation:

HEEEEELPPP!!!BRAINLIEST!!! THIS IS URGENT!!!

Read the following code:

count in range(80):
leo.forward(count * 2)
leo.left(count + 2)

There is an error in the for loop. What should be fixed?

Add a colon to the end of the statement
Begin the statement with the proper keyword to start the loop
Place the loop condition outside the parentheses
Replace the parentheses around the range with quotation marks

Answers

Answer:

Begin the statement with the proper keyword to start the loop

Explanation:

Given

The code segment

Required

Fix the code

The first line of the code segment is meant to be a for loop, but it does follow the right syntax.

This is so because the for keyword is missing.

The first line should be corrected and replaced with:

for count in range(80):

Hence, option (b) is correct

In which TWO cases would you need to format a cell in a spreadsheet that contains a number? to make sure a formula includes it in calculations to change its appearance to make it easy to visually locate it to ensure no-one can use the number in calculations to ensure no-one can hide the column that contains it

Answers

Answer:

to make sure a formula includes it in calculations to change its appearance to make it easy to visually locate it

Explanation:

Microsoft Excel is a spreadsheet application used for data analysis and visualization. The worksheet of the excel file is tabular with rows and columns. A single block of the worksheet is called a cell and holds a single item located by the row and column label.

The particular cell can be referenced in a formula using the absolute reference operator '$' with the syntax "$column-label $ row-number". The background of the cells can also be formatted to have a different color.

a certain kind of fish in the ocean eats only algae. a seal eats this fish a bear eats the seal .when the bear dies,it’s recycled by bacteria

Answers

Answer:seal

Explanation:

Consider the following code: x = 5 x = x * 3 print (x) What is output

Answers

Answer:

Output: 5

Explanation:

It will print 5 on the screen

What is the role of the connection medium?

Answers

wth does that mean?!

explain how do compare and contrast graphic organizers help you to synthesize information?

Answers

Answer:

Answer: Given two or more sets of features of items, people, events, etc; compare and contrast graphic organizers help you to see what the sets have in common and what difference one set from the others, that is, what characteristics are unique from each set.

Explanation:

Given two or more sets of features of items, people, events, etc; compare and contrast graphic organizers help you to see what the sets have in common and what difference one set from the others, that is, what characteristics are unique from each set

Describe the difference between an interest and a skill.

Answers

Answer:

an interest you can be good but you can also not know where to start an interest is a want to start and a skill is when you are good at it but you don't have to be interested

Explanation:

Yo, my Lenovo laptop keeps showing this screen but I can't sign in, can someone help me?

Answers

break your laptop and get a new one
Try completely restarting it 1 or 2 times and see if that works first

Explaining AutoCorrect
How is the AutoCorrect feature useful in Outlook 2016? Check all that apply.
It checks for common typing errors.
It can automatically fix the error while you are typing.
It suggests email recipients that might be interested in your message.
It underlines words that need spelling and grammar corrections.
It ensures that you are emailing the correct recipients.

Answers

Answer:

1.

2.

4.

Explanation:

Had the same question

define input hardware​

Answers

It’s a piece of hardware (you can touch it) that changes something on the screen. Examples are a keyboard putting letters on the screen or a mouse moving the cursor

In the movie Charlie and The Chocolate Factory, why did Augustus Gloop go against Mr. Wonka’s instructions and drink from the chocolate river?

Answers

Answer:

He likes chocolate

Explanation:

He's a selfish chocolate lover. Mr. Wonka stated that it must not be touched by human hands, simply children being stubborn.

Which is an email protocol that retrieves email without deleting the email and its attachments from the server?
Simple Mail Transfer Protocol (SMTP)

Internet Message Access Protocol (IMAP)

Post Office Protocol version 3 (POP 3)

Simple Network Management Protocol (SNMP)

Answers

Answer:

Internet Message Access Protocol (IMAP)

Explanation:

The "Internet Message Access Protocol" or IMAP was created by Mark Crispin at the Stanford Knowledge Systems Laboratory. It allows a person to access his email from his local server. In comparison to the Post Office Protocol Version 3 (POP 3), which deletes the emails once they are downloaded, the IMAP allows the contents to be saved on the server. The email will only be deleted if the user intends to do so.

Answer:

It is Pop 3 not IMAP

Explanation:

Correct on edg 2022

Which one of these is NOT a function of an operating system? *

Managing computer hardware
Managing computer software
Allowing humans to talk to the computer
Performing quick calculations

Answers

Answer:

Allowing humans to talk to the computer

Explanation:

the operating system manages the computer hardware and software

and it also allows the ALU to perform quick calculations

List and describe 3 parts (often referred to as 'elements') of a web page?

Answers

Answer:

Content

Design

Development

Explanation:

The design and management of sites is internet explorer; it is the research that takes place over time to make a site look fantastic, work quickly and function well with a smooth user interface.

Help brainliest True or False

In Python, the first character in a string has an index position of one.
TRUE/False

Answers

Answer:

False

Explanation:

Hope this Helps! :)

Answer:

False

Explanation:

The first character in the string has an index of 0

I need help with this program. I need code for this . Java if statements Determine the amount of discount a person should receive. If the bill is more than 2000, then the person should receive a 15% discount. If the bill is 2000 dollars or less, the person does not receive a discount of any kind. Sample Data: 500 2500 4000 333.33 95874.2154 Sample Output= Enter the original bill amount :: 500 Bill after discount :: 500.00 Enter the original bill amount :: 2500 Bill after discount :: 2125.00 Enter the original bill amount :: 4000 Bill after discount :: 3400.00 Enter the original bill amount :: 333.333 Bill after discount :: 333.33 Enter the original bill amount :: 95874.2154 Bill after discount :: 81493.08

Answers

Answer:

The program in Java is as follows:

import java.util.Scanner;

public class MyClass {

   public static void main(String args[]) {

     double bill;

     Scanner input = new Scanner(System.in);

     System.out.print("Enter the original bill amount : ");

     bill = input.nextDouble();      

     if(bill>2000){

         bill-=0.15*bill;

     }

     System.out.println("Bill after discount: " + bill);

   }

}

Explanation:

This declares bill as double

     double bill;

This lets the program accept input

     Scanner input = new Scanner(System.in);

This prompts user for the original bill amount

     System.out.print("Enter the original bill amount : ");

This gets the bill from the user

     bill = input.nextDouble();      

This checks if the input bill is greater than 2000

     if(bill>2000){

If yes, the bill after discount is calculated as follows:

         bill-=0.15*bill;

     }

This prints the bill after discount

     System.out.println("Bill after discount: " + bill);

Merle wants to change the formatting of all bold cells to be non-bolded. Shania wants to copy the cell color,
border, and font from cell E12 to all of column D. Which best describes what each person should do?

A. Merle should use Find and Replace, and Shania should use the Format Painter.

B.Merle should use the Rules Manager, and Shania should use Find and Replace.

C.Merle should use the Format Painter, and Shania should use the Rules Manager.

D. Merle should use the Format Painter, and Shania should use Find and Replace.

Answers

Answer:

Merle should use Find and Replace, and Shania should use the Format Painter.

Explanation:

It's the most logical to me.. And that's what I'm gonna do on my test. =) hope it helps.

Allows input/output of audio info to and from the computer.

A. Central Processing Unit

B. Sound Card

C. Video Card

D. Audio Player

Answers

Answer:

sound card

.............

An eReader has a 956-pixel x 1290-pixel grayscale display with each pixel able to display 32 shades of gray. What is the KiB size of the display memory for the device

Answers

Answer:

752.71 kilobytes

Explanation:

Given ;

956-pixel x 1290-pixel

Shades of gray, = 32

Bit depth (n) = 2^n

32 = 2^5

Bit depth, n = 5 bits / pixel

The size of display memory :

Pixel dimension * n

(956 Pixel * 1290 pixel) * 5 bits /pixel

= 6166200 pixel * bits / pixel

= 6166200 bits

Converting bits to kilobytes :

1 bit = 1/8 bytes

1 byte = 1/1024 kilobytes

Hence,

1 bit = 1/(8 * 1024) kilobytes

1 bit = 1/8192 kilobytes

6166200 bits = (1/8192 * 6166200) kilobytes

= 752.7099609375 kilobytes

= 752.71 kilobytes

a man takes 30 step to cover 18 metre l,how many step he will needed to cover 3003m distance​

Answers

he will need to take 5,004 steps to cover 3003m distance
3003/18=166.8
166.8 x 30=5004
Answer is 5004

How much data can be transmitted with a digital signal?

Answers

Answer:

two possible

Explanation:

In most digital circuits, the signal can have two possible valid values; this is called a binary signal or logic signal. They are represented by two voltage bands: one near a reference value (typically termed as ground or zero volts), and the other a value near the supply voltage

which devices is not found in the CPU​

Answers

Plz answer my question

The devices that is not found in the CPU​ is printer. The correct option is D.

What is CPU?

A central processing unit, sometimes known as a CPU, is a piece of electronic equipment that executes commands from software, enabling a computer or other device to carry out its functions.

The part of a computer that obtains and executes instructions is called the central processing unit (CPU).

A CAD system's CPU can be thought of as its brain. It is made up of a control unit, a number of registers, and an arithmetic and logic unit (ALU). The term "processor" is frequently used to refer to the CPU.

The size, speed, sophistication, and price of a printer varies. It is a device that receives text and graphic output from a computer and transmits the information to paper.

Thus, the correct option is D.

For more details regarding CPU, visit:

https://brainly.com/question/16254036

#SPJ6

Your question seems incomplete, the missing options are:

a. ALU

b. Control Unit

c. Instruction register

d. Printer

Other Questions
m = 6 ; n = 2 ; p = 4 3 m 2 + 4 n p Pretty please help me A circle has an arc whose measure is 80 and whose length is 88. What is the diameter of the circle? How is ithappening tothe Owls?The little owls that live underground the independent of the correlation with the environment answer in 5-20 sentences with barak obama and michael So Im read a story and its called into the thin air and my question was What is the most believable in the story of the into the thin air? Yo, my Lenovo laptop keeps showing this screen but I can't sign in, can someone help me? While on a business trip to Brookfield, Haley treated her co-workers to a meal that cost $50. Haley knew that when the bill came, she would need to pay Brookfield sales tax of 14% and would want to leave an 18% tip on the original $50. Including tax and tip, how much did Haley's meal cost? Complete the steps you will use to create a document using a word processor.Pick an existing templateFormat the fonts of the text as requiredUse Save As to save the document withan appropriate name.Open your word processing application.Replace the placeholders with text andimages. A common running-related inflammatory injury of the extensor muscles andsurrounding tissues of the lower legs is calledO shin splintsO muscle sprainO myopathytendinitis Find the value of xBRAINLEST I SWEAR TO GODWhat is the root ?! What point of view is used in the sentence below?When Marcella arrived at her grandmothers house, she burst into tears. SHARKS' TEETHLangston CarterThe day we found the sharks' teeth was foggy and cool. Moisture hung in the air so thick you could almost see it sparkling in the dim sunlight. There were days, early in the summer like this one, where it seemed there was more water in the air than in the bay. We had beached the boat and stepped out on the recently cleared spit of land. The ground had a light dusting of white sand over an under layer of dried black mud. It looked like a recently frosted chocolate cake, though the frosting was spread a bit thin for my taste. The ground was solid, but we knew from experience that it was full of fiddler crab holes, and would be underwater at the first super-high tide. Mysteriously, to us anyway, someone wanted to build a house there.We often came to these spots to look for artifacts. Our beach, our summer home, had been a fishing camp for as long as anyone living could remember. The oldest stories told of travelers coming down to the edge of the sea, lining up to fill their wagon beds with salted fish to take back home. Old decaying cabins still lined the beach. Rotting nets, hung out to dry in the last century, decorated their weathered walls. Their broken faces spun stories in our minds. The fishermen who, tanned and wrinkled from sun and salt, hauled their nets full of splashing mullet in to cheers from the waiting crowds. The bounty of the sea lightened everyone's hearts, and the smell of roasting fish filled the damp air. Women fanned themselves from wagon seats. Children splashed in the shallow edges of the bay. It was a scene we had acted out as youngsters, building an imaginary bridge to a life we would never fully know.Which of the following correctly describes the narrator of this excerpt, "Sharks' Teeth"? (5 points)Question 22 options:1) First person recalling a past event2) Second person telling a present event3) Third-person limited recalling a past event4) Third-person omniscient telling a present event If I got 562 on my 7th grade Math Diagnostic then what grade level am I? Please help desperate due today please help Select the correct answer from each drop-down menu.Read this excerpt from The Tell-Tale Heart by Edgar Allan Poe. Then fill in the blanks in the paragraph that follows.TRUE! nervous very, very dreadfully nervous I had been and am; but why will you say that I am mad? The disease had sharpened my senses not destroyed not dulled them. Above all was the sense of hearing acute. I heard all things in the heaven and in the earth. I heard many things in hell. How, then, am I mad? Hearken! and observe how healthily how calmly I can tell you the whole story.It is impossible to say how first the idea entered my brain; but once conceived, it haunted me day and night. Object there was none. Passion there was none. I loved the old man. He had never wronged me. He had never given me insult. For his gold I had no desire. I think it was his eye! yes, it was this! He had the eye of a vulture a pale blue eye, with a film over it. Whenever it fell upon me, my blood ran cold; and so by degrees very gradually I made up my mind to take the life of the old man, and thus rid myself of the eye forever.In these opening lines, the reader is presented with a narrator who wants to kill "the old man" because of his eye. The author uses the lines to present a _____ conflict. Based on this excerpt, this stage of the plot is most likely to occur in ________.Blank A - A character versus self, A character versus nature, A character versus societyBlank B - the climax, the falling action, the resolution, the exposition A student performed an investigation to determine if the rate of photosynthesis in elodea is affected by a higher than normal concentration of carbon dioxide gas in the water in which the plant is growing. After increasing the concentration of carbon dioxide in water, the student illuminated the plant with a light and collected the bubbles of oxygen gas that were given off from the cut end of the submerged plant. In this investigation, what would be the best indicator of the rate of photosynthesis? a a change in the color of the plant b an increase in the length of the elodea plant over a period of 12 hours c the amount of light that is transmitted through the water d the amount of oxygen collected over a period of 12 hours I will give brainiest to whoever answers correctly !! Discuss how the prevention paradox can be applied (or does not apply) to this outcome among relevant populations in your practice. Plzzzzzz helpGraph y-2= 2/3(x+4)