SlideShare a Scribd company logo
1 of 39
Download to read offline
Week 7
57-01012-62009-8 Thanaphat Kalaya
Task 1
Implement last week relations to database using selected DBMS
Solution
Relations
Cinemas
Theaters
show
Movies
c_id
t_id seat_cap c_id
t_id m_id time_slot price num_adult num_child
m_id
Solution
Relations
Cinemas
Theaters
show
Movies
c_id
t_id seat_cap c_id
t_id m_id time_slot price num_adult num_child
m_id
Solution
Relations
Cinemas
Theaters
show
Movies
c_id
t_id seat_cap c_id
t_id m_id time_slot price num_adult num_child
m_id
Note : foreign keys
Solution
Relations
Cinemas
Theaters
show
Movies
c_id
t_id seat_cap c_id
t_id m_id time_slot price num_adult num_child
m_id
Solution
code : cinemas
CREATE TABLE `cinemas` (
`c_id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`c_name` CHAR(50) NOT NULL DEFAULT '0',
PRIMARY KEY (`c_id`)
);
Solution
code : theaters
CREATE TABLE `theaters` (
`t_id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`t_num` INT(10) NOT NULL,
`seat_cap` INT(10) UNSIGNED NOT NULL,
`c_id` INT(10) UNSIGNED NOT NULL,
PRIMARY KEY (`t_id`),
INDEX `c_id` (`c_id`),
CONSTRAINT `c_id` FOREIGN KEY (`c_id`) REFERENCES `cinemas` (`c_id`)
);
Solution
code : theaters
CREATE TABLE `movies` (
`m_id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`m_name` CHAR(50) NULL DEFAULT '0',
`m_release` DATE NOT NULL,
PRIMARY KEY (`m_id`)
);
Solution
code : theaters
CREATE TABLE `shows` (
`t_id` INT(10) UNSIGNED NOT NULL,
`m_id` INT(10) UNSIGNED NOT NULL,
`time_slot` DATETIME NOT NULL,
`price` INT(11) UNSIGNED NOT NULL,
`num_adult` INT(11) UNSIGNED NOT NULL,
`num_child` INT(11) UNSIGNED NOT NULL,
INDEX `t_id` (`t_id`),
INDEX `m_id` (`m_id`),
CONSTRAINT `m_id` FOREIGN KEY (`m_id`) REFERENCES `movies` (`m_id`),
CONSTRAINT `t_id` FOREIGN KEY (`t_id`) REFERENCES `theaters` (`t_id`)
);
Task 2
Insert random data into your designed database using selected
DBMS
Solution
random_to_theaterDB.py
Solution
random_to_theaterDB.py
run the code
…
… (1 hrs. later)
…
… (6 hrs. later)
…
okey I think I should stop by now.
(8 hrs. later)
Result
Result
Result
Result
Result
Result
The program generated
- 19 rows of data for table “cinemas”
- 530 rows of data for table “movies”
- 541,457 rows of data for table “shows”
- 208 rows of data for table “theaters”
Task 3
Write 5 meaningful/practical SQL queries
#1 Query
select
cinemas.c_name,
movies.m_name,
theaters.t_num,
shows.time_slot,
shows.price
from shows
inner join movies on shows.m_id = movies.m_id
inner join theaters on theaters.t_id = shows.t_id
inner join cinemas on cinemas.c_id = theaters.c_id
order by c_name,m_name,time_slot,t_num,price;
#1 Query Result (2.360 sec.)
#2 Query
select
cinemas.c_name,
movies.m_name,
theaters.t_num,
shows.time_slot,
round((shows.num_adult / (shows.num_adult + shows.num_child)) * 100) as percent_adult,
round((shows.num_child / (shows.num_adult + shows.num_child)) * 100) as percent_child,
shows.price*(shows.num_adult + shows.num_child) as income
from shows
inner join movies on shows.m_id = movies.m_id
inner join theaters on theaters.t_id = shows.t_id
inner join cinemas on cinemas.c_id = theaters.c_id
order by c_name,m_name,time_slot,t_num,price;
#2 Query Result (2.766 sec.)
#3 Query
select
cinemas.c_name,
movies.m_name,
theaters.t_num,
shows.time_slot,
shows.price,
round((shows.num_adult / (shows.num_adult + shows.num_child)) * 100) as percent_adult,
round((shows.num_child / (shows.num_adult + shows.num_child)) * 100) as percent_child,
shows.price*(shows.num_adult + shows.num_child) as income
from shows
inner join movies on shows.m_id = movies.m_id
inner join theaters on theaters.t_id = shows.t_id
inner join cinemas on cinemas.c_id = theaters.c_id
order by c_name,m_name,time_slot,t_num,price;
#3 Query Result (2.782 sec.)
#4 Query
select
cinemas.c_name,
movies.m_name,
theaters.t_num,
shows.time_slot,
shows.price,
shows.num_adult,
shows.num_child,
shows.num_adult + shows.num_child as num_customers,
theaters.seat_cap,
round((shows.num_adult / (shows.num_adult + shows.num_child)) * 100) as percent_adult,
round((shows.num_child / (shows.num_adult + shows.num_child)) * 100) as percent_child,
shows.price*(shows.num_adult + shows.num_child) as income
from shows
inner join movies on shows.m_id = movies.m_id
inner join theaters on theaters.t_id = shows.t_id
inner join cinemas on cinemas.c_id = theaters.c_id
order by c_name,m_name,time_slot,t_num,price;
#4 Query Result (3.063 sec.)
#5 Query
select distinct
movies.m_name,
sum(shows.price*(shows.num_adult + shows.num_child)) as total_income
from shows
inner join movies on shows.m_id = movies.m_id
group by movies.m_id
order by total_income desc;
#5 Query Result (0.406 sec.)
End of week 7

More Related Content

Viewers also liked

The future [of pixels] is in our hands (first draft)
The future [of pixels] is in our hands (first draft)The future [of pixels] is in our hands (first draft)
The future [of pixels] is in our hands (first draft)Timothy Duquesne
 
التشبيه التمثيلي
التشبيه التمثيليالتشبيه التمثيلي
التشبيه التمثيليAyaman Alfaleet
 
черные дыры
черные дырычерные дыры
черные дырыAl Dis
 
JavaScript code academy - introduction
JavaScript code academy - introductionJavaScript code academy - introduction
JavaScript code academy - introductionJaroslav Kubíček
 
Respuesta ONUDC exportación de coca
Respuesta ONUDC exportación de cocaRespuesta ONUDC exportación de coca
Respuesta ONUDC exportación de cocaAlejandra Prado
 
Estrategias metodologicas a distancia
Estrategias metodologicas a distanciaEstrategias metodologicas a distancia
Estrategias metodologicas a distanciad14f70g03aa
 
EFEITOS DO EXERCÍCIO FÍSICO SOBRE A VIA AKT/eNOS E AMPK/eNOS EM AORTA DE RATO...
EFEITOS DO EXERCÍCIO FÍSICO SOBRE A VIA AKT/eNOS E AMPK/eNOS EM AORTA DE RATO...EFEITOS DO EXERCÍCIO FÍSICO SOBRE A VIA AKT/eNOS E AMPK/eNOS EM AORTA DE RATO...
EFEITOS DO EXERCÍCIO FÍSICO SOBRE A VIA AKT/eNOS E AMPK/eNOS EM AORTA DE RATO...Viviane Acunha
 

Viewers also liked (10)

The future [of pixels] is in our hands (first draft)
The future [of pixels] is in our hands (first draft)The future [of pixels] is in our hands (first draft)
The future [of pixels] is in our hands (first draft)
 
التشبيه التمثيلي
التشبيه التمثيليالتشبيه التمثيلي
التشبيه التمثيلي
 
черные дыры
черные дырычерные дыры
черные дыры
 
Financing company
Financing companyFinancing company
Financing company
 
Epoker
EpokerEpoker
Epoker
 
JavaScript code academy - introduction
JavaScript code academy - introductionJavaScript code academy - introduction
JavaScript code academy - introduction
 
Respuesta ONUDC exportación de coca
Respuesta ONUDC exportación de cocaRespuesta ONUDC exportación de coca
Respuesta ONUDC exportación de coca
 
Estrategias metodologicas a distancia
Estrategias metodologicas a distanciaEstrategias metodologicas a distancia
Estrategias metodologicas a distancia
 
EFEITOS DO EXERCÍCIO FÍSICO SOBRE A VIA AKT/eNOS E AMPK/eNOS EM AORTA DE RATO...
EFEITOS DO EXERCÍCIO FÍSICO SOBRE A VIA AKT/eNOS E AMPK/eNOS EM AORTA DE RATO...EFEITOS DO EXERCÍCIO FÍSICO SOBRE A VIA AKT/eNOS E AMPK/eNOS EM AORTA DE RATO...
EFEITOS DO EXERCÍCIO FÍSICO SOBRE A VIA AKT/eNOS E AMPK/eNOS EM AORTA DE RATO...
 
Fertilization of angiospermic plant
Fertilization of angiospermic plantFertilization of angiospermic plant
Fertilization of angiospermic plant
 

Similar to W7 57-010126-2009-8

DBMS Case Study B3.pptx
DBMS Case Study B3.pptxDBMS Case Study B3.pptx
DBMS Case Study B3.pptxsahithisammeta
 
Objectives The main objective of this assignment is checking .docx
Objectives The main objective of this assignment is checking .docxObjectives The main objective of this assignment is checking .docx
Objectives The main objective of this assignment is checking .docxamit657720
 
Objectives The main objective of this assignment is checking .docx
Objectives The main objective of this assignment is checking .docxObjectives The main objective of this assignment is checking .docx
Objectives The main objective of this assignment is checking .docxvannagoforth
 
IBM Insight 2015 - 1824 - Using Bluemix and dashDB for Twitter Analysis
IBM Insight 2015 - 1824 - Using Bluemix and dashDB for Twitter AnalysisIBM Insight 2015 - 1824 - Using Bluemix and dashDB for Twitter Analysis
IBM Insight 2015 - 1824 - Using Bluemix and dashDB for Twitter AnalysisTorsten Steinbach
 
Informatics Practices (new) solution CBSE 2021, Compartment, improvement ex...
Informatics Practices (new) solution CBSE  2021, Compartment,  improvement ex...Informatics Practices (new) solution CBSE  2021, Compartment,  improvement ex...
Informatics Practices (new) solution CBSE 2021, Compartment, improvement ex...FarhanAhmade
 
Online Movie Ticket Booking
Online Movie Ticket BookingOnline Movie Ticket Booking
Online Movie Ticket BookingAstha Patel
 
Modify Assignment 5 toReplace the formatted output method (toStri.docx
Modify Assignment 5 toReplace the formatted output method (toStri.docxModify Assignment 5 toReplace the formatted output method (toStri.docx
Modify Assignment 5 toReplace the formatted output method (toStri.docxadelaidefarmer322
 
Capstone Project: Master's of Science in Data Science
Capstone Project: Master's of Science in Data Science Capstone Project: Master's of Science in Data Science
Capstone Project: Master's of Science in Data Science Silvia Qu
 
AWS July Webinar Series: Amazon Redshift Optimizing Performance
AWS July Webinar Series: Amazon Redshift Optimizing PerformanceAWS July Webinar Series: Amazon Redshift Optimizing Performance
AWS July Webinar Series: Amazon Redshift Optimizing PerformanceAmazon Web Services
 
Art and Science Come Together When Mastering Relevance Ranking - Tom Burgmans...
Art and Science Come Together When Mastering Relevance Ranking - Tom Burgmans...Art and Science Come Together When Mastering Relevance Ranking - Tom Burgmans...
Art and Science Come Together When Mastering Relevance Ranking - Tom Burgmans...Lucidworks
 
Naive application of Machine Learning to Software Development
Naive application of Machine Learning to Software DevelopmentNaive application of Machine Learning to Software Development
Naive application of Machine Learning to Software DevelopmentAndriy Khavryuchenko
 
PyCon Siberia 2016. Не доверяйте тестам!
PyCon Siberia 2016. Не доверяйте тестам!PyCon Siberia 2016. Не доверяйте тестам!
PyCon Siberia 2016. Не доверяйте тестам!Ivan Tsyganov
 
The Vanishing Pattern: from iterators to generators in Python
The Vanishing Pattern: from iterators to generators in PythonThe Vanishing Pattern: from iterators to generators in Python
The Vanishing Pattern: from iterators to generators in PythonOSCON Byrum
 
Baseball Prediction Model on Tensorflow
Baseball Prediction Model on TensorflowBaseball Prediction Model on Tensorflow
Baseball Prediction Model on TensorflowJay Ryu
 

Similar to W7 57-010126-2009-8 (20)

DBMS Case Study B3.pptx
DBMS Case Study B3.pptxDBMS Case Study B3.pptx
DBMS Case Study B3.pptx
 
Quality Python Homework Help
Quality Python Homework HelpQuality Python Homework Help
Quality Python Homework Help
 
Objectives The main objective of this assignment is checking .docx
Objectives The main objective of this assignment is checking .docxObjectives The main objective of this assignment is checking .docx
Objectives The main objective of this assignment is checking .docx
 
Objectives The main objective of this assignment is checking .docx
Objectives The main objective of this assignment is checking .docxObjectives The main objective of this assignment is checking .docx
Objectives The main objective of this assignment is checking .docx
 
Performance
PerformancePerformance
Performance
 
sql-dml.ppt
sql-dml.pptsql-dml.ppt
sql-dml.ppt
 
TMDb movie dataset by kaggle
TMDb movie dataset by kaggleTMDb movie dataset by kaggle
TMDb movie dataset by kaggle
 
IBM Insight 2015 - 1824 - Using Bluemix and dashDB for Twitter Analysis
IBM Insight 2015 - 1824 - Using Bluemix and dashDB for Twitter AnalysisIBM Insight 2015 - 1824 - Using Bluemix and dashDB for Twitter Analysis
IBM Insight 2015 - 1824 - Using Bluemix and dashDB for Twitter Analysis
 
Decision Tree.pptx
Decision Tree.pptxDecision Tree.pptx
Decision Tree.pptx
 
Informatics Practices (new) solution CBSE 2021, Compartment, improvement ex...
Informatics Practices (new) solution CBSE  2021, Compartment,  improvement ex...Informatics Practices (new) solution CBSE  2021, Compartment,  improvement ex...
Informatics Practices (new) solution CBSE 2021, Compartment, improvement ex...
 
Online Movie Ticket Booking
Online Movie Ticket BookingOnline Movie Ticket Booking
Online Movie Ticket Booking
 
Modify Assignment 5 toReplace the formatted output method (toStri.docx
Modify Assignment 5 toReplace the formatted output method (toStri.docxModify Assignment 5 toReplace the formatted output method (toStri.docx
Modify Assignment 5 toReplace the formatted output method (toStri.docx
 
Capstone Project: Master's of Science in Data Science
Capstone Project: Master's of Science in Data Science Capstone Project: Master's of Science in Data Science
Capstone Project: Master's of Science in Data Science
 
08 Functions
08 Functions08 Functions
08 Functions
 
AWS July Webinar Series: Amazon Redshift Optimizing Performance
AWS July Webinar Series: Amazon Redshift Optimizing PerformanceAWS July Webinar Series: Amazon Redshift Optimizing Performance
AWS July Webinar Series: Amazon Redshift Optimizing Performance
 
Art and Science Come Together When Mastering Relevance Ranking - Tom Burgmans...
Art and Science Come Together When Mastering Relevance Ranking - Tom Burgmans...Art and Science Come Together When Mastering Relevance Ranking - Tom Burgmans...
Art and Science Come Together When Mastering Relevance Ranking - Tom Burgmans...
 
Naive application of Machine Learning to Software Development
Naive application of Machine Learning to Software DevelopmentNaive application of Machine Learning to Software Development
Naive application of Machine Learning to Software Development
 
PyCon Siberia 2016. Не доверяйте тестам!
PyCon Siberia 2016. Не доверяйте тестам!PyCon Siberia 2016. Не доверяйте тестам!
PyCon Siberia 2016. Не доверяйте тестам!
 
The Vanishing Pattern: from iterators to generators in Python
The Vanishing Pattern: from iterators to generators in PythonThe Vanishing Pattern: from iterators to generators in Python
The Vanishing Pattern: from iterators to generators in Python
 
Baseball Prediction Model on Tensorflow
Baseball Prediction Model on TensorflowBaseball Prediction Model on Tensorflow
Baseball Prediction Model on Tensorflow
 

Recently uploaded

Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
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
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
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
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 

Recently uploaded (20)

Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
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
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
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...
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 

W7 57-010126-2009-8