SlideShare a Scribd company logo
1 of 85
Download to read offline
Team Emertxe
Basic Refresher
Assignment 13
Assignment 13
Assignment 13
WAP to find the median of two unsorted arrays.
Assignment 13
WAP to find the median of two unsorted arrays.
Input: Read two integer array of size ‘M’ and ‘N’, and read
elements for array1 of size ‘M’ and array2 of size ‘N’
Assignment 13
WAP to find the median of two unsorted arrays.
Input: Read two integer array of size ‘M’ and ‘N’, and read
elements for array1 of size ‘M’ and array2 of size ‘N’
Output: Print the median of array1 and array2 , and print
the average of both median
Assignment 13
What is median?
Assignment 13
What is median?
It is a middle element of the sorted list.
Assignment 13
What is median?
It is a middle element of the sorted list.
1 2 3 4 5
Ex:
Assignment 13
What is median?
It is a middle element of the sorted list.
What is the median of above array?
1 2 3 4 5
Ex:
Assignment 13
What is median?
It is a middle element of the sorted list.
What is the median of above array?
Median = 3
1 2 3 4 5
Ex:
Assignment 13
What is median?
What is the median, if the array is unsorted?
Assignment 13
What is median?
What is the median, if the array is unsorted?
4 7 3 2 9
Ex: Unsorted array
Assignment 13
What is median?
What is the median, if the array is unsorted?
 Sort the array elements in ascending order first and then find
the median.
4 7 3 2 9
Ex: Unsorted array
Assignment 13
What is median?
What is the median, if the array is unsorted?
 Sort the array elements in ascending order first and then find
the median.
4 7 3 2 9
Ex:
2 3 4 7 9 Sorted array
Unsorted array
Assignment 13
What is median?
What is the median, if the array is unsorted?
 Sort the array elements in ascending order first and then find
the median.
 What is the median(middle element)?
4 7 3 2 9
Ex:
2 3 4 7 9 Sorted array
Unsorted array
Assignment 13
What is median?
What is the median, if the array is unsorted?
 Sort the array elements in ascending order first and then find
the median.
 What is the median(middle element)?
 Median = 4.
