SlideShare a Scribd company logo
1 of 61
Download to read offline
Team Emertxe
Basic Refresher
Assignment 12
Assignment 12
Assignment 12
WAP to print all prime numbers <= ‘num’ using Sieve of
Eratosthenes method.
Assignment 12
WAP to print all prime numbers <= ‘num’ using Sieve of
Eratosthenes method.
Input:
Assignment 12
WAP to print all prime numbers <= ‘num’ using Sieve of
Eratosthenes method.
Input: Read integer ‘num’
Assignment 12
WAP to print all prime numbers <= ‘num’ using Sieve of
Eratosthenes method.
Input: Read integer ‘num’
Output:
Assignment 12
WAP to print all prime numbers <= ‘num’ using Sieve of
Eratosthenes method.
Input: Read integer ‘num’
Output: Print the prime numbers less than or equal to ‘num’
Assignment 12
What is a Prime number?
Assignment 12
What is a Prime number?
 A number that is divisible only by itself and 1.
Assignment 12
What is a Prime number?
 A number that is divisible only by itself and 1.
 Examples: 2, 3, 5, 7, 11 etc.
Assignment 12
Sieve of Eratosthenes:-
Assignment 12
Sieve of Eratosthenes:-
⮚The sieve of Eratosthenes is one of the most efficient ways to
find all of the smaller primes.
Assignment 12
Sieve of Eratosthenes:-
⮚The sieve of Eratosthenes is one of the most efficient ways to
find all of the smaller primes.
⮚Generate a list of integers from 2 to 20
Assignment 12
Sieve of Eratosthenes:-
⮚The sieve of Eratosthenes is one of the most efficient ways to
find all of the smaller primes.
⮚Generate a list of integers from 2 to 20
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Assignment 12
Sieve of Eratosthenes:-
⮚The sieve of Eratosthenes is one of the most efficient ways to
find all of the smaller primes.
⮚Generate a list of integers from 2 to 20
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Assignment 12
Sieve of Eratosthenes:-
⮚The first number in the list is 2; cross out every multiples of
2.
Assignment 12
Sieve of Eratosthenes:-
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
X
i
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Assignment 12
Sieve of Eratosthenes:-
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
X X
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
i
Assignment 12
Sieve of Eratosthenes:-
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
X X X
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
i
Assignment 12
Sieve of Eratosthenes:-
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
X X X
X X
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
i
Assignment 12
Sieve of Eratosthenes:-
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
X X X
X X X
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
i
Assignment 12
Sieve of Eratosthenes:-
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
X X X
X X X X
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
i
Assignment 12
Sieve of Eratosthenes:-
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
X X X
X X X X X
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
i
Assignment 12
Sieve of Eratosthenes:-
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
X X X
X X X X X X
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
i
Assignment 12
Sieve of Eratosthenes:-
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
X X X
X X X X X X X
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
i
Assignment 12
Sieve of Eratosthenes:-
⮚ Can we remove array elements?
Assignment 12
Sieve of Eratosthenes:-
⮚ Can we remove array elements?
We cannot remove array elements
Assignment 12
Sieve of Eratosthenes:-
⮚ Can we remove array elements?
We cannot remove array elements
⮚What can be done?
Assignment 12
Sieve of Eratosthenes:-
⮚ Can we remove array elements?
We cannot remove array elements
⮚What can be done?
Make it as 0
Assignment 12
Sieve of Eratosthenes:-
⮚ Can we remove array elements?
We cannot remove array elements
⮚What can be done?
Make it as 0
2 3 0 5 0 7 0 9 0 11 0 13 0 15 0 17 0 19 0
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Assignment 12
Sieve of Eratosthenes:-
⮚The next number in the list is 3, make multiples of 3 as 0
2 3 0 5 0 7 0 9 0 11 0 13 0 15 0 17 0 19 0
i
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Assignment 12
Sieve of Eratosthenes:-
⮚ The next number in the list is 3, make multiples of 3 as 0
2 3 0 5 0 7 0 0 0 11 0 13 0 15 0 17 0 19 0
i
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Assignment 12
Sieve of Eratosthenes:-
⮚ The next number in the list is 3, make multiples of 3 as 0
2 3 0 5 0 7 0 0 0 11 0 13 0 0 0 17 0 19 0
i
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Assignment 12
Sieve of Eratosthenes:-
⮚The next number which is not removed is 5.
2 3 0 5 0 7 0 0 0 11 0 13 0 0 0 17 0 19 0
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
i
Assignment 12
Sieve of Eratosthenes:-
⮚ The next number which is not removed is 5.
⮚It is not necessary to remove multiples of 5, because all non
prime numbers has been removed.
2 3 0 5 0 7 0 0 0 11 0 13 0 0 0 17 0 19 0
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
i
⮚Print all the non-zero numbers from the list.
Assignment 12
Sieve of Eratosthenes:-
2 3 0 5 0 7 0 0 0 11 0 13 0 0 0 17 0 19 0
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
⮚Prime numbers are:
2, 3, 5, 7, 11, 13, 17, 19
Assignment 12
Sieve of Eratosthenes:-
Assignment 12
Example’s:
Assignment 12
Example’s:
⮚Input:
Assignment 12
Example’s:
⮚Input: num = 20
Assignment 12
Example’s:
⮚Input: num = 20
Output:
Assignment 12
Example’s:
⮚Input: num = 20
Output: 2, 3, 5, 7, 11, 13, 17, 19
Assignment 12
Example’s:
⮚Input: num = 20
Output: 2, 3, 5, 7, 11, 13, 17, 19
⮚Input:
Assignment 12
Example’s:
⮚Input: num = 20
Output: 2, 3, 5, 7, 11, 13, 17, 19
⮚Input: num = 30
Assignment 12
Example’s:
⮚Input: num = 20
Output: 2, 3, 5, 7, 11, 13, 17, 19
⮚Input: num = 30
Output:
Assignment 12
Example’s:
⮚Input: num = 20
Output: 2, 3, 5, 7, 11, 13, 17, 19
⮚Input: num = 30
Output: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29
Assignment 12
Example’s:
⮚Input: num = 20
Output: 2, 3, 5, 7, 11, 13, 17, 19
⮚Input: num = 30
Output: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29
⮚Input:
Assignment 12
Example’s:
⮚Input: num = 20
Output: 2, 3, 5, 7, 11, 13, 17, 19
⮚Input: num = 30
Output: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29
⮚Input: num = -20
Assignment 12
Example’s:
⮚Input: num = 20
Output: 2, 3, 5, 7, 11, 13, 17, 19
⮚Input: num = 30
Output: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29
⮚Input: num = -20
Output:
Assignment 12
Example’s:
⮚Input: num = 20
Output: 2, 3, 5, 7, 11, 13, 17, 19
⮚Input: num = 30
Output: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29
⮚Input: num = -20
Output: Please enter a positive number which is > 1
Sample execution:-
Assignment 12
Sample execution:-
Assignment 12
Sample execution:-
Assignment 12
Assignment 12
Pre-requisites:-
Assignment 12
Pre-requisites:-
⮚Loops
Assignment 12
Pre-requisites:-
⮚Loops
⮚Operators
Assignment 12
Pre-requisites:-
⮚Loops
⮚Operators
⮚Arrays
Assignment 12
Pre-requisites:-
⮚Loops
⮚Operators
⮚Arrays
Objective:-
Assignment 12
Pre-requisites:-
⮚Loops
⮚Operators
⮚Arrays
Objective:-
⮚To understand the concept of if-else constructs and arrays.
Team Emertxe
Thank you

