RMRahul Maneinimrahulmane.hashnode.dev·Jul 12, 2021 · 5 min readIntroduction to MongoDB with CRUD OperationsTable Content: What is MongoDB? Mapping of SQL terminology to NoSQL terminology. What is mean by CRUD operation? CRUD Operations. What is MongoDB? A MongoDB is an open-source NoSQL database. NoSQL database means we can store different documents hav...00
RMRahul Maneinimrahulmane.hashnode.dev·Jul 5, 2021 · 3 min readA Brief Introduction to HTTP MethodsTable of contents What is HTTP Request? HTTP Methods Ever wonder what happens when you search for something on Google. Let's say you search YouTube.com on Google. As soon as you hit YouTube.com on google, you make a request to the server. In simple...00
RMRahul Maneinimrahulmane.hashnode.dev·Jun 28, 2021 · 3 min readBrief Introduction to HTTP Status CodesTable of Contents What is HTTP Status Code? Classes of HTTP Status Codes But, what is an HTTP Status Code? When you make a request to the server, it returns something. For example, when you search hashnode.com the server will return the response wi...00
RMRahul Maneinimrahulmane.hashnode.dev·Jun 20, 2021 · 4 min readDifferent types of Inheritance in PythonTable of Contents What is inheritance. Types of inheritance in Python Single Inheritance Multiple Inheritance Multilevel Inheritance Hierarchical Inheritance What is Inheritance? One of the most important aspects of Object-Oriented Programming is I...00
RMRahul Maneinimrahulmane.hashnode.dev·Jun 13, 2021 · 2 min readBasic Terminologies of OOP in Python.Table of Contents Class Object Methods Class Variables Class A class is a blueprint for creating objects, providing initial values for state and implementation of a behavior. Example: class Dog: pass Here, we have created an empty dog class. Ea...00