Which of these is described as a discrete piece of code that is part of a program and contains one or multiple routines?(1 point)

Responses

module
module

function
function

Python
Python

string

7 answers

The correct answer is "module." A module is described as a discrete piece of code that is part of a program and can contain one or multiple routines (functions).

Which of these is a method or mathematical process for designing algorithms for problem solving?(1 point)
Responses

algorithm design
algorithm design

binary
binary

input
input

supervisor program

The correct answer is "algorithm design." It refers to the method or mathematical process for designing algorithms for problem solving.

What are basic building blocks used to control computer programs, which are a sequence of words or symbols in a valid language and can be understood by the computer?(1 point)
Responses

string
string

compiler
compiler

programming constructs
programming constructs

programmer

The correct answer is "programming constructs." They are the basic building blocks used to control computer programs and are a sequence of words or symbols in a valid language that can be understood by the computer.

What is a return value?(1 point)
Responses

a value sent back from a function
a value sent back from a function

a value altered by a function
a value altered by a function

a value sent to a function
a value sent to a function

a value received by a function

The correct answer is "a value sent back from a function." A return value is the output that a function sends back to the part of the program that called it.