Ruby Flashcards
Ruby is a dynamic language. What does it mean for a language to be dynamic?
How do pointers work with Dynamic languages?
How do you run a ruby file?
Ho do you use -e or irb?
How do you use semicolons and comments in Ruby?
How do you see the type of an object in Ruby?
What is the implemented toString( ) method equivalent in Ruby?
to_s
it is called automatically for printing basic variables:
PI = 3.14; puts PI
How do you find the length of a string?
How does x = 3+2 work internally in Ruby?
In general, how does if and else work in Ruby?
In gerneral, how do while loops work with Ruby?
In general, what are the options for for-loops in Ruby?
In general, how do methods work in Ruby?
In general, how do Arrays work in Ruby?
How does deep and shallow copies work in Ruby?