Question
Which organization released the report titled "Power
Hungry: How AI Will Drive Energy Demand"?Solution
The International Monetary Fund (IMF) released the Power Hungry report, projecting AI’s impact on energy demand, emissions , and economic growth .
Dynamic memory allocation (e.g., using `malloc` or `new`) typically occurs in which part of the runtime memory?
Data flow analysis is a technique used by optimizers to:
Which of the following is the first phase of a compiler?
Which optimization is performed after intermediate code generation?
Which LR parser is often preferred in practice because it offers a good balance between power and table size, resolving most conflicts that SLR(1) cannot?
Which of the following grammars is suitable for top-down parsing?
Which data structure is commonly used in implementing a recursive descent parser?
If an expression `x = a + b` is computed, and later in the same basic block, `y = a + b` is computed, a compiler can apply which optimization?
Which parsing method uses a stack and an input buffer?
Which memory allocation strategy is used for global variables and static variables, where memory is allocated once at compile time and remains throughou...