programimg fundimentals 2.2

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

1/24

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 5:55 PM on 5/16/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

25 Terms

1
New cards

What are the three programming constructs?

Sequence - ensures instructions are executed in order

Selection - decision making (IF, ELSE)

Iteration - repetition (WHILE, FOR)

2
New cards

What is the data type integer for?

Whole numbers only

3
New cards

What is the data type real/float for?

Numbers that include a fraction of decimal part

4
New cards

what is the data type Boolean for?

Conditions and logic

5
New cards

What is the data type character for?

A symbol or letter

6
New cards

What is the data type string for?

A sequence of characters

7
New cards

What is casting?

Changing data types of a variable

8
New cards

What is string manipulation?

Measuring the lengths of stringing and joining them together or slicing them

9
New cards

What does the string operation length do?

Returns the number of characters in a string

10
New cards

What does the string operation subString do?

Extracts a sequence of characters within a string

11
New cards

What does the string operation concatenation do?

Joins strings together

12
New cards

What is data structure?

Organising and storing related to data so it can be used efficiently

13
New cards

What is a record?

A data structure that is used to group different types of data under one structure

14
New cards

What is an array?

A fixed size data structure with a collection of similar data items stored under an single name

15
New cards

What is the SELECT command used for?

Retrieve information about a particular field in the database

16
New cards

what is the command FROM used for?

The data base being searched for

17
New cards

What is the command WHERE used for?

Applying conditions to the search

18
New cards

What is a sub program?

A section of code that performs a specific task

19
New cards

What is a function?

A type of subprogram that performs and task and returns a value

20
New cards

What is a procedure?

A type of sub program that performs and takes but does no return a value

21
New cards

Why are subprograms used?

To make the code more structured and modular

Allows code to be reused

Makes programs easier to test and maintain

Allows shared workload by splitting the development of sub programs across a team

22
New cards
23
New cards
24
New cards
25
New cards