Question

which is not part of an algorithm
visual scritping
selection
sequencing
iteration

Answers

GPT-4o mini
Among the options provided, "visual scripting" is not part of an algorithm.

The other three options—selection, sequencing, and iteration—are fundamental concepts in algorithms.

- **Selection** refers to making choices based on conditions.
- **Sequencing** involves executing steps in a specific order.
- **Iteration** is about repeating a set of instructions.

Visual scripting, on the other hand, is a method of programming using graphical elements instead of text-based code, which is a different concept related to how algorithms can be represented or implemented but is not a component of an algorithm itself.

Related Questions