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

960 articles

Java Math Class Explained [Easy Examples]

Java Math class has methods for performing more advanced math calculations. abs, ceil, floor, max, min, round, random methods in math class

By bashiralam · 11 min read · programming

Java string method explained [Easy Examples]

Concatenate Java strings, Finding length of String, Index and positioning of java strings, Comparing Java strings, change Java strings to upper case or lower …

By bashiralam · 10 min read · programming

Java Operators Explained [Easy Examples]

There are a total of eight java operators. Arithmetic, Rational, Logical, Bitwise, Assignment, Shift, Unary, Ternary operators

By bashiralam · 11 min read · programming

Java Type Casting Explained [Easy Examples]

The Java type casting is a method or process that converts a data type into another data type in both ways manually and automatically.

By bashiralam · 8 min read · programming

Different Java data types explained with Examples

In the Java programming language, there are basically two main types of data types that are primitive and non-primitive data types. Primitive data types again …

By bashiralam · 11 min read · programming

Java Variables Examples [Different Variable Types]

The most popular types of Java variables are Instance, Local and Static variables. We learned about the declaration, initialization, and syntax of variables.

By bashiralam · 10 min read · programming

Java Multiline Comments [Methods & Examples]

In this tutorial, we learned about Java multiline comments, single line and inline comments. We covered different types of comments that we supported by java …

By bashiralam · 10 min read · programming

Python strip() function Explained [Easy Examples]

The python strip method is used to remove characters from the beginning and ending of the string. Python also supports only removing string characters from the …

By bashiralam · 8 min read · programming

Python pow() Function [In-Depth Tutorial]

The python pow() function can be used to derive the power of variable x to the variable y. Examples of python power function. Examples of math power function

By bashiralam · 12 min read · programming

The Ultimate Python Cheat Sheet for *args and **kwargs

A python kwargs is a dictionary of keyword arguments. we put two ** before kwargs which allows us to pass any number of keyword arguments. Python *args can be …

By bashiralam · 19 min read · programming

Python User Input Advanced Guide [In-Depth Tutorial]

Use python input() function to ask user for input in Python. Collect integer or floating number or string as input. COllect multiple inputs in single line

By bashiralam · 14 min read · programming