Computer Programming Fundamentals Flashcards

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

1/8

flashcard set

Earn XP

Description and Tags

Flashcards covering basic concepts in computer programming.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

9 Terms

1
New cards

What is a Variable?

Symbolic name or reference to information; a virtual container whose value can change.

2
New cards

What does the statement name = “John” do?

A statement that stores a string of characters in a variable.

3
New cards

What is a Data Type of variable?

It specifies the kind of data a variable can hold (e.g., int, string).

4
New cards

What are Conditional Statements?

Expressions that ask a program to determine if a variable is true or false, leading to different actions.

5
New cards

What is Iteration?

When a program repeats a process or sequence.

6
New cards

What is the purpose of Data Types?

Data types helps classify what information a variable can hold and what can be done with it.

7
New cards

What are examples of common Data Types

Numbers, Decimals, Booleans, Characters and Strings.

8
New cards

What are Functions?

Self-contained modules of code that accomplish a particular task when needed; a reusable block of code.

9
New cards

What keyword do we use for Methods with no return type?

void.