CodeSteps

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

Ruby Programming – An Overview on Classes

As we discussed in our previous Articles, Ruby is a pure object-oriented language. That means, everything is an object of a class in Ruby. Non-object things are NOT exists in Ruby. Unlike C++ where you can write the program without classes or objects; in Ruby we CAN NOT write programs without classes or objects. Hence […]

Ruby Programming – The Basics of Ruby

Ruby is a pure object-oriented programming language. That means, everything is an object in Ruby. For example, 3 is an object of Number class. If you type 3.methods; it will return all the methods defined in the Number class. Similarly, if you type 3.class; you will see the type of the class this object is […]

Java Beans – An Introduction

Basic JavaBeans are nothing but POJOs. Before discussing about JavaBeans; let’s have a quick look at POJOs. POJO (Plain Old Java Object) is a term used to indicate that it is not a special Java object (not developed using any framework or any other technology); rather it is an ordinary plain simple Java object. The term POJO […]

JSP – Action Elements

We have discussed JSP scripting elements and directive elements in our previous articles. In this article, we are going to discuss JSP Action elements. Action elements in JSP are another type of syntactic element; translated into Java code that performs an operation. The web server processes these action elements when processing a client’s HTTP request. […]

Ruby Programming – Interactive shell

Once we installed Ruby, we will get one powerful command line interactive Ruby-programming environment called irb (Interactive Ruby). irb is a command line interpreter allowed to enter Ruby commands and instantly see the results in the environment itself. This is very useful when learning Ruby. In this article we will discuss about invoking ruby command-line interpreter, […]

Ubuntu 14.x – How to open Terminal window?

The terminal window is helpful to execute Ubuntu commands, scripts, or execute the applications. A terminal window opens the command-line tool to allow the user(s) to enter the commands, to do some operations. Usually, the user(s) use the Terminal window, to perform maintenance operations. In this article, we are going to discuss the steps to […]

Scroll to top