-
Notifications
You must be signed in to change notification settings - Fork 2
/
topics
79 lines (37 loc) · 838 Bytes
/
topics
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
Topics to be covered
General
1. Ruby Intrepreter[Talk about YARV ]
2. Static vs Dynamic typed languages.
3. A little about GC.
[e_01]
1. print, puts,[%s method, string interpolation].
2. Save using gets.
3. Some built in methods of ruby
.reverse
.length
.capitalize
.upcase & .downcase
[e_02]
1. Control flow in ruby(if/else, if/elsif/else, switch)
2. Loops
[e_03]
1. Blocks
2. Yield
3. Array and Hashes
4. each method
[e_04]
1. Methods
2. return
[e_05]
1. concept of Fixnum, float
[e_06]
1. Proc and lambda
2. Passing proc as block
3. Difference between them
Basic OOP concepts
[e_07]
1. Class and Objects
2. Scope of variables
3. public and private methods
4. Modules
Upload exercises to your github repo.[If possible]