Hoofdstuk 6 Flashcards

1
Q

while

A

zolang als

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

Code A wordt dus meerdere keren uitgevoerd. Zo’n keer noemen we een …

A

iteratie

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

teller = teller + 1

A

teller += 1

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

functie

A

def naam(parameters)
________implentatie
________return resultaten

def cirkel(r):
opp = math.pi * r * r
return opp

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

pi schrijven

A

math.pi

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

absolute waarde printen

A

print(math.fabs())

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

functie

A

Een functie is een blok code binnen een computerprogramma, met een eigen naam en een duidelijk begin en einde. De functie kan elders in het computerprogramma opgeroepen worden.

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

printen zonder print

A

return x

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

round()

A

dichtstbijzijnde geheel getal

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

float()

A

verandert getal in kommagetal

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

(import math
print(math.sqrt(4))
math.sqrt(4))

from math import sqrt
print(sqrt(4))

A

wortel van 4

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

round()

A

afronden

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

import random
print(random.random())
print(random.randint(3,6))

A

0.0 tot 1.0
3 tot 6, integer

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

Het bereik van een variabele

A

Het bereik van een variabele, ook vaak scope genoemd, is het deel van de code in een computerprogramma waar die variabele gedefinieerd is.

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