Question

What is the most appropriate structure for handling code that is repeated multiple times in a program?(1 point)
Responses

stack
stack

function
function

recursion
recursion

queue

Answers

GPT-4o mini
The most appropriate structure for handling code that is repeated multiple times in a program is **function**. Functions allow you to encapsulate code, making it reusable and easier to maintain.