img
img

Course Details!

Description

This course is designed to provide complete knowledge of Ruby language.
Ruby is an interpreted, high-level, general-purpose programming language which supports multiple programming paradigms.
it was designed with an emphasis on programming productivity and simplicity, and it is easy for Java and C programmers to learn. It supports mostly all the platforms like Windows, Mac, Linux.
it used in many different fields like Web development, Static site generation, DevOps and automation, Web servers, Data processing.

What Will I Learn?

  • Creating Ruby programs.
  • To learn the syntax and semantics of the Ruby programming language.
  • Explain arrays and Hashes and create programs using them.
  • Handling exceptions to control error.
  • To learn object-oriented features.
  • To learn how to use regular expression with Ruby Language.
  • Handling exceptions to control error.
  • Learn how Using any environment in development.
  • To learn how to overload functions and operators in Ruby.
  • To learn how to write inline functions for efficiency and performance.

Certificates

  • Certificate Of Attendance From IT-Gate Academy

Introduction to programming, Fundamentals of Ruby language.

  • Overview Of Ruby Programming Language

Ruby Basic Syntax

  • Describes the basics in how the applications you write will be interpreted

Comments

  • Comments are like helping text in your Ruby program and they are ignored by the compiler

Ruby Environment Variables

  • The entities used to store data of various shapes

Ruby Constants and Literals

  • The constants refer to fixed values that the program may not alter during its execution, these fixed values are also called literals

Control Structures

  • Loops, conditions, and more, How the program flow is controlled, an if statement consists of a Boolean expression followed by one or more statements

Ruby Operators

  • An operator is a symbol that tells the compiler to perform specific mathematical or logical manipulations
  • Ruby language is rich in built-in operators and provides the following types of operators: Arithmetic Operators, Relational Operators, Logical Operators, Bitwise Operators , Assignment Operators, Misc. Operators, this tutorial will explain the arithmetic, relational, logical, bitwise, assignment and other operators one by one

Arrays

  • An array is used to store a collection of data

Exceptions

  • Responding to errors that can occur

Functions

  • Is a group of statements that together perform a task

Constants and Literals

  • The constants refer to fixed values that the program may not alter during its execution, these fixed values are also called literals

Regular Expression

  • Regular expression support is typically built into only scripting languages

Object Oriented Programming (OOP)

  • Classes: [A class is an expanded concept of a data structure: instead of holding only data, it can hold both data and functions]
  • Objects: [An object is an instantiation of a class. In terms of variables, a class would be the type, and an object would be the variable]
  • Constructors and destructors: [Objects generally need to initialize variables or assign dynamic memory during their process of creation to become operative and to avoid returning unexpected values during their execution]

Object Oriented Programming (OOP) Concepts

  • Friendship and inheritance
  • Polymorphism
  • Abstract base classes
  • Encapsulation

Comments