More Related Content

What's hot

What's hot (12)

Amazing Maths Trick
Amazing Maths TrickAmazing Maths Trick
Amazing Maths Trick
 
Amazing trick
Amazing trickAmazing trick
Amazing trick
 
Magic math
Magic mathMagic math
Magic math
 
Math book
Math bookMath book
Math book
 
Math tricks
Math tricksMath tricks
Math tricks
 
Math for 800 04 integers, fractions and percents
Math for 800   04 integers, fractions and percentsMath for 800   04 integers, fractions and percents
Math for 800 04 integers, fractions and percents
 
Amazing Math Tricks
Amazing Math TricksAmazing Math Tricks
Amazing Math Tricks
 
Math magic, tricky math
Math magic, tricky mathMath magic, tricky math
Math magic, tricky math
 
Multiplying Numbers By 11 To 19
Multiplying Numbers  By 11 To 19Multiplying Numbers  By 11 To 19
Multiplying Numbers By 11 To 19
 
Mathinik
MathinikMathinik
Mathinik
 
Long division
Long divisionLong division
Long division
 
Mathematics 101
Mathematics 101Mathematics 101
Mathematics 101
 

Similar to 12_prime.pdf

Overview of sparse and low-rank matrix / tensor techniques
Overview of sparse and low-rank matrix / tensor techniques Overview of sparse and low-rank matrix / tensor techniques
Overview of sparse and low-rank matrix / tensor techniques Alexander Litvinenko
 
