3 Matching Annotations
  1. Last 7 days
    1. There are two types of errors; 1. Syntax Error (i.e code not following the rules of the language) 2. Logic Error (i.e the program executes but generates wrong results) <- These types of runtime errors are also called exceptions.

    1. Why Study Data Structures and Abstract Data Types?

      The study of data structure helps us to understand the implementation of those data structures like arrays, queues, stacks, etc.

      The study of abstract data types helps us to focus on the implementation of the solution rather than focusing on the details of their implementation. e.g. of abstract data type, lists, dictionary, tuples, etc.