Skip to content

coder-programmer

A portal for Programming and System Design

  • Home
  • About
3rd April 2020

Debugging the Code – Hands-on practical tips for debugging efficiently

Software Debugging is the basic skill for any programmer in the world. Debugging is the process of executing the code interactively one line at a time to understand what is happening in the code flow. Debugging is also the process of detecting the source of the problem and fixing any potential bugs in the software code. We debug the code...

Categories Uncategorised Comments: 0
3rd April 2020

How to Create Immutable Class in Java

An immutable class is a class whose object cannot be modified once created. Any effort to modify the object will result in the creation of another immutable object.For instance, String class is an immutable class. Once an String object is created, an effort to alter that object results in the creation of another String object. The immutable object can be...

Categories Uncategorised Comments: 0
13th November 2019

Binary Search Tree

Binary Search Tree, is a node-based binary tree data structure which has the following properties: The left subtree of a node contains only nodes with keys lesser than the node’s key. The right subtree of a node contains only nodes with keys greater than the node’s key. The left and right subtree each must also be a binary search tree....

Categories Uncategorised Comments: 0

Recent Posts

  • Debugging the Code – Hands-on practical tips for debugging efficiently
  • How to Create Immutable Class in Java
  • Binary Search Tree

Recent Comments

    Archives

    • April 2020
    • November 2019

    Categories

    • Uncategorised

    ©2021 coder-programmer

    Back To Top