Write an algorithim and flowchart to check it the temperature is more than 25°. If it more than 25°C switch fan on else off.​

Answers

Answer 1

Answer:

write the sly flowchart

Explanation:

#stdlib.etc

main()
{

    int temp;
    bool fan = false;

    print("enter the frigin temperature: ");

    read(temp);

    if (temp > 25)

     {
         fan = true;
         print("the fan is on");
     }
     else
      {

           print("the fan is off");

      }

      return 0;

}


Related Questions

advantages and disadvantages of algorithm​

Answers

Answer:

\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\

Explanation:

It is easy to understand. Algorithm is a step-wise representation of a solution to a given problem. In Algorithm the problem is broken down into smaller pieces or steps hence, it is easier for the programmer to convert it into an actual program

Algorithms are time-consuming. Big tasks are difficult to put in algorithms. Difficult to show branching and looping in algorithms. Understanding complex logic through algorithms can be very difficult.

You saved your style options as "webstyle.css" in a subfolder called "styles."

what line do you include in the head section of your html file to use your styles?







Answers

A line which should be included in the head section of a html file to use these styles is link rel="stylesheet" type="text/css" href="styles/webstyle.css"

What is HTML?

HTML is an abbreviation for hypertext markup language and it can be defined as a standard programming language that is used for designing, developing and creating websites or webpages.

In Cascaded style sheet (CSS), a line which should be included in the head section of a html file to use these styles is given by:

link rel="stylesheet" type="text/css" href="styles/webstyle.css"

Read more on HTML here: https://brainly.com/question/4056554

#SPJ1

A network administrator has asked robin, a network engineer, to use ospf (open shortest path first) along with rip (routing information protocol) on an edge router in a network so that it demands more memory and cpu power for calculations but keeps network bandwidth to a minimum with a very fast convergence time. identify and analyze which characteristic of ospf signifies this.

Answers

The option that can be used to  identify and analyze which characteristic of OSPF signifies this is known to be Low overhead, fast convergence.

What is OSPF about?

The OSPF is known to be called an open Shortest Path First protocol.

It belongs to the family of IP Routing protocols as it serves as  Interior Gateway Protocol (IGP) used mainly for the Internet, and the option that can be used to  identify and analyze which characteristic of OSPF signifies this is known to be Low overhead, fast convergence.

See full question below

A network administrator has asked Robin, a network engineer, to use OSPF (Open Shortest Path First) along with RIP (Routing Information Protocol) on an edge router in a network so that it demands more memory and CPU power for calculations but keeps network bandwidth to a minimum with a very fast convergence time. Identify and analyze which characteristic of OSPF signifies this.

Shared data

Low overhead, fast convergence

Stability

Multi-vendor routers

Learn more about OSPF  from

https://brainly.com/question/14604232

#SPJ1

To notify the browser that we have JavaScript code, we should use .............

Answers

Answer:

almost all browsers allow you to type JavaScript code directly into the browser, using something called the “console

a customer is traveling to a branch office, and the network administrator provides her with a static ip address for her laptop. which should the customer do to use the static ip address

Answers

The customer traveling with a provided static IP address should assign the IP in the network adapter settings. Thus, option B is correct.

What is static IP?

The complete question is: A customer is traveling to a branch office, and the network administrator provides her with a static IP address for her laptop Which should the customer do to use the static IP address?

A) Run the command "ipconfig configure static"

B) Assign the static IP in network adapter settings

C) Switch the button from dynamic to static on her laptop

D) Disconnect from WiFi and use an Ethernet cable

E) Type the IP address into the browser

A static IP is a setup that is configured manually instead of the DHCP assigned setup. It is a constant and nonchanging IP setup that is used when working remotely.

In the network and sharing system, open the adapter setting and choose the appropriate adapter. Then choose the IPV 4 and check the current internet settings. Choose the desired IP address and then click the OK and save button.

Therefore, option B. static IP is assigned in the network setting option.

Learn more about static IP here:

https://brainly.com/question/18849429

#SPJ1

What will be the output, if any, when the user clicks the right mouse button?

from tkinter import
def clicked(event):
print("That hurt.")
widget = Button(None, text='Button')
widget.pack()
widget.bind('', clicked)
widget.mainloop()

O an error statement
O That hurt.
O no output
O Button

Answers

The output, if any, when the user clicks the right mouse button is (b) That hurt

How to determine the output?

The flow of the program implies that:

When the user clicks the button, the program prints "That hurt" without the quotes.

This action is on the third line of the program

Hence, the output, if any, when the user clicks the right mouse button is (b) That hurt

Read more about programs at:

https://brainly.com/question/16397886

#SPJ1

In the late 1980s, computer specialists were concerned that proprietary software had too many ________, so they started working on open source projects.

Answers

They were worried that the software had too many bugs.

Which programming best practice does saving code snippets help you achieve?

O using consistent indentation and formatting

O documenting all changes and tracking revisions

O avoiding repetition of the same code in a program

O avoiding having to re-create code that you or another programmer has already written

Answers

Answer:

When it comes to formatting your code (not just strings), the Python programming community has spent a long time establishing and documenting best practice.

