SlideShare a Scribd company logo
1 of 19
What is DBMS?<br />Database Management System is a set of computer programs that controls the creation, maintenance, and the use of a database.<br />What is a Schema?<br />A description of data in terms of data model is called a schema. In the relational model, the schema for a relation specifies its name, the name of each field (or attribute or column), and the type of each filed. Example for student information in a university database may be stored in a relation with the following schema:<br />Student ( sid: string, name: string, login: string, age: integer, gpa: real)<br />What is DDL?<br />A data definition language (DDL) is used to define the external and conceptual schemas.<br />What is a Database?<br />A database is a collection of data.<br />Data in the database:is integrated<br />Can be shared<br />Can be concurrently accessed<br />The database systems are designed to:<br />,[object Object]
Provide mechanisms for the manipulation of data
Ensure the safety of the data stored, despite system crashes or attempts at unauthorized access
Share data among the different usersIn short, database systems are designed to manage large volumes of data.<br />The first general-purpose DBMS, designed by Charles Bachman at General Electric in the early 1960s, was called the Integrated Data store. In the late 1960s, IBM developed the information Management System (IMS) DBMS.<br />File System Interface versus DBMS Interface<br />In the traditional file approach, data is stored in flat files which are maintained by the file system, under the operating systems control. The end users use the application programs to perform specific tasks.  All application programs go through the file system to access the data stored in these flat files.<br />In the DBMS approach, all requests to use the data stored in the database are handled by the DBMS. The end user can use either the application programs or the standard SQL to access the data.<br />Flat Files: A flat file is a file containing records that has no structured interrelationship. Files used in programming fundamentals projects were essentially flat files.<br />SQL: (Structured Query Language). A language used by relational databases to query, update and manage data.<br />The data in the database can be shared. Sharing means individual pieces of data in the database can be shared among different users.<br />Points to Remember: <br />Disadvantages of the traditional file approach:  <br />,[object Object]
Data Redundancy –  Same data is duplicated in two or more files which may lead to update anomalies
Data Isolation – All the related data is not available in one file. Thus writing a new application program is difficult
Program / Data Dependence – Application programs are data dependent. It is impossible to change the physical representation (how the data is physically represented in storage) or access technique (how it is physically accessed) without affecting the application.
Lack of Flexibility – Only pre-determined request for information can be met. It is not flexible to satisfy unanticipated queries.
Concurrent Access Anomalies – Same piece of data is allowed to be updated simultaneously which leads to inconsistencies.DBMS ensures the following<br />,[object Object]
Allows for sharing of data among different users. Users are also able to access the database concurrently without facing the issues of inconsistent data.
Controls redundancy and inconsistency
Provides secure access to that database
Enforces integrity constraints (also known as business rules) by preventing the entity of invalid information into the database.
Enables backup and recovery from system crashes.Queries: - A query is essentially a request that a user makes on the database.<br />Integrity Constraints: A set of rules to ensure the correctness and accuracy of data.<br />Types of Databases<br />There are two generic database architectures: centralized and distributed.<br />Centralized: All data is located at a single site. Allows for greater control over accessing and updating data<br />Distributed: The database is stored on several computers from personal computers up to mainframe systems. Computers in a distributed system communicate with one another through various communication media such as high speed networks or telephone lines. Distributed databases are geographically separated and managed.<br />DBMS Architecture<br />Most commercial databases are based on the three-level architecture model called the ANSI/SPARC (American National Standards Institute/Standard Planning and Requirements Committee) model.<br />Database architecture is in there levels. Those are <br />,[object Object]
Conceptual Level
Internal LevelThe overall design of the database is called database schema. Schemas are not changed frequently. In general, database systems support one internal schema, one conceptual schema and several external schemas.<br />External / View Level: Many users of the database system are not concerned with all the information in the database. Instead, they need to access only a part of the database. The external level of abstraction simplifies the end users interaction with the system. The system may provide many views for the same database.<br />Conceptual / Logical Level: The conceptual level describes what data are stored in the database, and what relationships exist among those data. This level is used by the Database Administrator, who in turn decides what information must be kept in the database.<br />Internal / Physical level: The internal level is the lowest level of abstraction and describes the data storage and access methods. Database Administrator may be aware of certain details of the physical organization of the data.<br />Guidelines to select a primary key:<br />,[object Object]
Give preference to a single attribute. The search algorithm gives better output with a single attribute primary key than with a composite attribute primary key
Give preference to the minimal composite key. A composite key is a collection of two or more attributes.
Primary keys are chosen according to business convenience.DBMS Users<br />End Users: Works at the external level and generally makes updates to the database or executes queries on the database.<br />Application Programmer: Writes application programs.<br />Database Administrator: Defines the conceptual, internal and external schema, control access privileges to/from users and ensures the consistency of the database.<br />Different types Keys<br />Candidate/Primary Key: - A Primary key is a set of one or more attributes that can uniquely identify a row in a given table.<br />Foreign Key: - A foreign key is a set of attributes the values of which are required to match the values of a candidate key in the same or another table. The foreign key attributes can have duplicate or null values.<br />Self Referencing: - A table might include a foreign key, the values of which are required to match the value of a candidate key in the same table. This is known as self referencing.<br />Non –Key Attributes: The attributes other than the primary key attributes in a table/relation are called non-key attributes.<br />Data Models<br />A data model is a conceptual toll to describe data, data relationships, data schematics and consistency constraints. Two of the widely used data models are <br />,[object Object]

