SlideShare a Scribd company logo
1 of 95
www.edureka.in/mongodbSlide 1
®
www.edureka.in/mongodbSlide 2
 Module 1
 Introduction and Overview
 No SQL
 Module 2
 CRUD Operations
 CRUD Concerns
 Module 3
 Schema Design and Data Modeling
 Comparison with Relational Systems
 Module 4
 Administration
 Backup and Recovery
 Module 5
 Scalability and Availability
 Replication and Sharding
 Module 6
 Indexing and Aggregation Frame work
 Performance Tuning
 Module 7
 Application Engineering and Mongo DB Tools
 Interface with Other Language
 Module 8
 Project, Additional Concepts and Cases Studies
MongoDB Course Topics
www.edureka.in/mongodbSlide 3
MongoDB Course
Module 01 : Design Goals, Architecture and Installation
www.edureka.in/mongodbSlide 4
How it Works….
 Online Instructor–led Live classes
 Class Recordings in Learning Management System (LMS)
 Module–wise Quizzes and Practical Assignments
 24x7 On–demand Technical Support
 Project Based Verifiable Graded Certificate
 Lifetime Access to the Learning Management System
www.edureka.in/mongodbSlide 5
Topics of the Day
Database Categories
Mongo DB Overview
Design Goals for MongoDB Server and Database
Mongo DB Tools
Introduction to JSON and BSON
Installation of MongoDB on Windows, Linux, MAC,OS etc.
Environment Setup for MongoDB
www.edureka.in/mongodbSlide 6
RDBMS/OLTP/Real Time
NoSQL/New SQL/BigData
OLAP/DSS/DW
Oracle
MySQL
MS SQL
DB2
Etc.
Netezza
SAP Hanna
Oracle Express
Etc.
MongoDB
Hbase
Cassandra
CauchDB
Etc.
Database Categories
www.edureka.in/mongodbSlide 7
RDBMS/OLTP/Real Time
Oracle
MySQL
MS SQL
DB2
Etc.
Online Sales
App
ATM
Transaction
Retail
Transaction
Others
OLTP Database
www.edureka.in/mongodbSlide 8
Oracle
SQL Server
MySQL
DB2
OLAP/DSS/DW
Netezza
SAP Hanna
Oracle Express
Etc.
OLTP Database
www.edureka.in/mongodbSlide 9
NoSQL/New SQL/BigData
Oracle
SQL Server
MySQL
DB2
OLAP/DSS/DW
Netezza
SAP Hanna
Oracle Express
Etc.
MongoDB
Hbase
Cassandra
CauchDB
Etc.
NoSQL Databses
Online
Sales App
Retail
Transaction
Others
www.edureka.in/mongodbSlide 10
Next Generation Databases Not Only SQL Non – Relational
Distributed Architecture Open Source Horizontally Scalable
What is NoSQL?
www.edureka.in/mongodbSlide 11
Schema - Free Easy – Replication Simple API
Can Manage Huge
Amount of Data
Can be implement on
Commodity Hardware's
~ 150 No SQL Database
are there in Market
Schema – Free !
~150
What is NoSQL?
www.edureka.in/mongodbSlide 12
Nature of Data Application Development
(high coding velocity & agility)
Why NoSQL?
www.edureka.in/mongodbSlide 13
Operational Issues
(scale, performance, high availability)
Why NoSQL?
www.edureka.in/mongodbSlide 14
Data Warehousing and Analytics
Why NoSQL?
www.edureka.in/mongodbSlide 15
 Large volumes of structured, semi-structured, and unstructured data
Benefit of NoSQL
www.edureka.in/mongodbSlide 16
 Agile development, quick changes, and frequent code pushes
Benefit of NoSQL
Scrum
Design
Many More…
Feature
Driven
Development
Extreme
Programming
Agile
Methodologies
www.edureka.in/mongodbSlide 17
 Object-oriented programming that is easy to use and flexible
 Horizontal scaling instead of expensive hardware's
Benefit of NoSQL
www.edureka.in/mongodbSlide 18
Graph
Store
Key –
value
Stores
Wide
Column
Stores%
Document
Base
 Document databases pair each key with a complex
data structure known as a document.
 Documents can contain many different key-value
pairs, or key-array pairs, or even nested documents.
 Graph stores are used to store information about
networks, such as social connections.
 Graph stores include Neo4J and HyperGraphDB.
 Key-value stores are the simplest NoSQL
databases.
 Every single item in the database is stored as an
attribute name (or "key"), together with its value.
 Wide-column stores such as Cassandra and
HBase are optimized for queries over large
datasets, and store columns of data together,
instead of rows.
Categories of NoSQL Database
www.edureka.in/mongodbSlide 19
Key Value
Store
Memcached
Coherence
Redis
Tabular
Big Table
Hbase
Accumulo
Document
Oriented
MongoDB
Couch DB
Cloudant
Graph Stores
Neo4J
Oracle NoSQL
HyperGraphDB
Type of No SQL Databases
www.edureka.in/mongodbSlide 20
Entity SQL Databases NoSQL Databases
Type One Type (SQL) with Minor Variation Many Types (Document, Ke-Value, Tabular, Graph)
Development 1970 2000
Examples Oracle, MSSQL, DB2 etc. MongoDB, Cassandra, Hbase, Neo4J
Schemas Fixed Dynamic
Scaling Vertical Horizontal
Dev Model Mix Open Source
Consistency Follow ACID Follow BASE
NoSQL vs. SQL Comparison
www.edureka.in/mongodbSlide 21
ACID Property
Atomic
 A transaction is a logical unit
