Code360 powered by Coding Ninjas X Naukri.com. Code360 powered by Coding Ninjas X Naukri.com
Last updated: Jul 4, 2022

Data Types and Object

Understanding the data it can work on, clearly gives us an understanding of the language. This article will be talking about such data types and the manipulation done with such data types.
Numbers in Ruby EASY
This blog will cover numbers in Ruby. Ruby classes for numbers, arithmetic, and number method in ruby will be covered.
Arrays in Ruby
This article incorporates the information about the programming language ruby and arrays in ruby and built in methods of arrays in ruby
Ruby Array Filter EASY
In this article, we will discuss why and how filtering can be done in Ruby Array and the filtering methods such as reject, find and in-place select.
Ruby Find Elements in an Array EASY
In this blog, we will discuss various built-in methods and functions in Ruby programming language to find elements in an array.
Hashes in Ruby
In this article, we will learn about Hashes in Ruby, hash literals, hash codes, equality, and mutable keys.
Ranges in Ruby
In this article, we will learn about Ranges in Ruby, its purpose, testing membership, and the definition of membership in a range.
Boolean in Ruby
This blog will cover boolean in ruby language. We will learn what is true-false and nil classes in ruby—boolean methods like TrueClass, FalseClass, and NilClass.
Constants in Ruby
This blog will cover the constants in Ruby, how to define constants, ruby classes that are constant like an array, and the constant method.
Variables in Ruby
This article incorporates a detailed description of Variables in Ruby illustrated with examples.
Author Alisha
0 upvotes

Text in Ruby

Text is nothing but the objects of a string class. strings are nothing but mutable objects and the string class is what we call a set of operations and methods that are used to get a substring, insert and delete a text - all operations that we can do on a string.
String Interpolation with sprintf in Ruby
In this blog, we will learn about string interpolation in Ruby and how to do string interpolation using the sprintf method.
Character Literals In ruby
In this article, we will learn about Character Literals In ruby and the key considerations when utilizing character literally.
String Operators in Ruby
In this article, we will learn what text is and how to represent texts in Ruby using String Operators.
Accessing Characters and Substrings in ruby EASY
In this article, we will learn about the string literal in ruby and accessing characters and substrings in ruby.
Iterating Strings in Ruby
This article covers everything you need to know about Iterating strings in Ruby. Ruby is a high-level, interpreted programming language that supports a variety of programming paradigms.
Author Shiva
0 upvotes
String Encodings and Multibyte Characters in Ruby
In this blog, we will learn about String Encodings and Multibyte characters in ruby.
ASCII and BINARY Encodings in Ruby
In this blog, we will discuss Ruby's ASCII and Binary encoding tools.

Objects in Ruby

Objects come under the class objects. They all share methods under the class. Here, we will be discussing the common features of all the objects in Ruby.
Object References in Ruby
In this blog, we will learn about both the passing methods, i.e., pass by value and pass by reference, followed by a brief understanding of variable reference and object references in ruby.
Object Lifetime in Ruby
In this blog, we will learn about variables and various types of constants in ruby, followed by class and objects in ruby with the lifetime of objects in ruby.
Object identity in ruby
In this blog, we will learn about objects and various methods to compare them, followed by various object equality in ruby.
Object Class and Object Type in Ruby
In this article, we will learn about ruby class and objects and how to determine the class of an object.
Object Equality in Ruby
This blog mainly focuses on Object Equality in Ruby. We will discuss object equality in detail with proper implementation.
Object Order In Ruby EASY
In this blog, we will learn about object order in Ruby and how ordering is done.
Object Conversion in Ruby MEDIUM
This article will discuss various object conversions in the Ruby programming language and implement a program demonstrating the conversions.
Copying Objects In Ruby
 In this blog, we will learn how to create a copy of an object in Ruby.
Object Marshalling in Ruby EASY
In this blog, we have discussed Object Marshalling in ruby and various methods and functions that the language has to enhance the process.
Freezing Objects in Ruby EASY
In this blog, we will learn how to freeze objects in Ruby and make them immutable.
Tainting Objects in Ruby MEDIUM
In this blog, we will learn about objects in Ruby's brief introduction to the various operations we can perform with objects, like copying, and freezing, followed by a proper explanation of tainting of objects.