SlideShare a Scribd company logo
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 tendency
Anil 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 series
Jocel Sagario
 
Matrix
MatrixMatrix
Mean Median Mode Range
Mean Median Mode RangeMean Median Mode Range
Mean Median Mode Range
guestda4150
 
Calculation of mode
Calculation of modeCalculation of mode
Calculation of mode
Dr. Sunita Ojha
 
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
 
Mode
ModeMode
Geometry Section 2-10
Geometry Section 2-10Geometry Section 2-10
Geometry Section 2-10
Jimbo Lamb
 
Geometric Sequence by Alma Baja
Geometric Sequence by Alma BajaGeometric Sequence by Alma Baja
Geometric Sequence by Alma Baja
Nhatz Marticio
 
Combined mean and Weighted Arithmetic Mean
Combined mean and  Weighted Arithmetic MeanCombined mean and  Weighted Arithmetic Mean
Combined mean and Weighted Arithmetic Mean
Mamatha Upadhya
 
Arithmetic Sequence
Arithmetic SequenceArithmetic Sequence
Arithmetic Sequence
Dan Brille Despi
 
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
 
Combined mean
Combined meanCombined mean
Combined mean
Nadeem Uddin
 
Notes and-formulae-mathematics
Notes and-formulae-mathematicsNotes and-formulae-mathematics
Notes and-formulae-mathematics
Ragulan Dev
 
Median
MedianMedian
Median
Nadeem Uddin
 
Arithmetic sequence
Arithmetic sequenceArithmetic sequence
Arithmetic sequence
Cajidiocan National High School
 
Integral parsial
Integral parsialIntegral parsial
Integral parsial
LionaPutri1
 
4.8 --arithmetic-sequences
4.8 --arithmetic-sequences4.8 --arithmetic-sequences
4.8 --arithmetic-sequences
KarnatakaOER
 
Sequence and series
Sequence and seriesSequence and series
Sequence and series
Denmar Marasigan
 
Sequence and series
Sequence and seriesSequence and series
Sequence and series
viannafaye
 

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

Data structure algorithm
Data structure algorithmData structure algorithm
Data structure algorithm
PriyadharshiniVS
 
14_3rd_largest.pdf
14_3rd_largest.pdf14_3rd_largest.pdf
15_remove_duplicates.pdf
15_remove_duplicates.pdf15_remove_duplicates.pdf
squares and square roots
squares and square rootssquares and square roots
squares and square roots
Charchit Art
 
Squares and square roots
Squares and square rootsSquares and square roots
Squares and square roots
Charchit Art
 
Bs,qs,divide and conquer 1
Bs,qs,divide and conquer 1Bs,qs,divide and conquer 1
Bs,qs,divide and conquer 1
subhashchandra197
 
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
nikshaikh786
 
05_fragments.pdf
05_fragments.pdf05_fragments.pdf
Sorting
SortingSorting
Data structure using c module 3
Data structure using c module 3Data structure using c module 3
Data structure using c module 3
smruti sarangi
 
Sorting algorithms
Sorting algorithmsSorting algorithms
Sorting algorithms
Zaid Hameed
 
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
mary772
 
Advanced s and s algorithm.ppt
Advanced s and s algorithm.pptAdvanced s and s algorithm.ppt
Advanced s and s algorithm.ppt
LegesseSamuel
 
sorting.pptx
sorting.pptxsorting.pptx
sorting.pptx
DrRanjeetKumar51721
 
07_product_matrix.pdf
07_product_matrix.pdf07_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
rachaelgiwa11
 
Sorting algorithms
Sorting algorithmsSorting algorithms
Sorting algorithms
CHANDAN KUMAR
 
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
yazad dumasia
 
Sorting
SortingSorting
Sorting
Sameer Memon
 
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
Bindiya syed
 

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

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

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

Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
Dr. Mulla Adam Ali
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
AyyanKhan40
 
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
Peter Windle
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
camakaiclarkmusic
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
adhitya5119
 
How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17
Celine George
 
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat  Leveraging AI for Diversity, Equity, and InclusionExecutive Directors Chat  Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
TechSoup
 
PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
Dr. Shivangi Singh Parihar
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: 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
 
Azure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHatAzure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHat
Scholarhat
 
How to Build a Module in Odoo 17 Using the Scaffold Method
How to Build a Module in Odoo 17 Using the Scaffold MethodHow to Build a Module in Odoo 17 Using the Scaffold Method
How to Build a Module in Odoo 17 Using the Scaffold Method
Celine George
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
Priyankaranawat4
 
Smart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICTSmart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICT
simonomuemu
 
A Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdfA Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdf
Jean Carlos Nunes Paixão
 
A Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptxA Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptx
thanhdowork
 
World environment day ppt For 5 June 2024
World environment day ppt For 5 June 2024World environment day ppt For 5 June 2024
World environment day ppt For 5 June 2024
ak6969907
 
How to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP ModuleHow to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP Module
Celine George
 
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
IreneSebastianRueco1
 

Recently uploaded (20)

Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
 
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
 
How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17
 
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat  Leveraging AI for Diversity, Equity, and InclusionExecutive Directors Chat  Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
 
PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: 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
 
Azure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHatAzure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHat
 
How to Build a Module in Odoo 17 Using the Scaffold Method
How to Build a Module in Odoo 17 Using the Scaffold MethodHow to Build a Module in Odoo 17 Using the Scaffold Method
How to Build a Module in Odoo 17 Using the Scaffold Method
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
 
Smart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICTSmart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICT
 
A Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdfA Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdf
 
A Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptxA Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptx
 
World environment day ppt For 5 June 2024
World environment day ppt For 5 June 2024World environment day ppt For 5 June 2024
World environment day ppt For 5 June 2024
 
How to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP ModuleHow to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP Module
 
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
 

13_median.pdf