of work which must be either
completed with all of its data
modifications, or none of
them is performed.
Consistent
 At the end of the transaction,
all data must be left in a
consistent state.
Isolated
 Modifications of data
performed by a transaction
must be independent of
another transaction. Unless
this happens, the outcome of
a transaction may be
erroneous.
Durable
 When the transaction is
completed, effects of the
modifications performed by
the transaction must be
permanent in the system.
Durable
Isolated
SQL Databases (ACID Property)
www.edureka.in/mongodbSlide 22
We must understand the CAP
theorem when we talk about
NoSQL databases or in fact
when designing any distributed
system.
CAP theorem states that there are 3 basic requirements which exist in a special relation when designing
applications for a distributed architecture.
Consistency
Availability
Partition
Tolerance
Cap Theorem
This means that the system is always on (service guarantee
availability), no downtime.
This means that the system continues to function even the
communication among the servers is unreliable, i.e. the servers
may be partitioned into multiple groups that cannot communicate
with one another.
This means that the data in the database remains consistent after
the execution of an operation. For example after an update
operation all clients see the same data.
www.edureka.in/mongodbSlide 23
 In theoretically it is impossible to fulfill all 3 requirements.
 CAP provides the basic requirements for a distributed system
to follow 2 of the 3 requirements.
 Therefore all the current NoSQL database follow the different
combinations of the C, A, P from the CAP theorem.
Cap Theorem
www.edureka.in/mongodbSlide 24
 CA - Single site cluster, therefore all nodes are always
in contact. When a partition occurs, the system blocks.
 CP - Some data may not be accessible, but the rest is
still consistent/accurate.
 AP - System is still available under partitioning, but
some of the data returned may be inaccurate.
Here is the brief description of three combinations CA, CP, AP :
Cap Theorem
www.edureka.in/mongodbSlide 25
 Basically Available indicates that the system does guarantee availability, in terms of
the CAP theorem.
Basically Available
 Soft State indicates that the state of the system may change over time, even without
input. This is because of the eventual consistency model.
Soft State
 Eventual Consistency indicates that the system will become consistent over time,
given that the system doesn't receive input during that time.
Eventual Consistency
A BASE system gives up on consistency.
BASE
www.edureka.in/mongodbSlide 26
Hello There!!
My name is Annie.
I love quizzes and
puzzles and I am here to make
you guys think and answer my
questions.
Annie’s Introduction
www.edureka.in/mongodbSlide 27
Annie’s Question
Map the following to corresponding data bases:
MongoDB
Neo4J
Cassandra
Hbase
www.edureka.in/mongodbSlide 28
Annie’s Answer
MongoDB  Document Oriented Database
Neo4J  Graph Database
Cassandra  Columnar Database
Hbase  Tabular Database
www.edureka.in/mongodbSlide 29
Structured Data
Text, Log Files,
Click Streams,
Blogs, Tweets,
Audio, Video,
etc
Unstructured and
Semi–structured Data
NoSQL vs. SQL Comparison
www.edureka.in/mongodbSlide 30
Right Data Model
Pros and Cons of Consistent
Compromising
Features of RDBMS
Step 2
Step 3
Before Selection and Implementation of NoSQL
Step 1
www.edureka.in/mongodbSlide 31
NoSQL Landscape
www.edureka.in/mongodbSlide 32
Annie’s Question
Which concept is followed by NoSql, chose from
below list
1 ACIS
2 CAP
3 BASE
www.edureka.in/mongodbSlide 33
Annie’s Answer
BASE
www.edureka.in/mongodbSlide 34
MongoDB Overview
MongoDB Overview
www.edureka.in/mongodbSlide 35
Mongo DB is an Open-source
database.
Developed by 10gen, for a wide
variety of applications.
It is an agile database that
allows schemas to change
quickly as applications evolve.
Scalability, High Performance and
Availability.
By leveraging in-memory computing. MongoDB’s native replication
and automated failover enable
enterprise-grade reliability and
operational flexibility.
MongoDB Overview
Overview
www.edureka.in/mongodbSlide 36
New Apps New Development Methods New Data Volumes
New Architectures New Data Types
Create
ReleaseEvolve
Involve
New World
www.edureka.in/mongodbSlide 37
Open Source Document Oriented Storage Object Oriented
Written in C++ Easy to Use Full Index Support
What is MongoDB?
www.edureka.in/mongodbSlide 38
Replication and High Availability Auto Sharding Easy Query
Map Reduce Gird FS Support from Expert
What is MongoDB?
MongoDB Replica set
Application
www.edureka.in/mongodbSlide 39
Key MongoDB
Features
Flexibility
Power
Easy to Use
Speed
/Scalling
Key MongoDB Features
www.edureka.in/mongodbSlide 40
Built-In
Replication for
High Availability
Drivers: 13
MongoDB-Supported
Drivers; 37
Community-
Supported
Drivers
Hadoop
Integration
Aggregation
Framework &
Native
MapReduce
Rich Secondary
Indexes,
including
geospatial and
TTL indexes
Auto-Sharding
for Horizontal
Scalability
JSON Data
Model with
Dynamic
Schemas
MongoDB Features
www.edureka.in/mongodbSlide 41
Applications
Analytical Tools, BI Apps, Mobile Apps, CRM, ERP etc.
Data Management
Online Data Offline Data
Infrastructure
OS & Virtualization, Storage, Network etc.
Management&Monitoring
Security&Auditing
Mongo
dMongo
dMongod
RDMS
RDMS
RDMS
DWDWEDW
MongoDB High Level Architecture
www.edureka.in/mongodbSlide 42
Annie’s Question
Which kind of data can be processed with MongoDB,
choose from below option
1 Online Data
2 Offline Data
3 Both
www.edureka.in/mongodbSlide 43
Annie’s Answer
Both
www.edureka.in/mongodbSlide 44
MongoDB Licensing
Free software Foundation’s Commercial Licenses
MongoDB
MongoDB
Enterprise
MongoDB Licensing
www.edureka.in/mongodbSlide 45
 MongoDB Enterprise is the commercial edition of MongoDB that provides
