Slide 1

Slide 1 text

Ruby Trivia 2

Slide 2

Slide 2 text

What is the return value of Ruby’s method visibility keywords? private, public, protected Question 1:

Slide 3

Slide 3 text

self Answer 1: Ruby’s method visibility keywords can be used as r-values.

Slide 4

Slide 4 text

Given a button method that takes
 an argument and a block,
 which of these are valid Ruby? button "string" { |n| n } button "string" do |n| n end button ["string"] { |n| n } button ["string"] do |n| n end Question 2:

Slide 5

Slide 5 text

All except:
 button("string") { |n| n } Answer 2:

Slide 6

Slide 6 text

How could this line be fixed? button("string") { |n| n } Bonus Question:

Slide 7

Slide 7 text

How could this line be fixed? button("string") { |n| n } Bonus Question: Answer: Add parentheses around the argument.

Slide 8

Slide 8 text

What is the result of this line: a Hash with a String key, a Hash with a Symbol key,
 or a SyntaxError? {"key": "What happens?"} Question 3:

Slide 9

Slide 9 text

a Hash with
 a Symbol key* Answer 3: *In Ruby 2.2 and later. In earlier versions, it raises a SyntaxError.

Slide 10

Slide 10 text

What is the value of each argument?
 def foo(*w, a: 7, **t) puts "w: #{w}, a: #{a}, t: #{t}" end foo({a: 1, b: 2, "c" => 3, d: 4}) Question 4:

Slide 11

Slide 11 text

w: [{"c" => 3}] a: 1 t: {:b => 2, :d => 4} Answer 4:

Slide 12

Slide 12 text

What happens if you add a positional argument to the end? def foo(*w, a: 7, **t) puts "w: #{w}, a: #{a}, t: #{t}" end foo({a: 1, b: 2, "c" => 3, d: 4}, 5) Bonus Question:

Slide 13

Slide 13 text

What happens if you add a positional argument to the end? w: [{:a=>1, :b=>2, "c"=>3, :d=>4}, 5] a: 7 t: {} Bonus Question:

Slide 14

Slide 14 text

When you inspect Object.new,
 Ruby outputs something like: # What are the properties and significance of this hex number? Question 5:

Slide 15

Slide 15 text

1. It’s the object’s address in memory. 2. It’s always even. 3. It’s double the object’s object_id.
 
 Answer 5:

Slide 16

Slide 16 text

Answer 5:

Slide 17

Slide 17 text

Thanks for playing! Follow @sferik on Twitter for more Ruby trivia and practica.