NSNitish Srinivasainnitishs.hashnode.dev·Oct 19, 2024 · 2 min readExploring Backend Development with Java Spring Boot and MongoDBBuilding applications can be a rewarding experience, and this guide summarizes key concepts learned while working with Spring Boot and MongoDB. CRUD Functionalities: Implementing Create, Read, Update, and Delete operations is essential for managing ...00
NSNitish Srinivasainnitishs.hashnode.dev·Oct 16, 2024 · 2 min readREST APIs and JPAREST APIS REST → Representational State Transfer API → Application Programming Interfaces Http Verb: GET → To just get the data from a server and look at it PUT → To modify the data POST → To create new data DELETE → To delete data ORM ORM → Object R...00
NSNitish Srinivasainnitishs.hashnode.dev·Jul 22, 2024 · 4 min readExploring the Functions, Components, and Significance of Graphics Cards in Modern ComputingIntroduction to Graphics Cards Definition:A graphics card, also known as a video card or GPU (Graphics Processing Unit), is a piece of hardware responsible for rendering images, videos, and animations to the computer's display. It converts data into ...00
NSNitish Srinivasainnitishs.hashnode.dev·Feb 7, 2024 · 2 min readUnderstanding The Difference between 'repr()', 'str()' And 'print()' Functions In PythonWhen it comes to representing and showing data, Python's repr(), str(), and print() functions have diverse roles. Let's break down each one. 'repr()' The built-in function'repr()' in Python returns a string representation of an object. Its goal is ...01I
NSNitish Srinivasainnitishs.hashnode.dev·Jan 29, 2024 · 2 min readUnderstanding How Python Operates in Simple TermsPython is an interpreted language. Firstly a Python interpreter is used which is nothing but a Python software, and a script also called as a Python program is given to the interpreter. After the instructions in the Python program is completed, Pytho...00