Ruby Flashcards

1
Q

!false

A

True

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

!true

A

False

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

True||false

A

True

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

True||true

A

True

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

False||true

A

True

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

False||false

A

False

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

True && false

A

False

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

True && true

A

True

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

False && true

A

False

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

False && false

A

False

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

Not (true || false)

A

False

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

Not (true || true)

A

False

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

Not (true || true)

A

False

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

Not (false || true)

A

False

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

Not (false || false )

A

True

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

!(true && false)

A

True

17
Q

!(true && true)

A

False

18
Q

!(false && true)

A

True

19
Q

!(false && false)

A

True

20
Q

1 != 0

A

True

21
Q

1 != 1

A

False

22
Q

0 != 1

A

True

23
Q

0 != 0

A

False

24
Q

1 == 0

A

False

25
Q

1 == 1

A

True

26
Q

0 == 1

A

False

27
Q

0 == 0

A

True