More Related Content

What's hot

Database management system by Gursharan singh
Database management system by Gursharan singhDatabase management system by Gursharan singh
Database management system by Gursharan singhGursharan Singh
 
Importance of data model
Importance of data modelImportance of data model
Importance of data modelyhen06
 
What is data model? And types.
What is data model? And types.What is data model? And types.
What is data model? And types.774477
 
Database Management System
Database Management SystemDatabase Management System
Database Management SystemNishant Munjal
 
Introduction to databases
Introduction to databasesIntroduction to databases
Introduction to databasesBryan Corpuz
 
Introduction to databases
Introduction to databasesIntroduction to databases
Introduction to databasesAashima Wadhwa
 
Kskv kutch university DBMS unit 1 basic concepts, data,information,database,...
Kskv kutch university DBMS unit 1  basic concepts, data,information,database,...Kskv kutch university DBMS unit 1  basic concepts, data,information,database,...
Kskv kutch university DBMS unit 1 basic concepts, data,information,database,...Dipen Parmar
 
Basic Concept of Database
Basic Concept of DatabaseBasic Concept of Database
Basic Concept of DatabaseMarlon Jamera
 
DBMS & Data Models - In Introduction
DBMS & Data Models - In IntroductionDBMS & Data Models - In Introduction
DBMS & Data Models - In IntroductionRajeev Srivastava
 
Introduction to database
Introduction to databaseIntroduction to database
Introduction to databasePradnya Saval
 

What's hot (20)

Types of databases
Types of databases   Types of databases
Types of databases
 
Dbms
DbmsDbms
Dbms
 
Database management systems
Database management systemsDatabase management systems
Database management systems
 
Database management system by Gursharan singh
Database management system by Gursharan singhDatabase management system by Gursharan singh
Database management system by Gursharan singh
 
Importance of data model
Importance of data modelImportance of data model
Importance of data model
 
DBMS and its Models
DBMS and its ModelsDBMS and its Models
DBMS and its Models
 
What is data model? And types.
What is data model? And types.What is data model? And types.
What is data model? And types.
 
Data models
Data modelsData models
Data models
 
Database Management System
Database Management SystemDatabase Management System
Database Management System
 
Introduction to databases
Introduction to databasesIntroduction to databases
Introduction to databases
 
11 Database Concepts
11 Database Concepts11 Database Concepts
11 Database Concepts
 
Introduction to databases
Introduction to databasesIntroduction to databases
Introduction to databases
 
Unit 1 basic concepts of DBMS
Unit 1 basic concepts of DBMSUnit 1 basic concepts of DBMS
Unit 1 basic concepts of DBMS
 
