SlideShare a Scribd company logo
SUBMITTEDBY:
NAME:T.ARIFABEGUM
CLASS:2NDM.SC.,COMPUTERSCIENCE
BATCH:2017–2019
INCHARGESTAFF:MS.M.FLORENCEDAYANA
You can have data without information , but you
cannot have information without data
OUTLINE
 Introduction
 Developmentandimprovement
 Whatismongodb?
 Whymongodb?
 Supportfordynamicqueries
 Storingbinarydata
 Whyreplication?
 Termsusedinrdbmsandmongodb
 Createdatabase
 Dropdatabase
 Datatypesinmongodb
INTRODUCTION
 Therelationaldatabasemodelhasprevailed fordecades.
 ToreplacetherelationalDB,newkindofdatabaseintheenterprisecalled
NoSQL(NOTONLYSQL).
 MongoDBisanopen-sourcedocument-baseddatabasemanagementtool
thatstoresdatainJSON-likeformats.
 Itisahighlyscalable,flexibleanddistributedNoSQLdatabase.
DEVELOPMENTANDIMPROVEMENT
 10gensoftwarecompanybegandevelopingMongoDBin2007asa
componentofaplannedplatformasaserviceproduct.
 In2009,thecompanyshiftedtoanopensourcedevelopmentmodel,withthe
companyofferingcommercialsupportandotherservices.
 In2013,10gensoftwarechangeditsnameintoMongoDB.
 OnOctober20,2017,MongoDBbecameapublicly-tradedcompany.
WHATISMONGODB?
 MongoDBis
 Crossplatform.
 Opensource.
 Nonrelational.
 Distributed.
 NoSQL.
 Documentorienteddatasource.
 NoSQLtools=itdoesnothaverowsandcolumnsforstoringdatalike
RDBMS.
 Architecture=builtoncollectionsofdocuments.
 Basicunitofdata=setofkey-valuepairs.
WHYMONGODB?
SQL:
 ThemajorchallengesinwithtraditionalRDBMSaredealingwith
largevolumesofdata
richvarietyofdata-particularlyunstructureddata,andmeetinguptothe
scaleneedsofenterprisedata.
 TheneedofDB:
 scalerequirement.
 flexibilitywithrespecttoSchema.
 faulttolerant-consistentandPartitiontolerant.
MongoDB:
 ThedatamodelthatMongoDBfollowsisahighlyelastic.
 MongoDBletsyoucombineandstoredataofmultivariatetypes.
 Thereisnodowntimewhenuserwantstodynamicallymodifytheschemas.
USINGJAVASCRIPTOBJECTNOTATION(JSON)
 JSONisextremelyexpressive.
 StoreandRetrieveiseaseprocess.
 ThisdatabaseusesadocumentstorageformatcalledBSON(BeeSon)which
isabinarystyleofJSONstyledocuments.
 BSONisanopenstandard.Insomecasesitconsumeslessspaceas
comparedtothetext-basedJSON.
 Itsanprogramminglanguage’snativedataformat.
 TheprogramminglanguageavailableinMongoDBare,
 C++
 Java
 python
 PHP
 Ruby
 C#..etc,.usingthebasicbinaryformat enablesthenativedatastructurestobe
builtquicklyforeachlanguagewithoutgoingthrough theinconvenienceof
processingJSON.
CREATINGORGENERATINGAUNIQUEKEY
 EachJSONdocumentsshouldhaveauniqueidentifier.
 _idkey=similartotheprimarykeyrelationaldatabase.
 Uses=ForSearchingthedocument(uniqueidentifier).
 Anindexisautomaticallybuiltontheuniqueidentifier.
0 1 2 3 4 5 6 7 8 9 11 12
Timestamp MachineID ProcessID Counter
 Database-Itiscollectionofcollections.
-Itislikean containerofcollections.itbegincreatedatthefirstattempt
whencollectionmakesreferencetoit.
-Createdondemand.
-EachDBhasitsownsetsoffilesandfilesystem.
-singleMongoDBserver=houseofseveraldatabases.
 Collection-ItislikeaanalogoustoatableofRDBMS.
