Create an account in MongoDB atlas

Create an account in MongoDB atlas. Steps to create an account in MongoDB atlas 1 – Open the following link in your browser like chrome, edge then you get like the image displayed below. Link: https://www.mongodb.com/atlas/database 2 – Click on try for free which you… Read More

Working with databases in MongoDB Atlas

Working with databases in MongoDB Atlas After setting the databases with clusters, now one organization is created which contains projects and, in that project, we will have clusters. 1 – The organization name is displayed at the top left you can have multiple organisations. 2… Read More

Collection Management In MongoDB

Collection : It is a group of documents in a database.collection is like a table in a relational database. The database contains collections,collections contains documents and the documents contain data in it. Naming restriction for collections in MongoDB: 1. Collection name must begin with a… Read More

About JSON and BSON

About JSON and BSON Both JSON and BSON are data interchange formats used for the representation and transmission of data between applications. JSON: (Java script Object Notation) It is text based format that is lightweight and also human readable format. Based on the javascript syntax… Read More

Installation of MongoDB on Windows Operating System

Installation of MongoDB on Windows Operating SystemInstallation of MongoDB on Windows Operating System To download community version, follow these steps. → Click on the link https://www.mongodb.com/try/download/community. → In version section select the version of MongoDB to download. → In platform select windows. → In package… Read More

Introduction to MongoDB

Introduction to MongoDB MongoDB is an open and free NoSQL database management system. It is a document oriented database, i.e. it will store all the data in semi-structured Binary JSON like documents. Features of MongoDB Document Object Data Model: MongoDB stores the data as Binary… Read More

Control Flow In Python

CONTROL FLOW Decision making statements in programming languages decide the direction of the flow of program execution based on the given conditions. Python supports if, Elif used to decide the flow of execution. If statement: It is the basic decision-making statement, in this the code… Read More

Python – Datatypes

Python – Datatypes 👇👇👇👇 Please check the below link for the full document 👇👇👇👇 https://www.ktexperts.com/wp-content/uploads/2022/12/datatypes.pdf   Author    : Teja LinkedIn : https://www.linkedin.com/in/teja-sai-nadh-reddy-tatireddy-048882201 Thank you for giving your valuable time to read the above information. Please click here to subscribe for further updates KTExperts is… Read More

PYTHON INTRODUCTION

PYTHON INTRODUCTION WHAT IS PYTHON Python is a high-level, interpreted, interactive and object-oriented scripting language developed by Guido Van Rossum. Python is a powerful, flexible and easy to use scripting language. FEATURES OF PYTHON: Free & Open Source Python language is freely available at the… Read More