NSNavjyot Singhinnavvsingh.hashnode.dev·Oct 21, 2022 · 3 min readHow different is Multithreading in Python and JavaIf you code and have working with Java and Python, you might have come across the term "thread". This is the concept of running a process on a single CPU core. While this may seem like a good idea initally, it can also be limiting as your applicatio...00
NSNavjyot Singhinnavvsingh.hashnode.dev·Jul 28, 2021 · 5 min readBasics about REST API’sREST or RESTful API is elaborated as Representational state transfer. It is designed to take full advantage of the existing protocols. While REST can be readily used with all the available protocols, it usually takes advantage of HTTP when used for W...00
NSNavjyot Singhinnavvsingh.hashnode.dev·Jul 8, 2021 · 3 min readAre there any similarities between Java and JavaScript? Is JavaScript derived from Java or vice versa?These are some of the common questions we generally encounter from people not from the tech field or new to the programming world. And for sure, this may be due to the presence of the word "Java" in both of them. So let's see if there's a similarity ...00
NSNavjyot Singhinnavvsingh.hashnode.dev·Jul 2, 2021 · 3 min readLets clear some doubts about HTTP, HTTP2 and WEBSOCKETSHTTP HTTP the acronym for Hypertext transfer protocol is an application layer protocol used for transmitting hypermedia documents, such as HTML. It was primarily designed for making the communication between web browsers and web servers, but it is n...00
NSNavjyot Singhinnavvsingh.hashnode.dev·Jun 14, 2021 · 9 min readMy go-to SQL guideWhat is the difference between DELETE and TRUNCATE statements? Answer- DELETE Delete command to used to perform delete operation on the row of a table It is a DML command It is comparatively slower than the truncate statement Users can roll back aft...00