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
mario62 [17]
3 years ago
15

An old refrigerator consumes 247 W of power. Assuming that the refrigerator operates for 19 hours everyday, what is the annual o

perating cost of the refrigerator, if the cost of electricity is $0.06 per kWh
Engineering
2 answers:
german3 years ago
6 0

Answer:

The annual operating cost of the refrigerator is $102.78.

Explanation:

Power consumed by the refrigerator = 247 W = 247/1000 = 0.247 kW

Daily operation of the refrigerator = 19 hours

Annual operation of the refrigerator = 365 × 19 = 6,935 hours

Annual energy consumed = 0.247 kW × 6,935 hours = 1712.945 kWh

1 kWh of electricity cost $0.06

1712.945 kWh will cost 1712.945 × $0.06 = $102.78

Annual operating cost = $102.78

BabaBlast [244]3 years ago
3 0
<h2>Answer:</h2>

$102.7767

<h2>Explanation:</h2>

Energy, E, consumed by a device is the product of the power, P, consumed by the device and the duration (time), t, of consumption. i.e;

E = p x t         ----------------(i)

The refrigerator consumes 247W of power and operates 19 hours per day.

This implies that the refrigerator consumes 0.247kW of power and operates 19 hours per day.

This means that the energy used per day is given by substituting p = 0.247kW and t = 19h into equation (i) as follows;

E = 0.247kW x 19h

E = 4.693kWh

From the question, it is given that the cost of electricity is $0.06 per kWh. i.e

$0.06 = 1 kWh

Then;

4.693kWh = 4.693kWh x $0.06 / 1kWh = $0.28158

Therefore, the cost of electricity per day due to the refrigerator is $0.28158.

Now, to get the annual (365 days) cost of electricity, we multiply the result by 365 as follows;

Annual cost = 365 x $0.28158

Annual cost = $102.7767

You might be interested in
Manufacturing employees who perform assembly line work are referred to as
mamaluj [8]

Answer:

C. assembly line workers.

Explanation:

8 0
3 years ago
Read 2 more answers
Find the altitude of the right cylinder of maximum convex surface that can be inscribed in a given sphere.
strojnjashka [21]

Answer:

The radius 4 is maximum in convex surface

5 0
2 years ago
A general contractor has received plans for a new high-rise hotel in an urban area. The hotel will be 12 stories tall and will h
liberstina [14]

Answer:

Ano klassing tanong yn?

Explanation:

Ang taas namn yn? Paki linaw po para matulungan po kita.!!

8 0
3 years ago
I need help on the Coderz Challenge missions 3 part 3. PLEASE HELP!
allsm [11]

Answer:

the answer how you analyzs the problwm

6 0
3 years ago
Read 2 more answers
CS3733: Homework/Practice 05 Suppose we would like to write a program called monitor which allows two other programs to communic
valina [46]

Answer:

#include<stdio.h>

#include<stdlib.h>

#include<unistd.h>

#include<sys/types.h>

#include<string.h>

#include<pthread.h>

//#include<sys/wait.h>

int main(int argc, char** argv)

{

int fd1[2];

int fd2[2];

int fd3[2];

int fd4[2];

char message[] = "abcd";

char input_str[100];

pid_t p,q;

if (pipe(fd1)==-1)

{

 fprintf(stderr, "Pipe Failed" );

 return 1;

}

if (pipe(fd2)==-1)

{

 fprintf(stderr, "Pipe Failed" );

 return 1;

}

if (pipe(fd3)==-1)

{

 fprintf(stderr, "Pipe Failed" );

 return 1;

}

if (pipe(fd4)==-1)

{

 fprintf(stderr, "Pipe Failed" );

 return 1;

}

p = fork();

if (p < 0)

{

 fprintf(stderr, "fork Failed" );

return 1;

}

// child process-1

else if (p == 0)

{

 close(fd1[0]);// Close reading end of first pipe

 char concat_str[100];

 printf("\n\tEnter meaaage:"):

 scanf("%s",concat_str);

 write(fd1[1], concat_str, strlen(concat_str)+1);

 // Concatenate a fixed string with it

 int k = strlen(concat_str);

 int i;

 for (i=0; i<strlen(fixed_str); i++)

 {

  concat_str[k++] = fixed_str[i];

 }

 concat_str[k] = '\0';//string ends with '\0'

 // Close both writting ends

 close(fd1[1]);

 wait(NULL);

//.......................................................................

 close(fd2[1]);

 read(fd2[0], concat_str, 100);

 if(strcmp(concat_str,"invalid")==0)

 {

 printf("\n\tmessage not send");

 }

 else

 {

  printf("\n\tmessage send to prog_2(child_2).");

 }

 close(fd2[0]);//close reading end of pipe 2

 exit(0);

}

else

{

 close(fd1[1]);//Close writting end of first pipe

 char concat_str[100];

 read(fd1[0], concal_str, strlen(concat_str)+1);

 close(fd1[0]);

 close(fd2[0]);//Close writing end of second pipe

 if(/*check if msg is valid or not*/)

 {

  //if not then

  write(fd2[1], "invalid",sizeof(concat_str));

  return 0;

 }

 else

 {

  //if yes then

  write(fd2[1], "valid",sizeof(concat_str));

  close(fd2[1]);

  q=fork();//create chile process 2

  if(q>0)

  {

   close(fd3[0]);/*close read head offd3[] */

   write(fd3[1],concat_str,sizeof(concat_str);//write message by monitor(main process) using fd3[1]

   close(fd3[1]);

   wait(NULL);//wait till child_process_2 send ACK

   //...........................................................

   close(fd4[1]);

   read(fd4[0],concat_str,100);

   close(fd4[0]);

   if(sctcmp(concat_str,"ack")==0)

   {

    printf("Messageof child process_1 is received by child process_2");

   }

   else

   {

    printf("Messageof child process_1 is not received by child process_2");

   }

  }

  else

  {

   if(p<0)

   {

    printf("Chiile_Procrss_2 not cheated");

   }

   else

   {

     

    close(fd3[1]);//Close writing end of first pipe

    char concat_str[100];

    read(fd3[0], concal_str, strlen(concat_str)+1);

    close(fd3[0]);

    close(fd4[0]);//Close writing end of second pipe

    write(fd4[1], "ack",sizeof(concat_str));

     

   }

  }

 }

 close(fd2[1]);

}

}

8 0
4 years ago
Other questions:
  • A manufacturer makes integrated circuits that each have a resistance layer with a target thickness of 200 units. A circuit won't
    5·1 answer
  • An overhead 25m long, uninsulated industrial steam pipe of 100mm diameter is routed through a building whose walls and air are a
    9·1 answer
  • Rolling and Shearing are the types of a)-Bulk Deformation Process b)- Sheet Metal Process c)- Machining Process d)- Both a &amp;
    7·1 answer
  • Automotive service P2 Wastewater Management and Handling Spins
    9·1 answer
  • Air at 300 K and 100 kPa steadily flows into a hair dryer having electrical work input of 1500 W. Because of the size of the air
    6·2 answers
  • What are significant figures​
    13·1 answer
  • True or false <br> 19. Closed systems rely on feedback from outside of the system to operate.
    12·1 answer
  • Who is???????????????????
    13·1 answer
  • Technician A says that the most commonly used combustion chamber types include hemispherical, and wedge. Technician B says that
    9·1 answer
  • Why dose bob not let humans touch him one and only Ivan
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!