What process locates a specific set of characters in a data set?(1 point) Responses data analysis data analysis iteration iteration data collection data collection pattern matching

7 answers

The correct response is pattern matching.

What is an example of a branching control structure?(1 point) Responses while loop while loop if…then if…then do loop do loop for loop

The correct response is if…then.

How do we generally alter the parameter to get to the base case?(1 point) Responses setting the parameter to zero setting the parameter to zero decrementing the parameter decrementing the parameter incrementing the parameter incrementing the parameter adding one to the parameter

The correct response is decrementing the parameter.

When performing a recursion, how do you describe the act of a function calling itself?(1 point) Responses forward phase forward phase base case base case backward phase backward phase recursive case

The correct response is recursive case.