enterprise-grade capabilities.
 MongoDB Enterprise includes advanced security features, management
tools, software integrations and certifications.
 These value-added capabilities are not included in the open-source
edition of MongoDB.
MongoDB Enterprise
www.edureka.in/mongodbSlide 46
MongoDB
Enterprise
Certified
OS
Support
Advanced
Security
On-demand
Training
Enterprise
Software
Integration
Management
MongoDB Enterprise Includes
www.edureka.in/mongodbSlide 47
Features MongoDB MongoDB Enterprise
JSON Data Model with Dynamic Schemas • •
Auto-Sharding for Horizontal Scalability • •
Built-In Replication and High Availability • •
Full, Flexible Index Support • •
Rich Document Queries • •
Fast In-Place Updates • •
Aggregation Framework and MapReduce • •
Large Media Storage with GridFS • •
Text Search • •
Cloud, On-Premise and Hybrid Deployments • •
Role-Based Privileges • •
Advanced Security with Kerberos •
On-Prem Management •
SNMP Support •
OS Certifications •
Private On-Demand Training •
MongoDB Enterprise Includes
www.edureka.in/mongodbSlide 48
Use Cases
Mobile and
Social
Infrastructure
Content
Management
Big Data
Customer
Data
Management
Data Hub
Use Cases
www.edureka.in/mongodbSlide 49
Annie’s Question
Can you give example of Big Data?
www.edureka.in/mongodbSlide 50
Annie’s Answer
1. Facebook ingests 500 terabytes of new data
every day.
2. A Boeing 737 will generate 240 terabytes of
flight data during a single flight across the US.
www.edureka.in/mongodbSlide 51
Few MongoDB Clients
www.edureka.in/mongodbSlide 52
 Metlife uses MongoDB for “The Wall” an innovative customer service application
provides a 360-degree, consolidated view of MetLife customers, including policy
details and transactions across lines of business.
 ebay has a number of projects running on MongoDB for search suggestions,
metadata storage, cloud management and merchandizing categorization.
 MongoDB is the repository that powers MTV Networks’ next-generation CMS,
which is used to manage and distribute content for all of MTV Networks’ major
websites.
 MongoDB is used for back-end storage on the SourceForge front pages, project
pages, and download pages for all projects.
 Craigslist uses MongoDB to archive billions of records.
 ADP uses MongoDB for its high performance, scalability, reliability and its ability to
preserve the data manipulation capabilities of traditional relational databases.
Few MongoDB Clients
www.edureka.in/mongodbSlide 53
 CNN Turk uses MongoDB for its infrastructure and content management system,
including the tv.cnnturk.com.
 Foursquare uses MongoDB to store venues and user ‘check-ins’ into venues,
sharding the data over more than 25 machines on Amazon EC2.
 Justin.tv is the easy, fun, and fast way to share live video online. MongoDB
powers Justin.tv’s internal analytics tools for virality, user retention, and general
usage stats that out-of-the-box solutions can’t provide.
 ibibo (‘I build, I bond’) is a social network using MongoDB for its dashboard
feeds. Each feed is represented as a single document containing an average of
1000 entries; the site currently stores over two million of these documents in
MongoDB.
Few MongoDB Clients
www.edureka.in/mongodbSlide 54
Industry /Domains Where MongoDB is Used
Government Financial Services
Media and Entertainment RetailTele-communications
Healthcare
www.edureka.in/mongodbSlide 55
 Risk Analytics and Reporting
 Reference Data Management
 Market Data Management
 Portfolio Management
 Order Capture
 Time Series Data
