Python Interpreter Flashcards

1
Q

Hoe werkt de Python Interpreter?

A
  1. Python code wordt gecompileerd tot bytecode
  2. Bytecode wordt bewaard in .pyc-file
  3. De bytecode wordt uitgevoerd
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Wat vind je terug in een .py-file?

A

Een script met Python code

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

Wat vind je terug in een .pyc-file?

A

Bytecode = gecompileerde python code

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

Uit welke 2 delen bestaat een Python Interpreter?

A
  1. Python bytecode compiler
  2. Virtual Machine dat Python code uitvoert
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Waar kan je naast in script ook je Python code uitvoeren?

A

In prompt

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

Python is een RAD language, wat wil dit zeggen?

A

Rapid Application Development

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

Wat is een voordeel van altijd eerst je code in prompt te testen?

A

Zo vermijdt je ‘edit-compile-test-fix’

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