4 7 3 2 9
Ex:
2 3 4 7 9 Sorted array
Unsorted array
Assignment 13
What is median?
It is a middle element of the sorted list.
1 2 3 4 5 6
Ex:
Assignment 13
What is median?
It is a middle element of the sorted list.
There are two middle elements (i.e) -> 3 and 4
1 2 3 4 5 6
Ex:
Assignment 13
What is median?
It is a middle element of the sorted list.
There are two middle elements (i.e) -> 3 and 4
Which element will be the median?
1 2 3 4 5 6
Ex:
Assignment 13
What is median?
It is a middle element of the sorted list.
There are two middle elements (i.e) -> 3 and 4
Which element will be the median?
Median = average of 3 & 4
1 2 3 4 5 6
Ex:
Assignment 13
What is median?
It is a middle element of the sorted list.
There are two middle elements (i.e) -> 3 and 4
Which element will be the median?
Median = average of 3 & 4
= (3 + 4) / 2
= 3.5
1 2 3 4 5 6
Ex:
Assignment 13
Pseudocode of BubbleSort Algorithm:-
Assignment 13
Pseudocode of BubbleSort Algorithm:-
Assignment 13
Bubble sort Example:-
7 6 3 4
Assignment 13
Bubble sort Example:-
7 6 3 4
6 7 3 4
Assignment 13
Bubble sort Example:-
7 6 3 4
6 7 3 4
6 3 7 4
Assignment 13
Bubble sort Example:-
7 6 3 4
6 7 3 4
6 3 7 4
6 3 4 7
1st Pass
Assignment 13
Bubble sort Example:-
7 6 3 4
6 7 3 4
6 3 7 4
6 3 4 7
6 3 4 7
1st Pass
Assignment 13
Bubble sort Example:-
7 6 3 4
6 7 3 4
6 3 7 4
6 3 4 7
3 6 4 7
6 3 4 7
1st Pass
Assignment 13
Bubble sort Example:-
7 6 3 4
6 7 3 4
6 3 7 4
6 3 4 7
3 6 4 7
3 4 6 7
6 3 4 7
1st Pass 2nd Pass
Assignment 13
Bubble sort Example:-
7 6 3 4
6 7 3 4
6 3 7 4
6 3 4 7
3 6 4 7
3 4 6 7
6 3 4 7
3 4 6 7
1st Pass 2nd Pass
Assignment 13
Bubble sort Example:-
7 6 3 4
6 7 3 4
6 3 7 4
6 3 4 7
3 6 4 7
3 4 6 7
6 3 4 7
3 4 6 7
3 4 6 7
1st Pass 3rd Pass
2nd Pass
Assignment 13
Example :-
Assignment 13
Example :-
Step 1 : Read size ‘M’ and ‘N’
Assignment 13
Example :-
Step 1 : Read size ‘M’ and ‘N’
M = 7 , N = 7
Assignment 13
Example :-
Step 1 : Read size ‘M’ and ‘N’
M = 7 , N = 7
Step 2 : Read array1 elements of size ‘M’
Assignment 13
Example :-
Step 1 : Read size ‘M’ and ‘N’
M = 7 , N = 7
Step 2 : Read array1 elements of size ‘M’
5 1 4 8 6 2 9
Assignment 13
Example :-
Step 1 : Read size ‘M’ and ‘N’
M = 7 , N = 7
Step 2 : Read array1 elements of size ‘M’
Step 3 : Read array2 elements of size ‘N’
5 1 4 8 6 2 9
Assignment 13
Example :-
Step 1 : Read size ‘M’ and ‘N’
M = 7 , N = 7
Step 2 : Read array1 elements of size ‘M’
Step 3 : Read array2 elements of size ‘N’
5 1 4 8 6 2 9
4 2 7 1 5 3 6
Assignment 13
Example :-
Step 4 : Sort the array1
Assignment 13
Example :-
Step 4 : Sort the array1
After sorting , array1 elements are
Assignment 13
Example :-
Step 4 : Sort the array1
After sorting , array1 elements are
1 2 4 5 6 8 9
Assignment 13
Example :-
Step 4 : Sort the array1
After sorting , array1 elements are
Step 5 : Sort the array2
1 2 4 5 6 8 9
Assignment 13
Example :-
Step 4 : Sort the array1
After sorting , array1 elements are
Step 5 : Sort the array2
After sorting , array2 elements are
1 2 4 5 6 8 9
Assignment 13
Example :-
Step 4 : Sort the array1
After sorting , array1 elements are
Step 5 : Sort the array2
After sorting , array2 elements are
1 2 3 4 5 6 7
1 2 4 5 6 8 9
Assignment 13
Example :-
Step 6 : Print the median of array1
Assignment 13
Example :-
Step 6 : Print the median of array1
1 2 4 5 6 8 9
Assignment 13
Example :-
Step 6 : Print the median of array1
Median of array1(Median1) = 5
1 2 4 5 6 8 9
Assignment 13
Example :-
Step 6 : Print the median of array1
Median of array1(Median1) = 5
Step 7 : Print the median of array2
1 2 4 5 6 8 9
Assignment 13
Example :-
Step 6 : Print the median of array1
Median of array1(Median1) = 5
Step 7 : Print the median of array2
1 2 4 5 6 8 9
1 2 3 4 5 6 7
Assignment 13
Example :-
Step 6 : Print the median of array1
Median of array1(Median1) = 5
Step 7 : Print the median of array2
Median of array2(Median1) = 4
1 2 4 5 6 8 9
1 2 3 4 5 6 7
Assignment 13
Example :-
Step 8 : Print the average of Median1 and Median2 (i.e., median
for both the arrays)
Assignment 13
Example :-
Step 8 : Print the average of Median1 and Median2 (i.e., median
for both the arrays)
Final median = (5 + 4) / 2 = 4.5
Assignment 13
Example :-
Step 8 : Print the average of Median1 and Median2 (i.e., median
for both the arrays)
Final median = (5 + 4) / 2 = 4.5
What is the output, if you print
median using %f ?
What is the output, if you print
median using %g ?
Assignment 13
Example :-
Step 8 : Print the average of Median1 and Median2 (i.e., median
for both the arrays)
Final median = (5 + 4) / 2 = 4.5
What is the output, if you print
median using %f ?
Output: 4.500000
What is the output, if you print
median using %g ?
Output: 4.5
%g is used to print the decimal floating-point values, and it uses the
fixed precision.
Assignment 13
Example :-
Step 1 : Read size ‘M’ and ‘N’
Assignment 13
Example :-
Step 1 : Read size ‘M’ and ‘N’
M = 4 , N = 5
Assignment 13
Example :-
Step 1 : Read size ‘M’ and ‘N’
M = 4 , N = 5
Step 2 : Read array1 elements of size ‘M’
Assignment 13
Example :-
Step 1 : Read size ‘M’ and ‘N’
M = 4 , N = 5
Step 2 : Read array1 elements of size ‘M’
5 2 6 1
Assignment 13
Example :-
Step 1 : Read size ‘M’ and ‘N’
M = 4 , N = 5
Step 2 : Read array1 elements of size ‘M’
Step 3 : Read array2 elements of size ‘N’
5 2 6 1
Assignment 13
Example :-
Step 1 : Read size ‘M’ and ‘N’
M = 4 , N = 5
Step 2 : Read array1 elements of size ‘M’
Step 3 : Read array2 elements of size ‘N’
5 2 6 1
6 1 7 5 4
Assignment 13
Example :-
Step 4 : Sort the array1
Assignment 13
Example :-
Step 4 : Sort the array1
After sorting , array1 elements are
Assignment 13
Example :-
Step 4 : Sort the array1
After sorting , array1 elements are
1 2 5 6
Assignment 13
Example :-
Step 4 : Sort the array1
After sorting , array1 elements are
Step 5 : Sort the array2
1 2 5 6
Assignment 13
Example :-
Step 4 : Sort the array1
After sorting , array1 elements are
Step 5 : Sort the array2
After sorting , array2 elements are
1 2 5 6
Assignment 13
Example :-
Step 4 : Sort the array1
After sorting , array1 elements are
Step 5 : Sort the array2
After sorting , array2 elements are
1 2 5 6
1 4 5 6 7
Assignment 13
Example :-
Step 6 : Print the median of array1
Assignment 13
Example :-
Step 6 : Print the median of array1
1 2 5 6
Assignment 13
Example :-
Step 6 : Print the median of array1
Median of array1(Median1) = (2 + 5) / 2 = 3.5
1 2 5 6
Assignment 13
Example :-
Step 6 : Print the median of array1
Median of array1(Median1) = (2 + 5) / 2 = 3.5
Step 7 : Print the median of array2
1 2 5 6
Assignment 13
Example :-
Step 6 : Print the median of array1
Median of array1(Median1) = (2 + 5) / 2 = 3.5
Step 7 : Print the median of array2
1 2 5 6
1 4 5 6 7
Assignment 13
Example :-
Step 6 : Print the median of array1
Median of array1(Median1) = (2 + 5) / 2 = 3.5
Step 7 : Print the median of array2
Median of array2(Median1) = 5
1 2 5 6
1 4 5 6 7
Assignment 13
Example :-
Step 8 : Print the average of Median1 and Median2 (i.e median
for both the arrays)
Assignment 13
Example :-
Step 8 : Print the average of Median1 and Median2 (i.e median
for both the arrays)
Final median = (3.5 + 5) / 2 = 4.25
Sample execution:-
Assignment 13
Sample execution:-
Assignment 13
Sample execution:-
Assignment 13
Assignment 13
Pre-requisites:-
Assignment 13
Pre-requisites:-
Loops
Assignment 13
Pre-requisites:-
Loops
Arrays
Assignment 13
Pre-requisites:-
Loops
Arrays
Objective:-
Assignment 13
Pre-requisites:-
Loops
Arrays
Objective:-
To understand the concept of One-dimensional Arrays
Team Emertxe
Thank you