Financial Services
www.edureka.in/mongodbSlide 56
 Surveillance Data Aggregation
 Crime Data Management and Analytics
 Citizen Engagement Platform
 Program Data Management
 Healthcare Record Management
Government
www.edureka.in/mongodbSlide 57
 360-Degree Patient View
 Population Management for At-Risk Demographics
 Lab Data Management and Analytics
 Mobile Apps for Doctors and Nurses
 Electronic Healthcare Records (EHR)
Health Care
www.edureka.in/mongodbSlide 58
 Content Management and Delivery
 User Data Management
 Digital Asset Management
 Mobile and Social Apps
 Content Archiving
Media and Entertainment
www.edureka.in/mongodbSlide 59
 Rich Product Catalogs
 Customer Data Management
 New Services
 Digital Coupons
 Real-Time Price Optimization
Retail
www.edureka.in/mongodbSlide 60
 Consumer Cloud
 Product Catalog
 Customer Service Improvement
 Machine-to-Machine (M2M) Platform
 Real-Time Network Analysis and Optimization
Telecommunication
www.edureka.in/mongodbSlide 61
MongoDB Tools
MongoDB Tools
www.edureka.in/mongodbSlide 62
 mongod
 mongos
 mongo
 mongod.exe
 mongos.exe
 mongodump
 mongorestore
 bsondump
 mongooplog
 mongoimport
 mongoexport
 mongostat
 mongotop
 mongosniff
 mongoperf
 mongofiles
MongoDB Package Components
www.edureka.in/mongodbSlide 63
Core
Processes
mongod mongos mongo
Windows
Services
mongod.exe mongos.exe
Binary
Import and
Export Tools
mongodump mongorestore bsondump mongooplog
Data Import
and Export
Tools
mongoimport mongoexport
Diagnostic
Tools
mongostat mongotop mongosniff mongoperf
GridFS mongofiles
MongoDB Package Components ( Tools)
www.edureka.in/mongodbSlide 64
Annie’s Question
Which binary do we use for Data Import & Export?
www.edureka.in/mongodbSlide 65
Annie’s Answer
mongoimport & mongoexport
www.edureka.in/mongodbSlide 66
Annie’s Question
Which binary do we use for backup & recovery?
www.edureka.in/mongodbSlide 67
Annie’s Answer
mongodump & mongorestore
www.edureka.in/mongodbSlide 68
Annie’s Question
Which binary do we use to process large files?
www.edureka.in/mongodbSlide 69
Annie’s Answer
mongofiles
www.edureka.in/mongodbSlide 70
 Mongod is the primary daemon process for the MongoDB system.
 Database is a physical container for collections.
 Each database gets its own set of files on the file system.
 A single MongoDB server typically has multiple databases.
 It handles data requests, manages data format, and performs
background management operations.
mongod
MongoDB Database
www.edureka.in/mongodbSlide 71
 Collection is a group of MongoDB documents.
 It is the equivalent of an RDBMS table.
 A collection exists within a single database.
 Collections do not enforce a schema.
 Documents within a collection can have different fields.
 Typically, all documents in a collection are of similar or
related purpose.
mongod
Collection 1
Collection 2
Collection 3
Collection 4
Collection 5
Collection
……..n
MongoDB Collection
www.edureka.in/mongodbSlide 72
 A document is a set of key-value pairs.
 Documents have dynamic schema.
Collection 1
Collection 2
Collection 3
Collection 4
DOC 1
DOC 4DOC 5DOC 6
DOC 2DOC 3 DOC 7DOC 8DOC 9
DOC 10DOC 11DOC 12
MongoDB Document
www.edureka.in/mongodbSlide 73
{
_id: ObjectId(7df78ad8902c)
title: 'edureka',
description: 'Leading Training Provider Across Glob',
by: 'edureka',
url: 'http://www.edureka.in',
tags: ['mongodb', 'database', 'NoSQL'],
likes: 100,
comments: [
{
user:'user1',
message: 'My first comment',
dateCreated: new Date(2011,1,20,2,15),
like: 0
},
{
user:'user2',
message: 'My second comments',
dateCreated: new Date(2011,1,25,7,45),
like: 5
}
]
}
MongoDB Sample Document
www.edureka.in/mongodbSlide 74
RDBMS MongoDB
Database Database
Table Collection
Tuple/Row Document
Column/Attribute/Variable Field
Table Join Embedded Documents
Database Server and Client
Primary Key
Primary Key (Default key _id provided by mongodb
itself)
Mysqld/Oracle mongod
mysql/sqlplus mongo
RDBMS Terminology with MongoDB
www.edureka.in/mongodbSlide 75
Annie’s Question
Can we join 2 or more documents to get desired
outcome in MongoDB ?
www.edureka.in/mongodbSlide 76
Annie’s Answer
Yes, Through linking we can do
www.edureka.in/mongodbSlide 77
Introduction to JSON and BSON
Introduction to JSON and BSON
www.edureka.in/mongodbSlide 78
JavaScript Object
Notation
JSON Abbreviation Lightweight data-
interchange format
Easy for humans
to read and write
Easy for machines to
parse and generate
Text format that is
completely language
independent
JSON
www.edureka.in/mongodbSlide 79
A collection of
name/value
pairs
An ordered
list of values
JSON
Structure
Object
Array
JSON
www.edureka.in/mongodbSlide 80
JSON
www.edureka.in/mongodbSlide 81
Binary JavaScript
Object Notation
BJSON Abbreviation Supports the embedding of
documents and arrays within
other documents and arrays
Easy for machines to
parse and generate
Text format that is completely
language independent
Contains extensions that allow
representation of data types that
are not part of the JSON spec
BSON
www.edureka.in/mongodbSlide 82
Annie’s Question
What is difference in JSON & BSON ?
www.edureka.in/mongodbSlide 83
Annie’s Answer
JSON Java Script Object Notation
BSON Binary JSON (Represents JSON Data in
Binary Format)
www.edureka.in/mongodbSlide 84
MongoDB Installation – Live Demo
MongoDB Installation – Live Demo
www.edureka.in/mongodbSlide 85
 Running MongoDB on Windows
 Installation of MongoDB on Windows as a Service
 Running of MongoDB on Linux (CentOS)
 Installation of MongoDB on CentOS
