Comp Sci

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

1/17

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.

18 Terms

1
New cards

Assignment Operator

allows a program to change the value represented by a variable

2
New cards

• Expression

a combination of operators and values that evaluates to a single value

3
New cards

• String

an ordered sequence of characters

4
New cards

• Variable

a named reference to a value that can be used repeatedly throughout a program

5
New cards

• Global variable

variable that can be used anywhere in your code

6
New cards

• Local variable

variable that can only be used in the part of the code where it was

7
New cards

created, like inside an onEvent (and is deleted once the onEvent is done running).

8
New cards

• Concatenation

a computer science process that combines two or more strings,

9
New cards

variables, or text fragments into a single string

10
New cards

• Boolean Value

a data type that is either true or false

11
New cards

• Comparison Operator

<>,
12
New cards

• Logical Operator

NOT, AND, and OR, which evaluate to a Boolean value

13
New cards

• Conditional Statement

affects the sequential flow of control by executing different

14
New cards

statements based on the value of a Boolean expression

15
New cards

• Function

a named group of programming instructions. Also referred to as a

16
New cards

"procedure"

17
New cards

• Function Call

a command that executes the code within a function

18
New cards