[programming techniques] subroutines

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/16

flashcard set

Earn XP

Description and Tags

[ BBC Bitesize 'Computational thinking, algorithms and programming ⇢ Programming techniques page 6-7 ]

Last updated 6:06 PM on 5/20/24
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

17 Terms

1
New cards

Program

Sequences of instructions for a computer.

2
New cards

Subroutines

A small program that is written within a main program to carry out a specific function.

3
New cards

Code for Defining a Subroutine:

def subroutineName(parameterOne, parameterTwo)

4
New cards

Types of Subroutines:

  • procedures

  • functions

5
New cards

Procedures

A section of computer code that performs a specific task by taking in parameters.

6
New cards

Functions

A section of computer code that performs a specific task and returns a value by taking in parameters.

7
New cards

Benefits of Subroutines:

  • usually small in size → easier to write, test, debug and understand

  • can be saved separately as modules and used again in other programs → this saves time

  • used repeatedly at various points → the code only has to be written once, resulting in shorter programs

8
New cards

Built-in Functions:

  • int - converts strings or floats into integers

  • str - converts a number into a string

  • asc - finds the ASCII number of a character

9
New cards

Libraries

A collection of pre-written, tested functions that extend the functionality of a language. stored in a separate file.

10
New cards

Function Example:

def add(a, b)

result = a + b

return result

sum = add(5, 3)

print(sum)

11
New cards

Local Variables

Variables that are defined within a subroutine and can only be used in said subroutine.

12
New cards

Global Variables

Variables that are defined outside a subroutine but are valid both in and out of subroutines.

13
New cards

Parameters

Variables listed inside the parentheses when defining a subroutine. They act as placeholders for the values that will be passed to the subroutine when it is called.

14
New cards

Arguments

The actual values passed to the subroutine when it is called. They provide the subroutine with the data it needs to operate on.

15
New cards

Code for Random Number Generator (Integer):

import random

randomNumber = random.randint(1,100)

print(randomNumber)

16
New cards

Code for Random Number Generator (Float):

import random

#generates a random float between 0 and 1 (inclusive)

randomFloat = random.uniform(0, 1)

print(randomFloat)

17
New cards

Code for Random Number Generator (Arrays):

import random

items = [1, 2, 3, 4, 5]

#generates a random item from list

randomItem = random.choice(items)

print(randomItem)

Explore top notes

note
Color Theory Terms
Updated 1261d ago
0.0(0)
note
Jazz
Updated 1331d ago
0.0(0)
note
Chapter 1: Structure of the Atom
Updated 1370d ago
0.0(0)
note
AP Psch pg 163-184
Updated 500d ago
0.0(0)
note
Chapter 24: Protecting Consumers
Updated 1327d ago
0.0(0)
note
Tornadoes and Formation
Updated 1229d ago
0.0(0)
note
unit 1 pt 2 psych slides/notes
Updated 456d ago
0.0(0)
note
Color Theory Terms
Updated 1261d ago
0.0(0)
note
Jazz
Updated 1331d ago
0.0(0)
note
Chapter 1: Structure of the Atom
Updated 1370d ago
0.0(0)
note
AP Psch pg 163-184
Updated 500d ago
0.0(0)
note
Chapter 24: Protecting Consumers
Updated 1327d ago
0.0(0)
note
Tornadoes and Formation
Updated 1229d ago
0.0(0)
note
unit 1 pt 2 psych slides/notes
Updated 456d ago
0.0(0)

Explore top flashcards

flashcards
Consumer Behavior Exam 2
143
Updated 694d ago
0.0(0)
flashcards
Diagnostic Test Venipuncture
48
Updated 1110d ago
0.0(0)
flashcards
finals
66
Updated 1041d ago
0.0(0)
flashcards
Ap psych Unit 3 vocab part 1
46
Updated 894d ago
0.0(0)
flashcards
Latin and Greek Roots List 7-9
75
Updated 324d ago
0.0(0)
flashcards
Unit 3 (1754-1800) APUSH
41
Updated 908d ago
0.0(0)
flashcards
U4 Verbos (Sp. 1 VIP list)
54
Updated 1130d ago
0.0(0)
flashcards
Consumer Behavior Exam 2
143
Updated 694d ago
0.0(0)
flashcards
Diagnostic Test Venipuncture
48
Updated 1110d ago
0.0(0)
flashcards
finals
66
Updated 1041d ago
0.0(0)
flashcards
Ap psych Unit 3 vocab part 1
46
Updated 894d ago
0.0(0)
flashcards
Latin and Greek Roots List 7-9
75
Updated 324d ago
0.0(0)
flashcards
Unit 3 (1754-1800) APUSH
41
Updated 908d ago
0.0(0)
flashcards
U4 Verbos (Sp. 1 VIP list)
54
Updated 1130d ago
0.0(0)