MongoDB Installation – Live Demo
www.edureka.in/mongodbSlide 86
Your Questions
www.edureka.in/mongodbSlide 87
 More on MongoDB
http://docs.mongodb.org/manual/
http://www.tutorialspoint.com/mongodb/
http://en.wikipedia.org/wiki/MongoDB
 Connection with PHP to MongoDB
http://www.php.net/manual/en/mongo.tutorial.connecting.php
 NoSQL Databases
http://www.w3resource.com/mongodb/nosql.php
http://www.dataversity.net/acid-vs-base-the-shifting-ph-of-database-transaction-
processing/
 Big Data
http://en.wikipedia.org/wiki/Big_Data
Further Reading
www.edureka.in/mongodbSlide 88
Tasks for you
Attempt the following Assignments using the documents present in the LMS:
Write a JSON document which can have all data types supported by JSON?
What all core differences are there in MongoDB, Hadoop, HBase and Cassandra?
How can you define Horizontal & Vertical Scalability?
Can we design a Social Media App with MongoDB, if yes then how?
To design a content management system what all databases can be used and why?
I want to create a solution for Data Hub and I have choice of MySQL, Hadoop, Cassandra,
MongoDB, HBase, which one is more suitable and why?
What is Online & Offline Big Data?
What is Agility, What is tailored and elastic?
Assignments
www.edureka.in/mongodbSlide 89
MongoDB Installation on Windows or MongoDB Installation
on Centos
Generate Test Data on MongoDB Database
Execute all Module1 Script present in LMS
Read FAQ Module1 in LMS
Read FAQ Module1 in LMS
Take Quiz in LMS
Complete Assignment
Pre-work: Module 2
www.edureka.in/mongodbSlide 90
Agenda of Next Class
 MongoDB Development Overview
 MongoDB Production Overview
 MongoDB CRUD Introduction
 MongoDB CRUD Concepts
 MongoDB CRUD Syntax & Queries
Module 2
CRUD Operations
www.edureka.in/mongodbSlide 91
This section will
give you an
insight of
MongoDB
course
Old Batch
recordings –
Handy for you
What’s within the LMS
www.edureka.in/mongodbSlide 92
What’s within the LMS
Click here to
expand and view
all the elements
of this Module
www.edureka.in/mongodbSlide 93
What’s within the LMS
Recording of the
Class
Presentation
Hands-on Guides
www.edureka.in/mongodbSlide 94
Assignment
What’s within the LMS
Further Reading
Pre-work
Quiz
Scripts
FAQ
Thank You
See You in Class Next Week

More Related Content

What's hot

Introducing MongoDB Atlas
Introducing MongoDB AtlasIntroducing MongoDB Atlas
Introducing MongoDB AtlasMongoDB
 
An Enterprise Architect's View of MongoDB
An Enterprise Architect's View of MongoDBAn Enterprise Architect's View of MongoDB
An Enterprise Architect's View of MongoDBMongoDB
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDBMongoDB
 
NoSQL databases - An introduction
NoSQL databases - An introductionNoSQL databases - An introduction
NoSQL databases - An introductionPooyan Mehrparvar
 
Mongodb basics and architecture
Mongodb basics and architectureMongodb basics and architecture
Mongodb basics and architectureBishal Khanal
 
Introduction to MongoDB.pptx
Introduction to MongoDB.pptxIntroduction to MongoDB.pptx
Introduction to MongoDB.pptxSurya937648
 
NOSQL Database: Apache Cassandra
NOSQL Database: Apache CassandraNOSQL Database: Apache Cassandra
NOSQL Database: Apache CassandraFolio3 Software
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDBNodeXperts
 
MongoDB Atlas
MongoDB AtlasMongoDB Atlas
MongoDB AtlasMongoDB
 
PostgreSQL Database Slides
PostgreSQL Database SlidesPostgreSQL Database Slides
PostgreSQL Database Slidesmetsarin
 