Types dbms
Types dbmsTypes dbms
Types dbms
 
Kskv kutch university DBMS unit 1 basic concepts, data,information,database,...
Kskv kutch university DBMS unit 1  basic concepts, data,information,database,...Kskv kutch university DBMS unit 1  basic concepts, data,information,database,...
Kskv kutch university DBMS unit 1 basic concepts, data,information,database,...
 
Basic Concept of Database
Basic Concept of DatabaseBasic Concept of Database
Basic Concept of Database
 
Database concepts
Database conceptsDatabase concepts
Database concepts
 
DBMS & Data Models - In Introduction
DBMS & Data Models - In IntroductionDBMS & Data Models - In Introduction
DBMS & Data Models - In Introduction
 
27 fcs157al2
27 fcs157al227 fcs157al2
27 fcs157al2
 
Introduction to database
Introduction to databaseIntroduction to database
Introduction to database
 

Viewers also liked

Premios La Morcilla Ganadores
Premios La Morcilla GanadoresPremios La Morcilla Ganadores
Premios La Morcilla Ganadoresguestf717abd
 
Place mint 4 you week 5
Place mint 4 you week 5Place mint 4 you week 5
Place mint 4 you week 5dbdakota
 
Memcached全面剖析
Memcached全面剖析Memcached全面剖析
Memcached全面剖析chen vivian
 
2010 寶曼徵才計畫 3.0 (操盤人主軸)
2010 寶曼徵才計畫 3.0 (操盤人主軸)2010 寶曼徵才計畫 3.0 (操盤人主軸)
2010 寶曼徵才計畫 3.0 (操盤人主軸)piscesgt
 
Análisis sintáctico de la oración compleja
Análisis sintáctico de la oración complejaAnálisis sintáctico de la oración compleja
Análisis sintáctico de la oración complejajarase
 
Hanipsych, autistic disorder
Hanipsych, autistic disorderHanipsych, autistic disorder
Hanipsych, autistic disorderHani Hamed
 

Viewers also liked (9)

Premios La Morcilla Ganadores
Premios La Morcilla GanadoresPremios La Morcilla Ganadores
Premios La Morcilla Ganadores
 
Atapuerca
AtapuercaAtapuerca
Atapuerca
 
Place mint 4 you week 5
Place mint 4 you week 5Place mint 4 you week 5
Place mint 4 you week 5
 
Memcached全面剖析
Memcached全面剖析Memcached全面剖析
Memcached全面剖析
 
2010 寶曼徵才計畫 3.0 (操盤人主軸)
2010 寶曼徵才計畫 3.0 (操盤人主軸)2010 寶曼徵才計畫 3.0 (操盤人主軸)
2010 寶曼徵才計畫 3.0 (操盤人主軸)
 
Análisis sintáctico de la oración compleja
Análisis sintáctico de la oración complejaAnálisis sintáctico de la oración compleja
Análisis sintáctico de la oración compleja
 
3 probabilidad
3 probabilidad3 probabilidad
3 probabilidad
 
Donde quedan los derechos humanos de las mujeres
Donde quedan los derechos humanos de las mujeresDonde quedan los derechos humanos de las mujeres
Donde quedan los derechos humanos de las mujeres
 
Hanipsych, autistic disorder
Hanipsych, autistic disorderHanipsych, autistic disorder
Hanipsych, autistic disorder
 

Similar to Database Concepts

Database Concepts & SQL(1).pdf
Database Concepts & SQL(1).pdfDatabase Concepts & SQL(1).pdf
Database Concepts & SQL(1).pdfrsujeet169
 
Database Management System, Lecture-1
Database Management System, Lecture-1Database Management System, Lecture-1
Database Management System, Lecture-1Sonia Mim
 
Data base management system
Data base management systemData base management system
Data base management systemNavneet Jingar
 
Lecture 1 to 3intro to normalization in database
Lecture 1 to 3intro to  normalization in databaseLecture 1 to 3intro to  normalization in database
Lecture 1 to 3intro to normalization in databasemaqsoodahmedbscsfkhp
 
