Old Items

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/9

flashcard set

Earn XP

Description and Tags

CSCI 260 - Professor Pavel

Last updated 1:25 AM on 5/29/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

10 Terms

1
New cards

What is a program?

List of instructions for computer to execute.

2
New cards

What is purpose of computer?

To execute program.

3
New cards

What does it mean to run the program?

Execute program one by one line.

4
New cards

What computer component executes program?

The CPU runs lines of program one by one.

5
New cards

What is data?

Whatever isn’t instructions, is data.

6
New cards

Where is running program stored? What else is stored?

Stored in the RAM also called main memory (code and data).

7
New cards

Machine Cycle

A sequence of steps that CPU goes through to execute a single instruction.

8
New cards

Machine Cycle Steps

Fetch: CPU fetches instruciton from RAM

Decode: Prepare instruction execution

Execute: Do what instrument says

Write-back: Some instructions require results to go back to CPU.

9
New cards

What do we know about RAM memory (properties)?

  • It’s slow (compared to CPU)

  • Random Access: Time to access data doesn’t depend on physical location of data on memory device.

10
New cards

What is memory stall?

BAD SITUATION; When CPU freezes and waits for data to be delivered in RAM.