MongoDB at Scale
MongoDB at ScaleMongoDB at Scale
MongoDB at ScaleMongoDB
 
Mongodb - NoSql Database
Mongodb - NoSql DatabaseMongodb - NoSql Database
Mongodb - NoSql DatabasePrashant Gupta
 
Sharding Methods for MongoDB
Sharding Methods for MongoDBSharding Methods for MongoDB
Sharding Methods for MongoDBMongoDB
 
NOSQL Databases types and Uses
NOSQL Databases types and UsesNOSQL Databases types and Uses
NOSQL Databases types and UsesSuvradeep Rudra
 
Introduction to NoSQL Databases
Introduction to NoSQL DatabasesIntroduction to NoSQL Databases
Introduction to NoSQL DatabasesDerek Stainer
 

What's hot (20)

Introducing MongoDB Atlas
Introducing MongoDB AtlasIntroducing MongoDB Atlas
Introducing MongoDB Atlas
 
An Enterprise Architect's View of MongoDB
An Enterprise Architect's View of MongoDBAn Enterprise Architect's View of MongoDB
An Enterprise Architect's View of MongoDB
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDB
 
NoSQL databases - An introduction
NoSQL databases - An introductionNoSQL databases - An introduction
NoSQL databases - An introduction
 
Mongodb basics and architecture
Mongodb basics and architectureMongodb basics and architecture
Mongodb basics and architecture
 
Introduction to MongoDB.pptx
Introduction to MongoDB.pptxIntroduction to MongoDB.pptx
Introduction to MongoDB.pptx
 
NoSQL databases
NoSQL databasesNoSQL databases
NoSQL databases
 
NOSQL Database: Apache Cassandra
NOSQL Database: Apache CassandraNOSQL Database: Apache Cassandra
NOSQL Database: Apache Cassandra
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDB
 
MongoDB Atlas
MongoDB AtlasMongoDB Atlas
MongoDB Atlas
 
Mongo DB
Mongo DB Mongo DB
Mongo DB
 
Mongo db intro.pptx
Mongo db intro.pptxMongo db intro.pptx
Mongo db intro.pptx
 
PostgreSQL Database Slides
PostgreSQL Database SlidesPostgreSQL Database Slides
PostgreSQL Database Slides
 
MongoDB at Scale
MongoDB at ScaleMongoDB at Scale
MongoDB at Scale
 
Mongodb - NoSql Database
Mongodb - NoSql DatabaseMongodb - NoSql Database
Mongodb - NoSql Database
 
Sharding Methods for MongoDB
Sharding Methods for MongoDBSharding Methods for MongoDB
Sharding Methods for MongoDB
 
Introduction to NoSQL
Introduction to NoSQLIntroduction to NoSQL
Introduction to NoSQL
 
NOSQL Databases types and Uses
NOSQL Databases types and UsesNOSQL Databases types and Uses
NOSQL Databases types and Uses
 
Introduction to NoSQL Databases
Introduction to NoSQL DatabasesIntroduction to NoSQL Databases
Introduction to NoSQL Databases
 
Postgresql
PostgresqlPostgresql
Postgresql
 

Similar to Mongo DB

Build Application With MongoDB
Build Application With MongoDBBuild Application With MongoDB
Build Application With MongoDBEdureka!
 
A Seminar on NoSQL Databases.
A Seminar on NoSQL Databases.A Seminar on NoSQL Databases.
A Seminar on NoSQL Databases.Navdeep Charan
 
nosql [Autosaved].pptx
nosql [Autosaved].pptxnosql [Autosaved].pptx
nosql [Autosaved].pptxIndrani Sen
 
Introduction to MongoDB and its best practices
Introduction to MongoDB and its best practicesIntroduction to MongoDB and its best practices
Introduction to MongoDB and its best practicesAshishRathore72
 
Modern databases and its challenges (SQL ,NoSQL, NewSQL)
Modern databases and its challenges (SQL ,NoSQL, NewSQL)Modern databases and its challenges (SQL ,NoSQL, NewSQL)
Modern databases and its challenges (SQL ,NoSQL, NewSQL)Mohamed Galal
 
Introduction to NoSQL
Introduction to NoSQLIntroduction to NoSQL
Introduction to NoSQLbalwinders
 
MongoDB Lab Manual (1).pdf used in data science
MongoDB Lab Manual (1).pdf used in data scienceMongoDB Lab Manual (1).pdf used in data science
MongoDB Lab Manual (1).pdf used in data sciencebitragowthamkumar1
 
NoSQL - 05March2014 Seminar
NoSQL - 05March2014 SeminarNoSQL - 05March2014 Seminar
NoSQL - 05March2014 SeminarJainul Musani
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDBEdureka!
 
NOSQL- Presentation on NoSQL
NOSQL- Presentation on NoSQLNOSQL- Presentation on NoSQL
NOSQL- Presentation on NoSQLRamakant Soni
 
NOSQL in big data is the not only structure langua.pdf
NOSQL in big data is the not only structure langua.pdfNOSQL in big data is the not only structure langua.pdf
NOSQL in big data is the not only structure langua.pdfajajkhan16
 