-Itiscreatedatthefirsttimethatyouattempttosaveadocument.
-Singledatabase.AcollectionholdsaseveralMongoDBdocuments.
-Itdoesnotenforceschema.
-Itcontainsdocumentswithinacollectioncanhavedifferentfields.
 Document-Adocumentisanalogoustoarow/record/TupleinanRDBMS
table.
-Adocumenthasadynamicschema.
-Documentshaveasamefields,the orderofthefieldscanbe
different.
-Documentinacollectionneednotnecessarilyhavethesamesetof
fields/keyvaluepairs.
SUPPORTFORDYNAMICQUERIES
 MongoDBhasextensivesupportforqueries.
 ThisisinkeepingwithtraditionalRDBMSwhereinwehavestaticdataand
dynamicqueries.
 CouchDB-Documentoriented.
-SchemalessNOSQLdatabaseandMongoDB’sbiggestcompetitor.
-worksonquitethereversemanner.
-itsupportthedynamicdataandstaticqueries.
STORINGBINARYDATA
 MongoDBprovidesgridFStosupportthestorageofbinarydata.
 StorageSpace=4MBofdata.
e.g.,photographs(suchaas profilepicture)orsmallaudioclips.
 Ifyouwanttostoremovieclips,MongoDBhasanothersolution.
 Itstoresmetadatainacollectioncalled“file”.
 Chunks-Itsbreaksthatdataintosmallpiecescalled“chunks”.
-Storedin“chunks”collection.
-Takecare=“easyscalability”.
WHYREPLICATION?
 Itprovides
-dataredundancy
-highavailability
 Ithelptorecoverhardwarefailureandservicesinterruptions.
 InMongoDB,
replicaset=singleprimaryandseveralsecondaries.
 Eachwriterequestclientisdirectedtotheprimary.
Primarylogs Oplog(operationallog)
Writerequestinto
 Oplogisthenusedbythesecondaryreplicamemberstosynchronizetheir
data.
 Itsdecidesthe“consistency”.
 Theclientsusuallyreadfromtheprimary.
 Theclientcanalsospecifythereadpreferencethatwilldirecttheread
operationstothesecondary.
REPLICATIONDIAGRAM
writes reads
Replication Replication
TheprocessofREPLICATIONinMongoDB.
Clientapplication
Primary
Secondary Secondary Secondary
SHARDING
LARGEDB SMALLsubdividedDB.
 Itreferstohorizontalscaling.
 Itmeansalargedatabaseordatasetaresubdividedanddistributedintosmall
piecesovermultipleserversorshards.
 Eachshardisanindependentdatabaseandcollectivelytheywouldconstitute
alogicaldatabase.
Theprimeadvantageofshardingis,
 Shardingreducestheamountofdatathateachshardneedtomanageand
store.
 ShardingreducestheNo.Of.operationsthateachshardhandles.
 E.g.,1TB(sizeofdataset)=distributedordividedinto4shards(datasets).
 Eachshardofsize256GBdata.Asfortheclustergrows,theamountofdata
thateachshardwillstoreandmanagewilldecrease.
Shard3
(256GB)
Shard4
(256GB)
Collection
1TBdatabase
Shard1
(256GB)
Shard2
(256GB)
UPDATINGINFORMATIONINPLACE
 MongoDBupdatestheinformationinplace.
 Thisimpliesthatisupdatethedatawhereveritisavailable.
 Itdoesnotallocateseparatespaceandtheindexesremainunaltered.
 MongoDBisallforlazywrites.itwritestothediskonceeverysecond.
 Readingandwritingtodiskisaslowprocessascomparedtoreadingand
fromwritingfrommemory.
TERMSUSEDINRDBMSANDMONGODB
RDBMS
 Database
 Table
 Record
 Columns
 Index
 Joins
 Primarykey
MongoDB
 Database
 Collection
 Document
 Fields/keyvaluepairs
 Index
 Embeddeddocuments
 Primarykey(_idisaidentifier)
MYSQL Oracle MongoDB
Databaseserver MYSqld Oracle Mongod
Databaseclient MYSql SQLPlus mongo
CREATEDATABASE
 Thesyntaxforcreatingadatabaseisasfollows:
