Principles of Programming Flashcards

1
Q

Addressing

A

refers to assigning/retrieving data from memory locations

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Direct Addressing

A

tells CPU the addressing that contains necessary data, limiting the amount of addressable memory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Immediate Addressing

A

value to be loaded is included as part of the instruction, not in memory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Indexed Addressing

A

address is accessed and modified by addition to numbers in the index together, increasing the amount of addressable memory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Indirect Addressing

A

contains address that contains the address where memory is stored, allowing easy relocation

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Assembler

A

translates assembly code into machine code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Assembly Language

A

a low-level, second-generation programming language designed for a specific type of processor that can be converted to machine code using an assembler, written in mnemonic codes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Comments in Assembly Language

A

help people understand the code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Labels in Assembly Language

A

highest item, identifies sections of code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Operands in Assembly Language

A

what the command will be carried out on

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Operations in Assembly Language

A

command to be carried out

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Attribute

A

data in an object

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Backus-Naur Form

A

used by the developers of programming languages to specify the syntax rules of a language

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Class

A

a template used to create objects of that class

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Conjunction

A

here digits are anded

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

CSS

A

Cascading Style Sheets

designs the website’s visual style

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

De Facto Standard

A

a standard that has no formal approval, but is generally done

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

Derived Class

A

specialised class based on a superclass with attributes and methods, inheriting all the attitudes and methods of the superclass

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

Disjunction

A

where digits are or’d

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

Dynamic Typing

A

there is no need to specify variable types

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

Encapsulation

A

hiding attributes and objects so they can only be accessed or changed using methods defined for the class, therefore maintaining data integrity and avoiding errors

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

Event

A

signal generated by an external action, eg mouse movement/keystroke to the program so it can respond to events by event handling

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

Event-Driven Programming

A

consists of a series of event handlers that runs relevant code when an event occurs

24
Q

Event Handling

A

subroutines that respond to an event

25
Q

Explicit Data Types

A

the opposite of dynamic typing

26
Q

HTML

A

Hypertext Markup Language

specifies the layout of the webpage

27
Q

Indentation Based Syntax

A

where no curly brackets or semi-colons are used, only indentation

28
Q

JavaScript

A

processes user input to make webpages responsive to the user

29
Q

Listeners

A

subroutines that respond to an event

30
Q

Machine Code

A

code that the computer can understand, made up of 1s and 0s, processed by the CPU and often presented to users as hexadecimal

31
Q

Machine and O/S Independent

A

the programming language will work on many different machines and operating systems

32
Q

Mark-Up Languages

A

plaintext that is marked up to indicate layout and formatting with tags

33
Q

Metatags

A

mark the beginning and end of each section of the document which are not case sensitive

34
Q

Methods

A

procedures and functions acted out on data

35
Q

Object

A

a real-world entity about which data is stored, a specific instance of class, made up of attributes and methods

36
Q

Object-Oriented Program

A

programming based on the concept of objects, which can contain data and code

37
Q

Opcode

A

specifies the operation to be performed

38
Q

Arithmetic Opcode

A

maths stuff, such as adding, subtracting or overflows

39
Q

Branching Opcode

A

allows jumping between parts of the code

40
Q

Conditional Jump

A

happens if a condition is met

41
Q

Unconditional Jump

A

jump always happens

42
Q

Data Transfer Opcode

A

used to move/store/load data between registers and main memory

43
Q

Logical Shift Opcode

A

carried out logical operations, eg binary masks

44
Q

Polymorphism

A

the ability of a derived class to change/redefine methods inherited from the superclass

45
Q

Problem Oriented

A

where a programming language is developed specifically to solve a problem

46
Q

Procedural Generation

A

technique used in gaming to create backgrounds

47
Q

Procedural Programming

A

paradigm that relies on procedures and subroutines to form tasks, using control flow statements, variables, modularisation, machine and O/S independent, high-level and use top-down development

48
Q

Standardisation

A

the process of developing and promoting standards

49
Q

Standard Library

A

collection of pre-written code that can be imported with the program

50
Q

Syntax Diagram

A

represent BNF in a more accessible manner

51
Q

Tags

A

use chevron brackets with a keyword, usually come in pairs to indicate the start and end

52
Q

Top-Down Development

A

where the program is broken down into smaller problems and is repeated until each problem is small enough to deal with, so each piece of the problem will need a separate subroutine

53
Q

Visual Programming

A

uses graphical blocks that click together, colour coding, group of related functions and drag and drop, so there is no need to remember syntax and the focus can be on solving the problem, but I has a reduced instruction set, limited access to OS and doesn’t allow file handling

54
Q

Website

A

use hyper-linked pages and can contain different types of information including images, texts and multimedia, hosted by the internet

55
Q

XML

A

Extensible Markup Language

a markup language that is commonly used in web applications, used to structure and markup data for storage rather than display, acting like a database