SQL vs MongoDB
SQL vs MongoDBSQL vs MongoDB
SQL vs MongoDBcalltutors
 
Quantitative Performance Evaluation of Cloud-Based MySQL (Relational) Vs. Mon...
Quantitative Performance Evaluation of Cloud-Based MySQL (Relational) Vs. Mon...Quantitative Performance Evaluation of Cloud-Based MySQL (Relational) Vs. Mon...
Quantitative Performance Evaluation of Cloud-Based MySQL (Relational) Vs. Mon...Darshan Gorasiya
 
3170722_BDA_GTU_Study_Material_Presentations_Unit-3_29092021094744AM.pdf
3170722_BDA_GTU_Study_Material_Presentations_Unit-3_29092021094744AM.pdf3170722_BDA_GTU_Study_Material_Presentations_Unit-3_29092021094744AM.pdf
3170722_BDA_GTU_Study_Material_Presentations_Unit-3_29092021094744AM.pdfKrishnaShah908060
 
MONGODB VS MYSQL: A COMPARATIVE STUDY OF PERFORMANCE IN SUPER MARKET MANAGEME...
MONGODB VS MYSQL: A COMPARATIVE STUDY OF PERFORMANCE IN SUPER MARKET MANAGEME...MONGODB VS MYSQL: A COMPARATIVE STUDY OF PERFORMANCE IN SUPER MARKET MANAGEME...
MONGODB VS MYSQL: A COMPARATIVE STUDY OF PERFORMANCE IN SUPER MARKET MANAGEME...ijcsity
 

Similar to Mongo DB (20)

NoSQL Basics and MongDB
NoSQL Basics and  MongDBNoSQL Basics and  MongDB
NoSQL Basics and MongDB
 
Build Application With MongoDB
Build Application With MongoDBBuild Application With MongoDB
Build Application With MongoDB
 
NOSQL
NOSQLNOSQL
NOSQL
 
A Seminar on NoSQL Databases.
A Seminar on NoSQL Databases.A Seminar on NoSQL Databases.
A Seminar on NoSQL Databases.
 
nosql [Autosaved].pptx
nosql [Autosaved].pptxnosql [Autosaved].pptx
nosql [Autosaved].pptx
 
Introduction to MongoDB and its best practices
Introduction to MongoDB and its best practicesIntroduction to MongoDB and its best practices
Introduction to MongoDB and its best practices
 
Modern databases and its challenges (SQL ,NoSQL, NewSQL)
Modern databases and its challenges (SQL ,NoSQL, NewSQL)Modern databases and its challenges (SQL ,NoSQL, NewSQL)
Modern databases and its challenges (SQL ,NoSQL, NewSQL)
 
Introduction to NoSQL
Introduction to NoSQLIntroduction to NoSQL
Introduction to NoSQL
 
MongoDB Lab Manual (1).pdf used in data science
MongoDB Lab Manual (1).pdf used in data scienceMongoDB Lab Manual (1).pdf used in data science
MongoDB Lab Manual (1).pdf used in data science
 
NoSQL - 05March2014 Seminar
NoSQL - 05March2014 SeminarNoSQL - 05March2014 Seminar
NoSQL - 05March2014 Seminar
 
Introduction to MongoDB
Introduction to MongoDBIntroduction to MongoDB
Introduction to MongoDB
 
NoSQL.pptx
NoSQL.pptxNoSQL.pptx
NoSQL.pptx
 
NOSQL- Presentation on NoSQL
NOSQL- Presentation on NoSQLNOSQL- Presentation on NoSQL
NOSQL- Presentation on NoSQL
 
NOSQL in big data is the not only structure langua.pdf
NOSQL in big data is the not only structure langua.pdfNOSQL in big data is the not only structure langua.pdf
NOSQL in big data is the not only structure langua.pdf
 
Erciyes university
Erciyes universityErciyes university
Erciyes university
 
SQL vs MongoDB
SQL vs MongoDBSQL vs MongoDB
SQL vs MongoDB
 
Quantitative Performance Evaluation of Cloud-Based MySQL (Relational) Vs. Mon...
Quantitative Performance Evaluation of Cloud-Based MySQL (Relational) Vs. Mon...Quantitative Performance Evaluation of Cloud-Based MySQL (Relational) Vs. Mon...
Quantitative Performance Evaluation of Cloud-Based MySQL (Relational) Vs. Mon...
 
No sql database
No sql databaseNo sql database
No sql database
 
3170722_BDA_GTU_Study_Material_Presentations_Unit-3_29092021094744AM.pdf
3170722_BDA_GTU_Study_Material_Presentations_Unit-3_29092021094744AM.pdf3170722_BDA_GTU_Study_Material_Presentations_Unit-3_29092021094744AM.pdf
3170722_BDA_GTU_Study_Material_Presentations_Unit-3_29092021094744AM.pdf
 