Everyday Math And Algorithms Ppt July 06
Everyday Math And Algorithms Ppt July 06Everyday Math And Algorithms Ppt July 06
Everyday Math And Algorithms Ppt July 06lcirulli
 
W1-L1 Negative-numbers-ppt..pptx
W1-L1 Negative-numbers-ppt..pptxW1-L1 Negative-numbers-ppt..pptx
W1-L1 Negative-numbers-ppt..pptxGhassan44
 
Subtract Mixed Numbers
Subtract Mixed NumbersSubtract Mixed Numbers
Subtract Mixed NumbersBrooke Young
 
Vedic mathematicss-R.SANKAR
Vedic mathematicss-R.SANKARVedic mathematicss-R.SANKAR
Vedic mathematicss-R.SANKARSankar Rangasamy
 
Vedic mathematicss by SANKAR
Vedic mathematicss by SANKARVedic mathematicss by SANKAR
Vedic mathematicss by SANKARSankar Rangasamy
 
17 ch ken black solution
17 ch ken black solution17 ch ken black solution
17 ch ken black solutionKrunal Shah
 
1.2 Irrational Numbers ppt
1.2 Irrational Numbers ppt1.2 Irrational Numbers ppt
1.2 Irrational Numbers pptSandra Johnson
 
UNIT I_PSPP - Illustrative Problems (1).pptx
UNIT I_PSPP - Illustrative Problems (1).pptxUNIT I_PSPP - Illustrative Problems (1).pptx
UNIT I_PSPP - Illustrative Problems (1).pptxRSathyaPriyaCSEKIOT
 
A higher problem solving strategy
A higher problem solving strategyA higher problem solving strategy
A higher problem solving strategyAan Hendroanto
 
1.basic of fractions
1.basic of fractions1.basic of fractions
1.basic of fractionsDreams4school
 
Multiplying trinomials and binomials
Multiplying trinomials and binomialsMultiplying trinomials and binomials
Multiplying trinomials and binomialsdvinson
 
Calculation techniques in numbers
Calculation techniques in numbersCalculation techniques in numbers
Calculation techniques in numberssealih
 
Math 1314 College Algebra Arithmetic Review
Math 1314 College Algebra Arithmetic ReviewMath 1314 College Algebra Arithmetic Review
Math 1314 College Algebra Arithmetic ReviewCCoffmanHowardCollege
 
G6- Prime and Composite.pptx
G6- Prime and Composite.pptxG6- Prime and Composite.pptx
G6- Prime and Composite.pptxEnaidRonquillo
 
The real Number system
The real Number systemThe real Number system
The real Number systemRawabi Alz
 

