BDBikash Dagainbikashdaga.hashnode.dev·Mar 14, 2022 · 4 min readDifferent Terminologies of Tree Data StructureYou might have visited a garden or a forest and seen a lot of trees. Each tree has a branch coming out of another branch and every tree is fully loaded with leaves. Now let us see how this real-life object is implemented in programming. The tree data...00
BDBikash Dagainbikashdaga.hashnode.dev·Mar 3, 2022 · 5 min readThrow vs Throws: The Difference BetweenOverview Every program can have run-time and/or compile-time errors. Mostly, compile-time errors are solved by the developers while developing or testing the program but what about run-time errors? Run time errors are based on the inputs which we pro...00
BDBikash Dagainbikashdaga.hashnode.dev·Jan 28, 2022 · 2 min readDifference Between List and Array in JavaIntroduction Arrays are objects that hold a fixed number of values with similar data types. Array gives us a lot of advantages to store multiple elements and use them but it also has a few limitations. These limitations are overcome by List/ArrayList...00D