CSE 101: Intro to Programming (Non CS Majors)

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

1/15

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.

16 Terms

1
New cards

Flowchart

Graphical (picture) language for creating or viewing computer programs and how they operate

2
New cards

Statement

An instruction that is executed sequentially (Start → Declare variables A, B and C → read A, B, and C → etc.)

3
New cards

Interpreters

A tool that runs a program’s statements

4
New cards

String literal

Text within double quotes “….”

5
New cards

Newline

\n ; Causes the following text to print on a new line

6
New cards

Pseudo Code

Human-readable text in order to further understand how the code works

7
New cards

Python Interpreter

Executes code in python

8
New cards

Interactive Interpreter

Allows the coder to run one line of code at a time

9
New cards

Prompt

“> > >” Indicates program is ready to be run

10
New cards

Expression

code that returns a value when some computations is performed using variables

11
New cards

Assignment

When a value is stored to a variable with = (wage = 20)

12
New cards

Syntax Errors

Made when violating a programming language’s rules in implemented statements that are combined to create a program

13
New cards

Variable

A name that can hold a value

14
New cards

Run

The act of carrying out each statement’s actions

15
New cards

program

A sequence of statements that are executed one at a time/sequentially

16
New cards

Input value shape

In flowcharts, this is represented by parallelograms