Loops and arrays are discussed. There are three types of loops: for, while, and do-while. A for loop is used when the number of iterations is fixed. A while loop is used when the number is not fixed. Do-while ensures the code runs at least once. Arrays can store multiple elements of the same type. Single dimensional arrays are lists while multi-dimensional arrays have multiple columns and rows to store data.