Data structures organize data in computer memory. Arrays and lists are common data structures. Arrays use indexes to access fixed size elements, while lists allow insertions/deletions anywhere. Summing and multiplying arrays and matrices are important algorithms. Summing an array involves iterating through elements and adding to a running total. Multiplying matrices involves nested loops to calculate each element as the sum of products of corresponding row and column elements from the two matrices.