Similar to 12_prime.pdf (20)

Overview of sparse and low-rank matrix / tensor techniques
Overview of sparse and low-rank matrix / tensor techniques Overview of sparse and low-rank matrix / tensor techniques
Overview of sparse and low-rank matrix / tensor techniques
 
Everyday Math And Algorithms Ppt July 06
Everyday Math And Algorithms Ppt July 06Everyday Math And Algorithms Ppt July 06
Everyday Math And Algorithms Ppt July 06
 
W1-L1 Negative-numbers-ppt..pptx
W1-L1 Negative-numbers-ppt..pptxW1-L1 Negative-numbers-ppt..pptx
W1-L1 Negative-numbers-ppt..pptx
 
Subtract Mixed Numbers
Subtract Mixed NumbersSubtract Mixed Numbers
Subtract Mixed Numbers
 
Vedic mathematicss-R.SANKAR
Vedic mathematicss-R.SANKARVedic mathematicss-R.SANKAR
Vedic mathematicss-R.SANKAR
 
Vedic mathematicss by SANKAR
Vedic mathematicss by SANKARVedic mathematicss by SANKAR
Vedic mathematicss by SANKAR
 
17 ch ken black solution
17 ch ken black solution17 ch ken black solution
17 ch ken black solution
 
1.2 Irrational Numbers ppt
1.2 Irrational Numbers ppt1.2 Irrational Numbers ppt
1.2 Irrational Numbers ppt
 
irrational number.pdf
irrational number.pdfirrational number.pdf
irrational number.pdf
 
LEC 8-DS ALGO(heaps).pdf
LEC 8-DS  ALGO(heaps).pdfLEC 8-DS  ALGO(heaps).pdf
LEC 8-DS ALGO(heaps).pdf
 
UNIT I_PSPP - Illustrative Problems (1).pptx
UNIT I_PSPP - Illustrative Problems (1).pptxUNIT I_PSPP - Illustrative Problems (1).pptx
UNIT I_PSPP - Illustrative Problems (1).pptx
 
A higher problem solving strategy
A higher problem solving strategyA higher problem solving strategy
A higher problem solving strategy
 
1.basic of fractions
1.basic of fractions1.basic of fractions
1.basic of fractions
 
Taller matematicas
Taller matematicasTaller matematicas
Taller matematicas
 
Multiplying trinomials and binomials
Multiplying trinomials and binomialsMultiplying trinomials and binomials
Multiplying trinomials and binomials
 
Calculation techniques in numbers
Calculation techniques in numbersCalculation techniques in numbers
Calculation techniques in numbers
 
Math 1314 College Algebra Arithmetic Review
Math 1314 College Algebra Arithmetic ReviewMath 1314 College Algebra Arithmetic Review
Math 1314 College Algebra Arithmetic Review
 
Practice problems - 2.pptx
Practice problems - 2.pptxPractice problems - 2.pptx
Practice problems - 2.pptx
 
G6- Prime and Composite.pptx
G6- Prime and Composite.pptxG6- Prime and Composite.pptx
G6- Prime and Composite.pptx
 
The real Number system
The real Number systemThe real Number system
The real Number system
 

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
 
07_product_matrix.pdf
07_product_matrix.pdf07_product_matrix.pdf
07_product_matrix.pdf
 
06_sort_names.pdf
06_sort_names.pdf06_sort_names.pdf
06_sort_names.pdf
 
05_fragments.pdf
05_fragments.pdf05_fragments.pdf
05_fragments.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
 

Recently uploaded

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
 
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
 
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
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Disha Kariya
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
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
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
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
 
The byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxThe byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxShobhayan Kirtania
 
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
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfchloefrazer622
 
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
 
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
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 

Recently uploaded (20)

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
 
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
 
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
 
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
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
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
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.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
 
The byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxThe byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.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...
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
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
 
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
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 

12_prime.pdf