Java to LLMs: Exploring the LLMs Fundamentals
As a long-time Java developer, I’ve always enjoyed the world of programming. Recently, I found myself increasingly curious about LLMs. It…
As a long-time Java developer, I’ve always enjoyed the world of programming. Recently, I found myself increasingly curious about LLMs. It…
TL;DR
Ever thought about how JVM runs your code? Yes, it runs the class that has the main() method but how does it load and run it?
Here’s my take on Generics where I talk about Generics, Type Safety, Type Erasure. Hope you learn something new —
What is the difference between Comparable and Comparator? It’s a very popular entry/mid-level Java interview question, isn’t it?
I was working on a sorting demo using Comparable and Comparator when I first noticed this.
Watch the video where I explain these operations https://youtu.be/vtjkyOaHSyw
Demo — https://youtu.be/cVn3zvqXeIA
Demo — https://youtu.be/2tLxcaopKR4
ArrayList belongs to the List hierarchy in Java Collection framework.
We all know the importance of data structures, right? Data structures help in organizing, storing, and processing data.
Java 8 added great features to the Java language. Out of them, two stand out — Lambdas and Streams.