useDATABASE_Name
 Tocreateadatabasebythename“myDB”thesyntaxis
usemyDB
e.g.,
>usemyDB;
switchedtodbmyDB
>
 Toconfirmtheexistenceofyourdatabase,typecommandattheMongoDBshell:
db
>db
myDB
>
DROPDATABASE
 Thesyntaxtodeleteordropdatabaseisasfollows:
db.dropDatabase();
e.g.,
usemyDB;
db.dropDatabase();
DATATYPESINMONGODB
 String -MustbeUTF-8valid.
-Mostcommonlyuseddatatypes.
 Integer -Canbe32bitor64bit(depends ontheserver).
 Boolean -Tostoretrue/false
 Double -Tostorefloatingpoint(realvalues).
 Min/Max -TocompareavalueagainstthelowerorhighestBSONelements.
 Arrays -Tostorearrayorlistormultiplevaluesintoonekey.
 Timestamp -Torecordwhenadocumenthasbeenmodifiedoradded.
 Null -Tostoreanullvalue.(null=missingorunknownvalue).
 Date -Tostorethecurrentdateortimeformat.
 ObjectID -Tostorethedocument’sid.
 Binarydata-Tostorebinarydata(images,binaries,etc.,).
 Code -Tostorejavascriptcodeintothedocument.
 Regularexpression-Tostoreregularexpression.

More Related Content

Similar to Mongodb T.ARIFA BEGUM II-M.SC.,COMPUTER SCIENCE BON SECOURS COLLEGE FOR WOMEN

MongoDB
MongoDBMongoDB
Mongo db
Mongo dbMongo db
Mongo db
Yıldırım Tam
 
An introduction to MongoDB
An introduction to MongoDBAn introduction to MongoDB
An introduction to MongoDB
César Trigo
 
An introduction to MongoDB by César Trigo #OpenExpoDay 2014
An introduction to MongoDB by César Trigo #OpenExpoDay 2014An introduction to MongoDB by César Trigo #OpenExpoDay 2014
An introduction to MongoDB by César Trigo #OpenExpoDay 2014
OpenExpoES
 
La creación de una capa operacional con MongoDB
La creación de una capa operacional con MongoDBLa creación de una capa operacional con MongoDB
La creación de una capa operacional con MongoDB
MongoDB
 
Hands on Big Data Analysis with MongoDB - Cloud Expo Bootcamp NYC
Hands on Big Data Analysis with MongoDB - Cloud Expo Bootcamp NYCHands on Big Data Analysis with MongoDB - Cloud Expo Bootcamp NYC
Hands on Big Data Analysis with MongoDB - Cloud Expo Bootcamp NYC
Laura Ventura
 
Mongodb
MongodbMongodb
Mongodb
Apurva Vyas
 
An Introduction to SAP BODS: Understanding the Basics and Benefits
An Introduction to SAP BODS: Understanding the Basics and BenefitsAn Introduction to SAP BODS: Understanding the Basics and Benefits
An Introduction to SAP BODS: Understanding the Basics and Benefits
Geeks Learning Hub
 
MongoDB DOC v1.5
MongoDB DOC v1.5MongoDB DOC v1.5
MongoDB DOC v1.5
Tharun Srinivasa
 
MongoDB presentation
MongoDB presentationMongoDB presentation
MongoDB presentation
Hyphen Call
 
A Study on Mongodb Database.pdf
A Study on Mongodb Database.pdfA Study on Mongodb Database.pdf
A Study on Mongodb Database.pdf
Jessica Navarro
 
A Study on Mongodb Database
A Study on Mongodb DatabaseA Study on Mongodb Database
A Study on Mongodb Database
IJSRD
 
Pros and Cons of MongoDB in Web Development
Pros and Cons of MongoDB in Web DevelopmentPros and Cons of MongoDB in Web Development
Pros and Cons of MongoDB in Web Development
Nirvana Canada
 
The Big Picture on Big Data and Cognos
The Big Picture on Big Data and CognosThe Big Picture on Big Data and Cognos
The Big Picture on Big Data and Cognos
Senturus
 