More Related Content

What's hot

Central tendency
Central tendencyCentral tendency
Central tendencyAnil Kr Jha
 
Grade 10 Math Module 1 searching for patterns, sequence and series
Grade 10 Math Module 1   searching for patterns, sequence and seriesGrade 10 Math Module 1   searching for patterns, sequence and series
Grade 10 Math Module 1 searching for patterns, sequence and seriesJocel Sagario
 
Mean Median Mode Range
Mean Median Mode RangeMean Median Mode Range
Mean Median Mode Rangeguestda4150
 
Measures of central_tendency._mean,median,mode[1]
Measures of central_tendency._mean,median,mode[1]Measures of central_tendency._mean,median,mode[1]
Measures of central_tendency._mean,median,mode[1]Samuel Roy
 
Geometry Section 2-10
Geometry Section 2-10Geometry Section 2-10
Geometry Section 2-10Jimbo Lamb
 
Geometric Sequence by Alma Baja
Geometric Sequence by Alma BajaGeometric Sequence by Alma Baja
Geometric Sequence by Alma BajaNhatz Marticio
 
Combined mean and Weighted Arithmetic Mean
Combined mean and  Weighted Arithmetic MeanCombined mean and  Weighted Arithmetic Mean
Combined mean and Weighted Arithmetic MeanMamatha Upadhya
 