database introductoin optimization1-app6891.pdf
database introductoin optimization1-app6891.pdfdatabase introductoin optimization1-app6891.pdf
database introductoin optimization1-app6891.pdfparveen204931475
 
Introduction to Database
Introduction to DatabaseIntroduction to Database
Introduction to DatabaseSiti Ismail
 
Database and Database Management (DBM): Health Informatics
Database and Database Management (DBM): Health InformaticsDatabase and Database Management (DBM): Health Informatics
Database and Database Management (DBM): Health InformaticsZulfiquer Ahmed Amin
 
ppt_rdbms.pdfuvuguvuvugycycyctcucuvyvvuvuvy
ppt_rdbms.pdfuvuguvuvugycycyctcucuvyvvuvuvyppt_rdbms.pdfuvuguvuvugycycyctcucuvyvvuvuvy
ppt_rdbms.pdfuvuguvuvugycycyctcucuvyvvuvuvyvk5985399
 
Ch-1-Introduction-to-Database.pdf
Ch-1-Introduction-to-Database.pdfCh-1-Introduction-to-Database.pdf
Ch-1-Introduction-to-Database.pdfMrjJoker1
 
Database Management System
Database Management SystemDatabase Management System
Database Management SystemTamur Iqbal
 

Similar to Database Concepts (20)

Database Concepts & SQL(1).pdf
Database Concepts & SQL(1).pdfDatabase Concepts & SQL(1).pdf
Database Concepts & SQL(1).pdf
 
Database Management System, Lecture-1
Database Management System, Lecture-1Database Management System, Lecture-1
Database Management System, Lecture-1
 
Data base management system
Data base management systemData base management system
Data base management system
 
Dbms unit01
Dbms unit01Dbms unit01
Dbms unit01
 
Dbms
DbmsDbms
Dbms
 
Mis chapter 7 database systems
Mis chapter 7 database systemsMis chapter 7 database systems
Mis chapter 7 database systems
 
Lecture 1 to 3intro to normalization in database
Lecture 1 to 3intro to  normalization in databaseLecture 1 to 3intro to  normalization in database
Lecture 1 to 3intro to normalization in database
 
database introductoin optimization1-app6891.pdf
database introductoin optimization1-app6891.pdfdatabase introductoin optimization1-app6891.pdf
database introductoin optimization1-app6891.pdf
 
Introduction to Database
Introduction to DatabaseIntroduction to Database
Introduction to Database
 
Unit01 dbms
Unit01 dbmsUnit01 dbms
Unit01 dbms
 
Database and Database Management (DBM): Health Informatics
Database and Database Management (DBM): Health InformaticsDatabase and Database Management (DBM): Health Informatics
Database and Database Management (DBM): Health Informatics
 
Dbms
DbmsDbms
Dbms
 
Dbms quick guide
Dbms quick guideDbms quick guide
Dbms quick guide
 
ppt_rdbms.pdfuvuguvuvugycycyctcucuvyvvuvuvy
ppt_rdbms.pdfuvuguvuvugycycyctcucuvyvvuvuvyppt_rdbms.pdfuvuguvuvugycycyctcucuvyvvuvuvy
ppt_rdbms.pdfuvuguvuvugycycyctcucuvyvvuvuvy
 
Ch-1-Introduction-to-Database.pdf
Ch-1-Introduction-to-Database.pdfCh-1-Introduction-to-Database.pdf
Ch-1-Introduction-to-Database.pdf
 
RDBMS to NoSQL. An overview.
RDBMS to NoSQL. An overview.RDBMS to NoSQL. An overview.
RDBMS to NoSQL. An overview.
 
Database Management System
Database Management SystemDatabase Management System
Database Management System
 
Lecture#5
Lecture#5Lecture#5
Lecture#5
 
Database System Concepts
Database System ConceptsDatabase System Concepts
Database System Concepts
 
Dbms
Dbms Dbms
Dbms
 

Recently uploaded

Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 

Recently uploaded (20)

Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 

Database Concepts