Looking for Course 1823 test answers and solutions? Browse our comprehensive collection of verified answers for Course 1823 at moodle.polytechnic.bh.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
A carbon-aware scheduling system consists of three core components: a carbon intensity data source, scheduling logic, and a workload queue. What is the role of the workload queue in this system?
A solar-heavy grid in California experiences a characteristic midday dip in carbon intensity. Which of the following correctly explains why this dip occurs?
A datacenter runs two categories of workload: real-time web search (processing user queries instantly) and overnight machine learning model training (which must complete within 24 hours). Which workload is a candidate for carbon-aware temporal shifting?
In most electricity grids, when demand increases beyond what existing generators can supply, grid operators bring additional generators online. The generators held in reserve for these peak periods are typically natural gas peaker plants. What type of carbon intensity measurement captures the emissions of these specific generators?
Carbon intensity of an electricity grid is measured in grams of CO₂ equivalent per kilowatt-hour (gCO₂e/kWh). What does this metric represent?
Refer to the figure: Three Optimization Layers
A system processes database queries using Python, with no indexes, and SELECT * retrieving all 15 columns. Three independent optimisations target different layers:
If only one optimisation can be applied, which would have the largest impact on energy consumption, and what is the reasoning?
A company operates a web API that runs continuously and processes thousands of requests per second. The service is currently written in Python. A team proposes rewriting it in Go. A separate team proposes keeping Python but moving 60% of the workload to a cloud region with lower carbon intensity. Which statement best characterises the trade-off between these two approaches?
An e-commerce platform handles product search queries. Each search filters on category, price range, and brand. Currently, the database has a separate index on each filter column. The database retrieves matching row IDs from each index and intersects the results, examining approximately 25,000 rows per query. A proposed change creates a single combined index on (category, price_range, brand), narrowing to approximately 800 rows per query in a single traversal. Why does the combined index produce fewer rows examined?
A database stores sensor readings in a table where the sensor identifier is stored as a 36-character text field. A proposal changes the identifier to a compact numeric format (significantly fewer bytes per row). The table contains millions of rows. Which of the following is the primary mechanism by which this change reduces query energy?
A video streaming platform must choose between two encoding formats. Format A encodes quickly with moderate quality, producing larger files. Format B takes 2.7 times longer to encode but produces files half the size of Format A. Each time a video is streamed, the smaller file transfers less data over the network.
For a video that is expected to be viewed only twice, which format consumes less total energy (encoding plus all transmissions), and why?