Posts

Spring

  ✅ API is like a method or interface that defines what can be done (like login(), searchProduct()), but not how it’s done. ✅ Web Service is the actual implementation of that API which runs over the internet or network using HTTP, providing real data/responses. ✅ Microservices is an architectural style where these services (API + implementation) are split into small, independent parts, each doing one specific task and running independently, often communicating via APIs. ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ Spring  It helps Java developers build large applications easily by using features like: Dependency Injection (DI) – to reduce tight coupling between classes Aspect-Oriented Programming (AOP) – to separate common tasks (like logging, security) from business logic Spring Core provides the foundation that other Spring modules (like Spring MVC, Spr...

Angular RoadMap_Beginner

Image
 Before learning Angular it is better, you should know about these beginner concepts.

BigData Overview for Beginner

This gives you an Overview of Big Data. Click on BigData Overview For Access firstly you have to sign in with your email ID. BigData Overview

Python course for Beginner

Python Journey with ease!  Access my beginner's course through this link for a comprehensive dive into Python programming fundamentals. click on Python for beginners. For Access firstly you have to sign in with your email ID. Python for beginner

DSA Complexity Degree Least to High

Image
Path to learn Data Structure from LeetCode -  https://leetcode.com/explore/learn/card/the-leetcode-beginners-guide/679/sql-syntax/4358/ https://docs.google.com/spreadsheets/d/1A9-D3UxwTEKvPfpc3UBbIc2fGASy5o9U/edit?usp=drive_link&ouid=110493355260742901897&rtpof=true&sd=true

Oops notes

JAVA is both compiled and an interpreted language, JDM.

Image
 Java can be considered both a compiled (javac ) and an interpreted language because its source code is first compiled into a binary byte code. This byte code runs on the Java Virtual Machine (JVM), which is usually a software-based interpreter. Every high-level language code, like Java, needs to be translated to machine-native code for execution. This translation process can be either compilation or interpretation. The JVM converts that code into machine code using the Java interpreter. The JVM uses the interpreter at runtime, after that, it executes the code on the host machine. As the Java compiler compiles the source code into the Java bytecode.