Day 29 of learning java ☕:
Today I learnt more on Data structures starting with Arraylist.
In Java, arrays give you fixed-size storage.
Array lists give you flexibility.
When to use:
•Use arrays when the size is known.
•Use ArrayLists when data keeps changing.
One focu
Day 28 of learning java ☕:
Today I learnt about Another different way to take user input apart from using scanner which is buffered reader,
BufferedReader in Java is built for speed.
Instead of reading data one character at a time, it reads chunks into memory, making file