---
title: "Sequential Computing — AP CSP Definition & Exam Guide"
description: "Sequential computing runs operations one at a time, in order. Learn how AP CSP tests it against parallel and distributed computing in Topic 4.3."
canonical: "https://fiveable.me/ap-comp-sci-p/key-terms/sequential-computing"
type: "key-term"
subject: "AP Computer Science Principles"
---

# Sequential Computing — AP CSP Definition & Exam Guide

## Definition

Sequential computing refers to the traditional method of executing instructions in a computer program one after another, in a sequential order. It follows a linear path where each instruction is completed before moving on to the next.

## Related Study Guides

- [Big Idea 4 Overview: Computer Systems and Networks](/ap-comp-sci-p/unit-4/review/study-guide/WfuUHs2qFBVKy24rtsZ9)
- [4.3 Parallel and Distributed Computing](/ap-comp-sci-p/unit-4/parallel-distributed-computing/study-guide/wkNxn30shWZFeNUlcild)

## Review

### Related Terms

- Parallel Computing: Parallel computing involves breaking down tasks into smaller subtasks that can be executed simultaneously by multiple processors or cores for faster processing.
- Multithreading: Multithreading allows multiple threads within a single process to execute concurrently, enabling better utilization of resources and improved performance.
- Instruction Pipelining: Instruction pipelining is a technique that allows overlapping execution of multiple instructions at different stages of processing, improving overall efficiency and speed.