Missing: tracking ‎| Must include: tracking

When you start an online course, what should you do to make sure you have access to college resources

Answers

As a student starting an online course, you should explore the college website to make sure you have access to college resources.

What is an online course?

An online course can be defined as an education programme that typically involves the process of providing and sharing learning resources (contents) in an organized way over the Internet, so as to allow the students (users) progress in their understanding of a course or topic.

As a student starting an online course, you should do the following to make sure you have access to college resources:

Explore the college website.Bookmark links to your course.Search for information with regards to advising, degree requirements, and financial aid.

Read more on online course here: https://brainly.com/question/14591988

#SPJ1

Match the Job description with the job titles.

Answers

1) Bricklayer 2) Roofer 3) Architectural drafter 4) landscape architect
number 1 to first box
number 2 to second box
number 3 to third box
number 4 to forth box

What does Fees, Risk Assessment and Returns mean?

Answers

Answer:

The term return refers to income from a security after a defined period either in the form of interest, dividend, or market appreciation in security value. On the other hand, risk refers to uncertainty over the future to get this return. In simple words, it is a probability of getting return on security.

Explanation:

Which is a best practice that can prevent viruses and other malicious code from being downloaded.

Answers

A best practice that can prevent viruses from being downloaded is by not clicking on links in graphic email messages

How to prevent virus or malicious codes?

Virus and malicious codes can be installed on a computer through several ways, which include:

Not using an antivirus on the computerClicking on untrusted links in graphic email messagesInsecure downloads

The above can be prevented by

Installing a genuine antivirusNot clicking on trusted linksAccessing sites with secured downloads

Read more about virus at:

https://brainly.com/question/12543839

#SPJ1


what is a program answer these question
of grade-6​

Answers


a series of coded software instructions to control the operation of a computer or other machine.
Other Questions
13. Which of the following religions initially adopted an aniconic view of art but have since moved toward including images of their deities in art? (Choose all that apply.)A. Buddhism B. Judaism C. Christianity D. Hinduism How does gravity relate to potential energy? Which is the correct description of a revolution and one of its outcomes?. What does 0 = 0 mean regarding the solution to the system?There are no solutions to the system because the equations represent parallel lines.There are no solutions to the system because the equations represent the same line.There are infinitely many solutions to the system because the equations represent parallel lines.There are infinitely many solutions to the system because the equations represent the same line. Read the passage from Food Safety Myths Exposed.Fact: Actually, rinsing meat, poultry, or seafood with water can increase your chance of food poisoning by splashing juices (and any bacteria they might contain) onto your sink and counters. The best way to cook meat, poultry, or seafood safely is to make sure you cook it to the right temperature.Which phrase from the passage contains the central idea?meat, poultry, or seafoodyour chance of food poisoningand any bacteria they might containbest way to cook meat, poultry, or seafood In a random population, out of 500 people, 160 had blue eyes. In a group of 2500 people, how many would have blue eyes? Calculate the Theoretical probability of the following experiments.Use a tree diagram to visualize your calculations. *** Note that these are independent experiments. Once she has removed a fruit, she will put it back in before removing a second fruit.***Jane has a bag with 5 oranges, 4 grapefruits, and 3 apples. What is the probability that she will NOT randomly take out two oranges in a row?What is the probability that she will NOT randomly take out two grapefruits in a row?What is the probability that she will NOT randomly take out two apples in a row? What is the probability that she will NOT take out an orange, then an apple, and finally a grapefruit in that order? 8 3/8 + 3 3/8 + 2 3/8 + 3/8 what is the answer of this ? What is the solution for x in the equation?x-3/7=2x-25/7 Why was preserving the "heritage" of the lift system important to the modernization process? pls hurry Pretty lady cosmetic products has an average production process time of 40 days. Finished goods are kept on hand for an average of 15 days before they are sold. Accounts receivable are outstanding an average of 35 days, and the firm receives 40 days of credit on its purchases from suppliers. Assume sales of $1,200,000 and cost of goods sold of $900,000. Determine the average investment in accounts receivable, inventories, and accounts payable. What would be the net financing need considering only these three accounts 9x10^2 which sentence matches the question assigned Select the correct imperfect form of the verb to fill in the blank.1. Mis padres __________ en Guatemala.A. ViveB. viviaC.vivieronD.vivian2. Select the correct imperfect form of the verb to fill in the blank.A. dabanB. dabaC. dioD. dieron3. Select the correct imperfect form of the verb to fill in the blank.A. era B. ibamosC. veianD. tenias4. Select the correct imperfect form of the verb to fill in the blank.De vez en cuando el vecino __________ con nosotros.A. JugamosB. jugabaC. jugabamosD.juega In 1920, American voters elected a President who promised Find the length of the midsegment of each trapezoid.12) 2x + 4y = 156x +12y = 45What would the solution to the system of equations be? When i was 6, my sister was half my age. Now i am 70. How old is my sister? 41 is a prime number found in the middle of a list of 7 consecutive numbers. find the 7 consecutive numbers Which of the following will cause you to use more data than usual on your smart phone plan each month Should companies or the government compensate people for exposure to chemicals that caused cytoplasmic damage?