Basics Flashcards

1
Q

When escaping quotes what symbol is used and where does it go?

E.g.
‘The man said, ‘Hi there!’’

A

Input backslash () BEFORE the character you want to escape

# with single quotes and escaping
'The man said, \'Hi there!\''
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

When would you make a ruby symbol?

how do you make a ruby symbol?

A

when you want to reference something like a string but don’t ever intend to print it to the screen or change it.

:variable_name

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

what method checks if something is a nil or not?

A

.nil?

E.g.
“Hello, World”.nil?
=> false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

when nil is used in an if statement, what is nil treated as?

E.g.
if nil

end

A

false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

is false the same as nil?

A

no. they are not equivalent

false == nil
=> false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

what is the modulo operator?

Is it the same a division?

A

%

No. It returns the remainder of a division operation

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

what happens when you try to divide integers that don’t divide evenly?

15 / 4

A

an integer is returned

15 / 4
=> 3

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

how would you get a more accurate calculation of this division problem?

15 / 4

A

use floats

15.0 / 4
=> 3.75

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

can use the == operator be used to compare strings?

A

yes

‘foo’ == ‘foo’
=> true

‘foo’ == ‘bar’
=> false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

what operator is used in String Concatenation?

A

the + operator

‘foo’ + ‘bar’
=> “foobar”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

what is this called?

=>

A

a hash rocket

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

what is a ruby expression?

A

anything that can be evaluated

Pretty much everything you write in Ruby is an expression.

An expression in Ruby always returns something, even
if that’s an error message or nil

Expressions do something, but they also return something.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

when do you define a constant variable?

A

When you want to represent a value that will not change in your Ruby program

How well did you know this?
1
Not at all
2
3
4
5
Perfectly