________ is a short hand version of your code written out as part of the planning process.(1 point)

Responses

Procedure
Procedure

Python
Python

Pseudocode
Pseudocode

Parameter
Parameter
Question 2
Most programming languages have ______, which are collections of subroutines and other resources that are available for programmers to use.(1 point)
Responses

functions
functions

parameters
parameters

libraries
libraries

psuedocode
psuedocode
Question 3
Which of the following is a parameter of the following function?

def circleArea(r):
area = math.pi * r * r
return area

(1 point)
Responses

r
r

area
area

pi
pi

def

1 answer

Question 1: Pseudocode is a short hand version of your code written out as part of the planning process.

Question 2: Most programming languages have libraries, which are collections of subroutines and other resources that are available for programmers to use.

Question 3: In the function def circleArea(r):, the parameter is r.