CodeSteps

Python, C, C++, C#, PowerShell, Android, Visual C++, Java ...

Node.js – An Introduction

Node.js is an Open Source JavaScript run-time environment that allows to run JavaScript code. It provides cross-platform run-time environment. It was originally developed by Ryan Dahl in the year 2009. We can use Node.js in developing Single page Web applications to High performance applications. Main focus of Node.js is to create highly performance applications. Unlike […]

Microsoft Project 2013 – How to Open Project Options dialog?

Microsoft Project allows changing the Project options through the Project Options dialog. Through the Project Options dialog, we can change the display options, language options, customize the ribbon, etc. This article explains, how to open the Project Options dialog. This article applies to: Microsoft Project 2013. Step 1. Open the Microsoft Project application and then click on […]

Java – Networking using Sockets

What is Networking? Networking in Java, is the concept of establishing a connection between two computing devices, the Client and the Server, that are running on two different JREs. This connection gets established at the TCP layer. There can be n number of Clients that interact with the Server. Networking provides the sharing of data […]

Serialization in Java

Have you ever thought of storing the object information into a file or stream and retrieve it back when required? Java Serialization allows us to do this. Serialization is the process of converting a Java object into a stream of bytes. And deserialization is the reverse process, where the byte stream is converted to recreate the […]

Modules in Java

Modules in Java were introduced in Java 9 version. There were many other features that were added in Java 9, in addition to Modularity. But, this was an important decision made to modularize entire Java. The entire JDK and the rt.jar file were broken down into different modules containing packages. Even the coders can develop […]

Ruby Programming – String interpolation

Ruby supports string interpolation in which we can embed the expressions within the string literals. This is a very useful feature to create formatted strings in a more readable form. We are going to discuss string interpolation in Ruby, in this article. A special sequence of characters “#{ }” we use to represent the expressions […]

Ruby Programming – Inheritance in Ruby

Inheritance is one of the great feature in Object Oriented Programming. Ruby supports inheritance. Inheritance allows to inherit the features of the base classes to its derived classes. That means, through derived class objects we can access the features of the base class. Through this Article, we will discuss how we use Inheritance in Ruby. […]

Scroll to top