Journal Week 10 Day 1

... Less than 1 minute

# Journal Week 10 Day 1

What are the three categories of data types? How are they different?

What are the Value-type data types? What differences do you notice from JavaScript?

In your own words how do Reference types get stored in memory? How does this differ from Value types?

  1. The three types are value, reference, and pointer type. Value type holds an actual value. Reference stores where something is defined. Pointer is ana unmanaged data type often denoted with *.

  2. Value types are like strings and numbers. It is different from Javascript by the strictly typed, and you have to say exactly what the value is.

  3. They get stored more like references to values. Value is an actual number, while reference just tells something to go find a reference.

Daily Challenge https://github.com/JordanWilker/RPSCSharp