Constructs

EasyMediumHard
123456789101112131415161718192021222324252627282930
Question 12
Medium

An IT department uses an automated control system to regulate the environmental conditions in their main server room.

These are the acceptable conditions for the server room:

  • Server temperature (serverTemp)
  • Room temperature (roomTemp) must be a maximum of serverTemp - 20°C (i.e. at least 20°C cooler than the server temperature)
  • Humidity (humidity) must be a maximum of 55%

The room temperature and humidity can both be reduced by switching on the extractor fan (extractorFan).

Write an algorithm in pseudocode, using the variables serverTemp, roomTemp, humidity, and extractorFan, that regulates the server room conditions.

[4]

Constructs Questions

  1. GCSE
  2. /Computer Science
  3. /Constructs