Python I Vocab Quiz I

0.0(0)
studied byStudied by 0 people
full-widthCall with Kai
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/16

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

17 Terms

1
New cards

Algorithm

step by step set of operations to solve a problem

2
New cards

programming process

steps you should follow when creating a program

3
New cards

debugging

finding and fixing errors in a computer program

4
New cards

top down design

upside down pyramid approach to problem-solving

5
New cards

Modularization

breaking down problems into smaller and smaller problems until each one only takes a few steps to solve

6
New cards

Syntax

rules of a programming language/entering code

7
New cards

Alpha testing

reading through the program to look for errors in logic

8
New cards

Beta testing

using real world data to tests

9
New cards

programming process steps:

  1. Identify the problem (What are you going to do)

  2. Design the solution (how is it going to be done)

  3. Write the program (teaching the computer)

  4. Test the program(debugging, running ur program(

  5. Document and maintain the program, (explain the program to others)

10
New cards

pseudocode

writing out the program in plain english

11
New cards

flowchart

visual representation of an algorithm

12
New cards

flowlines

directional arrows that show the flow of steps

13
New cards

Stepwise Refinement

breaking the problem down into steps small enough so they can be expressed in code

14
New cards

Keywords

reserved words with a predefined meaning in python, cannot be used as variables or other identifiers.

15
New cards

Conditional words

cause statements to execute after a condition

16
New cards

instruction words

tell the computer to do something

17
New cards

variables

represent a storage location for a value that can change