Year 11
Lesson details
Key learning points
- In this lesson, we will discuss the good habits of a programmer before being reminded of why some of the key aspects are good habits. We will also hear from industry programmers about their own good practice. We will then look at alternative approaches to programming solutions.
Licence
This content is made available by Oak National Academy Limited and its partners and licensed under Oak’s terms & conditions (Collection 1), except where otherwise stated.
Loading...
3 Questions
Q1.
What does CSV stand for?
closed-separated values
closed-separated volumes
comma-separated volumes
Q2.
What will be stored in the numbers.csv file when this program is executed?
"3, 4, 5"
numbers
numbers.csv
Q3.
True or False: An integer can be written directly to a CSV file
True
3 Questions
Q1.
Which of these variables has been declared using the correct Python conventions?
levelScore = 5
levelSCORE = 5
LevelScore = 5
LEVELSCORE = 5
Q2.
True or False: All of the variable declarations given in question one will still work in Python.
False
Q3.
What symbol should you use to comment a single line of code?
!
' ' '
*