###Questions to ask yourself:
Variables
-
Can I define the term 'variable'?
-
How do I set a variable in Ruby?
Strings and Integers
-
What is a string?
-
What is an Integer?
-
Is 2 the same as "2"?
-
How can I create a string in Ruby?
-
How can I combine two different strings?
- Hint: Google 'string concatenation ruby'
-
How do I convert "2" into 2?
-
How do I convert 2 into "2"?
Arrays and Hashes
-
What is an Array?
-
What is a Hash?
-
What are the differences and similarities between Arrays and Hashes? How do we access their content?
-
How do I create an Array in Ruby?
-
How do I put things into an Array in Ruby?
-
Once I put something into an Array, how do I take it back out?
-
How do I put something into a Hash?
-
Once I put something into a Hash, how do I take it back out?
-
Why are Arrays and Hashes so useful?
-
What are two different ways we can represent key/value pairs in a hash?