Category

Programming Tutorials and Coding Guides

Explore programming tutorials with practical examples across multiple languages, scripting, and development concepts for beginners and advanced users.

Welcome to the Programming tutorials section, where you will learn coding concepts with real-world examples across multiple languages and platforms.

This category includes beginner to advanced guides covering scripting, automation, and application development. Whether you are learning programming for system administration or building applications, these tutorials will help you gain practical experience.

Programming plays a crucial role in modern infrastructure and DevOps workflows. You can also explore related topics such as DevOps and Linux to understand how programming integrates with system-level operations.

What you will learn

  • Core programming concepts and logic building
  • Writing scripts for automation and system tasks
  • Debugging and optimizing code
  • Practical use cases in real environments

Who should read this

  • Beginners starting with coding
  • System administrators learning scripting
  • Developers looking for practical examples

957 articles

How to find a height of a tree data structure in Java

The Tree is a non linear data structure consisting of nodes and edges. Depending upon the type of tree, it can have 0 or more child nodes. There are two ways to …

By Deepak Prasad · 6 min read · programming

HashMap vs Hashtable vs HashSet in Java

HashMap is hash table based implementation of Map interface, Hashtable class implements a hash table, which maps keys to values. HashSet is a hash table based …

By Deepak Prasad · 6 min read · programming

ArrayList vs LinkedList in Java

The ArrayList class implements a List Interface. So, this acts as a list. While the LinkedList class implements both List and Deque Interface. So, this acts as …

By Deepak Prasad · 6 min read · programming

LinkedList in Java Explained [Complete Tutorial]

In Java, the LinkedList class is a member of Java Collections Framework present in java.util package. This class implements List interface along with other …

By Deepak Prasad · 12 min read · programming

3 ways to convert CHAR to INT in Java

There are 3 methods to convert char to int in java i.e ASCII values, getNumericalValue, ParseInt using ValueOf method.

By Azka Iftikhar · 8 min read · programming

List vs LinkedList in Java Explained

In Java, List is an interface in java.util package whereas LinkedList is a class in the java.util package. Both of this data structure is used to store the …

By Deepak Prasad · 6 min read · programming

3 different ways to detect a loop in a Linked List

There are three ways to detect a loop in a linked list cycle. They are as listed below. Traversing through the list, Using HashSet, Using Floyd's Cycle …

By Deepak Prasad · 6 min read · programming

Python append() vs extend() in list

In this tutorial we will cover multiple examples to understand the difference between list.append() vs list.extend() method. We will [erform a 1 to 1 comparison …

By Deepak Prasad · 6 min read · programming

Python list extend() method

In Python, the list is an ordered and mutable container. The extend() method is used to add the items from other iterable to the existing list. In other words, …

By Deepak Prasad · 6 min read · programming

How to set up Java with BlueJ IDE [Step-by-Step]

In this tutorial we will cover step by step instructions to set up Java with BlueJ IDE. We will also learn to write our very first Java Program using BlueJ IDE. …

By Deepak Prasad · 5 min read · programming

How to set up Java with Visual Studio Code

Step by Step instructions to set up Java with Visual Studio Code. Create and compile your first Java Program using VSC.

By Deepak Prasad · 4 min read · programming