Wednesday, July 8, 2020

Simple steps to start programming

Students who are in the beginning stage, they have to follow the below steps:

1. Try to enjoy mathematics and learn all basic operation like arithmetic operation

2. Develop an algorithm for existing mathematics problems whatever currently you learned.

3. Implement the algorithm in coding.

4. Test coding

5. Get the result.




Wednesday, January 8, 2020

Constant in Ruby Programming

# A constant Value will start with Uppercase letter
# if you change the value then  you will be warned
C_CONST= 3.14
C_CONST = 1.6
puts C_CONST