MONGODB VS MYSQL: A COMPARATIVE STUDY OF PERFORMANCE IN SUPER MARKET MANAGEME...
MONGODB VS MYSQL: A COMPARATIVE STUDY OF PERFORMANCE IN SUPER MARKET MANAGEME...MONGODB VS MYSQL: A COMPARATIVE STUDY OF PERFORMANCE IN SUPER MARKET MANAGEME...
MONGODB VS MYSQL: A COMPARATIVE STUDY OF PERFORMANCE IN SUPER MARKET MANAGEME...
 

More from Edureka!

What to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | EdurekaWhat to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | EdurekaEdureka!
 
Top 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | EdurekaTop 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | EdurekaEdureka!
 
Top 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | EdurekaTop 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | EdurekaEdureka!
 
Tableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | EdurekaTableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | EdurekaEdureka!
 
Python Programming Tutorial | Edureka
Python Programming Tutorial | EdurekaPython Programming Tutorial | Edureka
Python Programming Tutorial | EdurekaEdureka!
 
Top 5 PMP Certifications | Edureka
Top 5 PMP Certifications | EdurekaTop 5 PMP Certifications | Edureka
Top 5 PMP Certifications | EdurekaEdureka!
 
Top Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | EdurekaTop Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | EdurekaEdureka!
 
Linux Mint Tutorial | Edureka
Linux Mint Tutorial | EdurekaLinux Mint Tutorial | Edureka
Linux Mint Tutorial | EdurekaEdureka!
 
How to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| EdurekaHow to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| EdurekaEdureka!
 
Importance of Digital Marketing | Edureka
Importance of Digital Marketing | EdurekaImportance of Digital Marketing | Edureka
Importance of Digital Marketing | EdurekaEdureka!
 
RPA in 2020 | Edureka
RPA in 2020 | EdurekaRPA in 2020 | Edureka
RPA in 2020 | EdurekaEdureka!
 
Email Notifications in Jenkins | Edureka
Email Notifications in Jenkins | EdurekaEmail Notifications in Jenkins | Edureka
Email Notifications in Jenkins | EdurekaEdureka!
 
EA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | EdurekaEA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | EdurekaEdureka!
 
Cognitive AI Tutorial | Edureka
Cognitive AI Tutorial | EdurekaCognitive AI Tutorial | Edureka
Cognitive AI Tutorial | EdurekaEdureka!
 
AWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | EdurekaAWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | EdurekaEdureka!
 
Blue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | EdurekaBlue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | EdurekaEdureka!
 
Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka Edureka!
 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | EdurekaA star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | EdurekaEdureka!
 
Kubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | EdurekaKubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | EdurekaEdureka!
 
Introduction to DevOps | Edureka
Introduction to DevOps | EdurekaIntroduction to DevOps | Edureka
Introduction to DevOps | EdurekaEdureka!
 

More from Edureka! (20)

What to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | EdurekaWhat to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | Edureka
 
Top 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | EdurekaTop 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | Edureka
 
Top 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | EdurekaTop 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | Edureka
 
Tableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | EdurekaTableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | Edureka
 
Python Programming Tutorial | Edureka
Python Programming Tutorial | EdurekaPython Programming Tutorial | Edureka
Python Programming Tutorial | Edureka
 
Top 5 PMP Certifications | Edureka
Top 5 PMP Certifications | EdurekaTop 5 PMP Certifications | Edureka
Top 5 PMP Certifications | Edureka
 
Top Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | EdurekaTop Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | Edureka
 
Linux Mint Tutorial | Edureka
Linux Mint Tutorial | EdurekaLinux Mint Tutorial | Edureka
Linux Mint Tutorial | Edureka
 
How to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| EdurekaHow to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| Edureka
 
Importance of Digital Marketing | Edureka
Importance of Digital Marketing | EdurekaImportance of Digital Marketing | Edureka
Importance of Digital Marketing | Edureka
 
RPA in 2020 | Edureka
RPA in 2020 | EdurekaRPA in 2020 | Edureka
RPA in 2020 | Edureka
 
Email Notifications in Jenkins | Edureka
Email Notifications in Jenkins | EdurekaEmail Notifications in Jenkins | Edureka
Email Notifications in Jenkins | Edureka
 
EA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | EdurekaEA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | Edureka
 
Cognitive AI Tutorial | Edureka
Cognitive AI Tutorial | EdurekaCognitive AI Tutorial | Edureka
Cognitive AI Tutorial | Edureka
 
AWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | EdurekaAWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | Edureka
 
Blue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | EdurekaBlue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | Edureka
 
Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka
 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | EdurekaA star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
 
Kubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | EdurekaKubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | Edureka
 
Introduction to DevOps | Edureka
Introduction to DevOps | EdurekaIntroduction to DevOps | Edureka
Introduction to DevOps | Edureka
 

Recently uploaded

How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17Celine George
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the ClassroomPooky Knightsmith
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentationcamerronhm
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.MaryamAhmad92
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin ClassesCeline George
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701bronxfugly43
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxcallscotland1987
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Association for Project Management
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxVishalSingh1417
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSCeline George
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxEsquimalt MFRC
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 

Recently uploaded (20)

Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptx
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 

Mongo DB