5As Method of Lesson Plan on Ssolving systems of linear equations in two vari...
5As Method of Lesson Plan on Ssolving systems of linear equations in two vari...5As Method of Lesson Plan on Ssolving systems of linear equations in two vari...
5As Method of Lesson Plan on Ssolving systems of linear equations in two vari...Elton John Embodo
 
Notes and-formulae-mathematics
Notes and-formulae-mathematicsNotes and-formulae-mathematics
Notes and-formulae-mathematicsRagulan Dev
 
Integral parsial
Integral parsialIntegral parsial
Integral parsialLionaPutri1
 
4.8 --arithmetic-sequences
4.8 --arithmetic-sequences4.8 --arithmetic-sequences
4.8 --arithmetic-sequencesKarnatakaOER
 
Sequence and series
Sequence and seriesSequence and series
Sequence and seriesviannafaye
 

What's hot (20)

Central tendency
Central tendencyCentral tendency
Central tendency
 
Grade 10 Math Module 1 searching for patterns, sequence and series
Grade 10 Math Module 1   searching for patterns, sequence and seriesGrade 10 Math Module 1   searching for patterns, sequence and series
Grade 10 Math Module 1 searching for patterns, sequence and series
 
Matrix
MatrixMatrix
Matrix
 
Mean Median Mode Range
Mean Median Mode RangeMean Median Mode Range
Mean Median Mode Range
 
Calculation of mode
Calculation of modeCalculation of mode
Calculation of mode
 
Measures of central_tendency._mean,median,mode[1]
Measures of central_tendency._mean,median,mode[1]Measures of central_tendency._mean,median,mode[1]
Measures of central_tendency._mean,median,mode[1]
 
Mode
ModeMode
Mode
 
Geometry Section 2-10
Geometry Section 2-10Geometry Section 2-10
Geometry Section 2-10
 
Geometric Sequence by Alma Baja
Geometric Sequence by Alma BajaGeometric Sequence by Alma Baja
Geometric Sequence by Alma Baja
 
Combined mean and Weighted Arithmetic Mean
Combined mean and  Weighted Arithmetic MeanCombined mean and  Weighted Arithmetic Mean
Combined mean and Weighted Arithmetic Mean
 
Arithmetic Sequence
Arithmetic SequenceArithmetic Sequence
Arithmetic Sequence
 
5As Method of Lesson Plan on Ssolving systems of linear equations in two vari...
5As Method of Lesson Plan on Ssolving systems of linear equations in two vari...5As Method of Lesson Plan on Ssolving systems of linear equations in two vari...
5As Method of Lesson Plan on Ssolving systems of linear equations in two vari...
 
Combined mean
Combined meanCombined mean
Combined mean
 
Notes and-formulae-mathematics
Notes and-formulae-mathematicsNotes and-formulae-mathematics
Notes and-formulae-mathematics
 
Median
MedianMedian
Median
 
Arithmetic sequence
Arithmetic sequenceArithmetic sequence
Arithmetic sequence
 
Integral parsial
Integral parsialIntegral parsial
Integral parsial
 
4.8 --arithmetic-sequences
4.8 --arithmetic-sequences4.8 --arithmetic-sequences
4.8 --arithmetic-sequences
 
Sequence and series
Sequence and seriesSequence and series
Sequence and series
 
Sequence and series
Sequence and seriesSequence and series
Sequence and series
 

Similar to 13_median.pdf

Similar to 13_median.pdf (20)

Data structure algorithm
Data structure algorithmData structure algorithm
Data structure algorithm
 
14_3rd_largest.pdf
14_3rd_largest.pdf14_3rd_largest.pdf
14_3rd_largest.pdf
 
15_remove_duplicates.pdf
15_remove_duplicates.pdf15_remove_duplicates.pdf
15_remove_duplicates.pdf
 
squares and square roots
squares and square rootssquares and square roots
squares and square roots
 
Squares and square roots
Squares and square rootsSquares and square roots
Squares and square roots
 
Bs,qs,divide and conquer 1
Bs,qs,divide and conquer 1Bs,qs,divide and conquer 1
Bs,qs,divide and conquer 1
 
Module 2_ Divide and Conquer Approach.pptx
Module 2_ Divide and Conquer Approach.pptxModule 2_ Divide and Conquer Approach.pptx
Module 2_ Divide and Conquer Approach.pptx
 
