Selection SortSelection Sort is a sorting method that picks the smallest number from the list and puts it at the front. It keeps doing this until the whole list is sorted. Working of Selection Sort Set the first element as minimum. Compare minimum with the seco...Apr 8, 2025·3 min read
MongoDB Basics & CRUD OperationsMongoDB Basics As we know, that mongoDB is no sql database and it store in data in BSON documents. Here, BSON stands for binary representation of JSON documents, although BSON contains more data types as compared to JSON. Databases, collections, docu...Feb 4, 2024·8 min read
How to Setup MongoDB & Mongo Shell ?Installation or setup of MongoDB? You can install MongoDB using two different methods one is using MSI and another is using zip. Here, we will discuss how to install MongoDB using MSI, so you need to follow each step carefully: Steps to install Mong...Feb 3, 2024·4 min read
What is MongoDB database, its working, pros & cons and difference between MongoDB(NoSQL) and MySQL(RDBMS) ?What is MongoDB database ? MongoDB is a document-oriented NoSQL database system that provides high scalability, flexibility, and performance. Unlike standard relational databases, MongoDB stores data in a JSON document structure form. This makes it e...Jan 14, 2024·4 min read
CSS Grid LayoutWhat is CSS Grid? CSS Grid is a two-dimensional layout that you can use for creating responsive items on the web. The Grid items are arranged in columns, and you can easily position rows without having to mess around with the HTML code. Features of C...Dec 5, 2022·8 min read
CSS Media QueryMedia Query The Media query in CSS is used to create a responsive web design. It means that the view of a web page differs from system to system based on screen or media types. The breakpoint specifies for what device-width size, the content is just ...Dec 5, 2022·3 min read
CSS Box ModelThe Box Model When laying out a document, the browser's rendering engine represents each element as a rectangular box according to the standard CSS basic box model. CSS determines the size, position, and properties (color, background, border size, et...Dec 4, 2022·2 min read