Programming (Python) Flashcards

1
Q

Define variable and identifier

A

Variable: Location in memory contains one or more data value

Identifier: Unique name given to variable, procedure, function, class or object

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

What are the 4 main datatypes

A

Integer: Whole numbers, including 0
Float: Number with a decimal point
Boolean: True or False
string: Text

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

What are the 7 operators

A

Addition (+) : Normal adding
Subtraction (-) : Normal subtracting
Multiplication (*): Normal multiplying
Division (/): Normal dividing
Indices (**): Powers
DIV (//): Integer division/quotient rounds down to nearest integer
MOD (%): Modulus also known as the remainder

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

What does variable.upper() do

A

Changes the variable to upper case

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

What does variable.lower() do

A

Changes the variable to lower case

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

What does variable.swapcase() do

A

Switches the cases for each letter

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

What does variable.capitalize() do

A

Capitalises the first letter

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

What does variable.title() do

A

Capitalises first character after every space

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

What does variable.strip(chars) do

A

Removes chars from the variable

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

What does variable.replace(old, new)

A

Replaces the old parts with new parts

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

What does len(variable) do

A

Returns number of characters in the variable

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

What does variable[index] do

A

Gives character in that index position

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

What does variable[start,end] do

A

Gives the characters in the range

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

Use for a f-string

A

Easy way to manipulate and print variables. Use the variables by putting it in curly brackets ‘{}’

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

Symbols for each relational operator

A

Equal to: ‘==’
Not equal to: ‘!=’
Less than: ‘<’
Greater than: ‘>’
Less than or equal to: ‘<=’
Greater than or equal to: ‘>=’

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

Purpose of a while loop

A

Continuous loop until the condition is met

17
Q

Purpose of for loop

A

Loop for a given number of times

18
Q

3 parameters of a for loop

A

(x,y,z)
x = Starting at 0
y = Ends before y
z = How much it increments

19
Q

Define an array

A

Array store elements in a contiguous memory location so are static structures

20
Q

Define a linked list

A

Less rigid and so are usually not stored in contiguous location meaning they are dynamic

21
Q

What is a nested loop

A

A loop inside another loop

22
Q

What are the 3 text file access modes

A

‘r’ : Read from a file. Needs a file
‘w’ : Write to a file and contents are overridden. Can create a file
‘a’ : Appends to a file adding new data. Creates a file

23
Q

What is exception handling

A

When code is run if an error is found it will print a message without crashing the program

24
Q

How is exception handling done in python

A

It will use the phrase
try:

except:

25
Q

What is recursion

A

Where a function continuously calls itself in a function

26
Q

What 3 characteristics must a recursive function have

A

A stop condition or base case
Stopping condition must be reached after a finite number of calls
All inputs other than stopping must call itself

27
Q

Difference between function and a procedure

A

A function returns a value while a procedure does not