Skip to main content

Command Palette

Search for a command to run...

Activity #16: Research Definition

Published
2 min readView as Markdown
  1. DATA : What is data?

  2. STRUCTURE : What is structure?

    • Structures represent a "named" collection of related data. For anything in a computer more complicated than a list of numbers, structures can be used. For example, to represent any given car, we might want to know how many doors it has, if it has AC, what its max speed is, etc. All of this information relates to a single "Car" entity, and should be saved in a computer using a structure data type. We use the "DOT" notation to access a structure stored in a variable, thus, car.max_speed, car.number_of_doors, car.ac, are all valid references to a structure.

    • Ref: https://users.cs.utah.edu/~germain/PPS/Topics/structures.html#:~:text=A%20structure%20is%20used%20to,%2C%20age%2C%20uid%2C%20etc.

  3. DATA STRUCTURE - What is data structure?

    • In Computer Science there are two different kinds of data structures.

      Primitive Data Structures are basic data structures provided by programming languages to represent single values, such as integers, floating-point numbers, characters, and booleans.

      Abstract Data Structures are higher-level data structures that are built using primitive data types and provide more complex and specialized operations. Some common examples of abstract data structures include arrays, linked lists, stacks, queues, trees, and graphs.

    • ref: https://www.w3schools.com/dsa/dsa_intro.php

  4. [ ]- SQUARE BRACKET - What is Square Bracket?

  5. { } - CURLY BRACES - What is Curly Bracket?

More from this blog

SIA's

27 posts