Road Map for Careers in Big Data
Road Map for Careers in Big DataRoad Map for Careers in Big Data
Road Map for Careers in Big Data
Mich Talebzadeh (Ph.D.)
 
Democratization of Data @Indix
Democratization of Data @IndixDemocratization of Data @Indix
Democratization of Data @Indix
Manoj Mahalingam
 
Mdb dn 2017_17_bi_connector2
Mdb dn 2017_17_bi_connector2Mdb dn 2017_17_bi_connector2
Mdb dn 2017_17_bi_connector2
Daniel M. Farrell
 
Sree
SreeSree
Sree
SREE DEVI
 
Building powerful apps with ArangoDB & KeyLines
Building powerful apps with ArangoDB & KeyLinesBuilding powerful apps with ArangoDB & KeyLines
Building powerful apps with ArangoDB & KeyLines
Cambridge Intelligence
 
Resume
ResumeResume

Similar to Mongodb T.ARIFA BEGUM II-M.SC.,COMPUTER SCIENCE BON SECOURS COLLEGE FOR WOMEN (20)

MongoDB
MongoDBMongoDB
MongoDB
 
Mongo db
Mongo dbMongo db
Mongo db
 
An introduction to MongoDB
An introduction to MongoDBAn introduction to MongoDB
An introduction to MongoDB
 
An introduction to MongoDB by César Trigo #OpenExpoDay 2014
An introduction to MongoDB by César Trigo #OpenExpoDay 2014An introduction to MongoDB by César Trigo #OpenExpoDay 2014
An introduction to MongoDB by César Trigo #OpenExpoDay 2014
 
La creación de una capa operacional con MongoDB
La creación de una capa operacional con MongoDBLa creación de una capa operacional con MongoDB
La creación de una capa operacional con MongoDB
 
Hands on Big Data Analysis with MongoDB - Cloud Expo Bootcamp NYC
Hands on Big Data Analysis with MongoDB - Cloud Expo Bootcamp NYCHands on Big Data Analysis with MongoDB - Cloud Expo Bootcamp NYC
Hands on Big Data Analysis with MongoDB - Cloud Expo Bootcamp NYC
 
Mongodb
MongodbMongodb
Mongodb
 
An Introduction to SAP BODS: Understanding the Basics and Benefits
An Introduction to SAP BODS: Understanding the Basics and BenefitsAn Introduction to SAP BODS: Understanding the Basics and Benefits
An Introduction to SAP BODS: Understanding the Basics and Benefits
 
MongoDB DOC v1.5
MongoDB DOC v1.5MongoDB DOC v1.5
MongoDB DOC v1.5
 
MongoDB presentation
MongoDB presentationMongoDB presentation
MongoDB presentation
 
A Study on Mongodb Database.pdf
A Study on Mongodb Database.pdfA Study on Mongodb Database.pdf
A Study on Mongodb Database.pdf
 
A Study on Mongodb Database
A Study on Mongodb DatabaseA Study on Mongodb Database
A Study on Mongodb Database
 
Pros and Cons of MongoDB in Web Development
Pros and Cons of MongoDB in Web DevelopmentPros and Cons of MongoDB in Web Development
Pros and Cons of MongoDB in Web Development
 
The Big Picture on Big Data and Cognos
The Big Picture on Big Data and CognosThe Big Picture on Big Data and Cognos
The Big Picture on Big Data and Cognos
 
Road Map for Careers in Big Data
Road Map for Careers in Big DataRoad Map for Careers in Big Data
Road Map for Careers in Big Data
 
Democratization of Data @Indix
Democratization of Data @IndixDemocratization of Data @Indix
Democratization of Data @Indix
 
Mdb dn 2017_17_bi_connector2
Mdb dn 2017_17_bi_connector2Mdb dn 2017_17_bi_connector2
Mdb dn 2017_17_bi_connector2
 
Sree
SreeSree
Sree
 
Building powerful apps with ArangoDB & KeyLines
Building powerful apps with ArangoDB & KeyLinesBuilding powerful apps with ArangoDB & KeyLines
Building powerful apps with ArangoDB & KeyLines
 
Resume
ResumeResume
Resume
 

Recently uploaded

BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptxBIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
RidwanHassanYusuf
 
Benner "Expanding Pathways to Publishing Careers"
Benner "Expanding Pathways to Publishing Careers"Benner "Expanding Pathways to Publishing Careers"
Benner "Expanding Pathways to Publishing Careers"
National Information Standards Organization (NISO)
 
Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47
MysoreMuleSoftMeetup
 
Wound healing PPT
Wound healing PPTWound healing PPT
Wound healing PPT
Jyoti Chand
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
Nicholas Montgomery
 
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptxC1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
mulvey2
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
Nguyen Thanh Tu Collection
 
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.pptLevel 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
Henry Hollis
 
Stack Memory Organization of 8086 Microprocessor
Stack Memory Organization of 8086 MicroprocessorStack Memory Organization of 8086 Microprocessor
Stack Memory Organization of 8086 Microprocessor
JomonJoseph58
 
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
imrankhan141184
 
Chapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptxChapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptx
Denish Jangid
 
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptxBeyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
EduSkills OECD
 
مصحف القراءات العشر أعد أحرف الخلاف سمير بسيوني.pdf
مصحف القراءات العشر   أعد أحرف الخلاف سمير بسيوني.pdfمصحف القراءات العشر   أعد أحرف الخلاف سمير بسيوني.pdf
مصحف القراءات العشر أعد أحرف الخلاف سمير بسيوني.pdf
سمير بسيوني
 
Lifelines of National Economy chapter for Class 10 STUDY MATERIAL PDF
Lifelines of National Economy chapter for Class 10 STUDY MATERIAL PDFLifelines of National Economy chapter for Class 10 STUDY MATERIAL PDF
Lifelines of National Economy chapter for Class 10 STUDY MATERIAL PDF
Vivekanand Anglo Vedic Academy
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
RAHUL
 
Temple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation resultsTemple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation results
Krassimira Luka
 
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
National Information Standards Organization (NISO)
 
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
GeorgeMilliken2
 
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
Nguyen Thanh Tu Collection
 
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skillsspot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
haiqairshad
 

Recently uploaded (20)

BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptxBIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
 
Benner "Expanding Pathways to Publishing Careers"
Benner "Expanding Pathways to Publishing Careers"Benner "Expanding Pathways to Publishing Careers"
Benner "Expanding Pathways to Publishing Careers"
 
Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47
 
Wound healing PPT
Wound healing PPTWound healing PPT
Wound healing PPT
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
 
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptxC1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
 
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.pptLevel 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
 
Stack Memory Organization of 8086 Microprocessor
Stack Memory Organization of 8086 MicroprocessorStack Memory Organization of 8086 Microprocessor
Stack Memory Organization of 8086 Microprocessor
 
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
 
Chapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptxChapter wise All Notes of First year Basic Civil Engineering.pptx
Chapter wise All Notes of First year Basic Civil Engineering.pptx
 
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptxBeyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
Beyond Degrees - Empowering the Workforce in the Context of Skills-First.pptx
 
مصحف القراءات العشر أعد أحرف الخلاف سمير بسيوني.pdf
مصحف القراءات العشر   أعد أحرف الخلاف سمير بسيوني.pdfمصحف القراءات العشر   أعد أحرف الخلاف سمير بسيوني.pdf
مصحف القراءات العشر أعد أحرف الخلاف سمير بسيوني.pdf
 
Lifelines of National Economy chapter for Class 10 STUDY MATERIAL PDF
Lifelines of National Economy chapter for Class 10 STUDY MATERIAL PDFLifelines of National Economy chapter for Class 10 STUDY MATERIAL PDF
Lifelines of National Economy chapter for Class 10 STUDY MATERIAL PDF
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
 
Temple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation resultsTemple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation results
 
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
 
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
 
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
BÀI TẬP DẠY THÊM TIẾNG ANH LỚP 7 CẢ NĂM FRIENDS PLUS SÁCH CHÂN TRỜI SÁNG TẠO ...
 
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skillsspot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
 

Mongodb T.ARIFA BEGUM II-M.SC.,COMPUTER SCIENCE BON SECOURS COLLEGE FOR WOMEN