Importance of Internal Comments?
Code is easier to understand
Start of the program to know who wrote the program when
To know what happens at each stage of the program
Name 4 types of data types used in python
Integer
String
Boolean
Real
What are the three Logical Operators
AND
OR
NOT
What are the 6 basic arithmetic operators in programming
\+ -Addition - -Subtraction * -Multiplication / -Division ** -Power % -Modulus
Name the two types of loop
Fixed
Conditional
What is the difference between a subroutine and a function
Function only returns one value
Subroutine returns many values
Name the 5 types of Standard Algorithms
Find Min Find Max Input Validation Linear Search Counting Occurences
State 5 advantages of 1-arrays compared to variables
Only one line of code Transversed using loop structure Parameter passing is easy in one line Efficiency of code Individual elements in array can be transversed by indexing