05_fragments.pdf
05_fragments.pdf05_fragments.pdf
05_fragments.pdf
 
Sorting
SortingSorting
Sorting
 
Data structure using c module 3
Data structure using c module 3Data structure using c module 3
Data structure using c module 3
 
Sorting algorithms
Sorting algorithmsSorting algorithms
Sorting algorithms
 
CMPS 5P Assignment 3 Spring 19Instructions1. The aim o.docx
CMPS 5P Assignment 3 Spring 19Instructions1. The aim o.docxCMPS 5P Assignment 3 Spring 19Instructions1. The aim o.docx
CMPS 5P Assignment 3 Spring 19Instructions1. The aim o.docx
 
Advanced s and s algorithm.ppt
Advanced s and s algorithm.pptAdvanced s and s algorithm.ppt
Advanced s and s algorithm.ppt
 
sorting.pptx
sorting.pptxsorting.pptx
sorting.pptx
 
07_product_matrix.pdf
07_product_matrix.pdf07_product_matrix.pdf
07_product_matrix.pdf
 
CP1-Chp6-Matrices (2).pptx used for revision
CP1-Chp6-Matrices (2).pptx used for revisionCP1-Chp6-Matrices (2).pptx used for revision
CP1-Chp6-Matrices (2).pptx used for revision
 
Sorting algorithms
Sorting algorithmsSorting algorithms
Sorting algorithms
 
Merge sort analysis and its real time applications
Merge sort analysis and its real time applicationsMerge sort analysis and its real time applications
Merge sort analysis and its real time applications
 
Sorting
SortingSorting
Sorting
 
presentation on b tress. heap trees.hashing
presentation on b tress. heap trees.hashingpresentation on b tress. heap trees.hashing
presentation on b tress. heap trees.hashing
 

More from Emertxe Information Technologies Pvt Ltd

More from Emertxe Information Technologies Pvt Ltd (20)

premium post (1).pdf
premium post (1).pdfpremium post (1).pdf
premium post (1).pdf
 
Career Transition (1).pdf
Career Transition (1).pdfCareer Transition (1).pdf
Career Transition (1).pdf
 
10_isxdigit.pdf
10_isxdigit.pdf10_isxdigit.pdf
10_isxdigit.pdf
 
01_student_record.pdf
01_student_record.pdf01_student_record.pdf
01_student_record.pdf
 
02_swap.pdf
02_swap.pdf02_swap.pdf
02_swap.pdf
 
01_sizeof.pdf
01_sizeof.pdf01_sizeof.pdf
01_sizeof.pdf
 
06_sort_names.pdf
06_sort_names.pdf06_sort_names.pdf
06_sort_names.pdf
 
04_magic_square.pdf
04_magic_square.pdf04_magic_square.pdf
04_magic_square.pdf
 
03_endianess.pdf
03_endianess.pdf03_endianess.pdf
03_endianess.pdf
 
02_variance.pdf
02_variance.pdf02_variance.pdf
02_variance.pdf
 
01_memory_manager.pdf
01_memory_manager.pdf01_memory_manager.pdf
01_memory_manager.pdf
 
09_nrps.pdf
09_nrps.pdf09_nrps.pdf
09_nrps.pdf
 
11_pangram.pdf
11_pangram.pdf11_pangram.pdf
11_pangram.pdf
 
10_combinations.pdf
10_combinations.pdf10_combinations.pdf
10_combinations.pdf
 
08_squeeze.pdf
08_squeeze.pdf08_squeeze.pdf
08_squeeze.pdf
 
07_strtok.pdf
07_strtok.pdf07_strtok.pdf
07_strtok.pdf
 
06_reverserec.pdf
06_reverserec.pdf06_reverserec.pdf
06_reverserec.pdf
 
05_reverseiter.pdf
05_reverseiter.pdf05_reverseiter.pdf
05_reverseiter.pdf
 
04_itoa.pdf
04_itoa.pdf04_itoa.pdf
04_itoa.pdf
 
03_atoi.pdf
03_atoi.pdf03_atoi.pdf
03_atoi.pdf
 

Recently uploaded

Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfChris Hunter
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docxPoojaSen20
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docxPoojaSen20
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...KokoStevan
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Shubhangi Sonawane
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Gardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch LetterGardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch LetterMateoGardella
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
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
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfAyushMahapatra5
 
Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.MateoGardella
 

Recently uploaded (20)

Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Gardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch LetterGardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch Letter
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
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
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
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
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet 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
 
Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.
 

13_median.pdf