SlideShare una empresa de Scribd logo
1 de 66
Assemblers System Software
Role of Assembler Chap 2 Source Program Assembler Object Code Loader Executable  Code Linker
Chapter 2 -- Outline ,[object Object],[object Object],[object Object],[object Object],Chap 2
Introduction to Assemblers ,[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Example Program (Fig. 2.1) ,[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Example Program (Fig. 2.1) ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Assembler Directives ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Object Program ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Fig. 2.3 ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Figure 2.1 (Pseudo code) ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
An Example (Figure 2.1,  Cont .) ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2 EOR:  character x‘00’
An Example (Figure 2.1,  Cont .) ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Assembler’s functions ,[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2 Break...
Example of Instruction Assemble ,[object Object],Chap 2 STCH  BUFFER,X (54) 16  1  (001 ) 2  (039 ) 16 549039
Difficulties: Forward Reference ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Two Pass Assembler ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Two Pass Assembler  ,[object Object],[object Object],Chap 2 Pass 1 Pass 2  Object  codes Source program OPTAB SYMTAB SYMTAB Intermediate file
Data Structures ,[object Object],[object Object],[object Object],Chap 2
OPTAB (operation code table) ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
SYMTAB (symbol table) ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2 COPY 1000 FIRST  1000 CLOOP 1003 ENDFIL 1015 EOF 1024 THREE 102D ZERO 1030 RETADR 1033 LENGTH 1036 BUFFER 1039 RDREC 2039
Homework #3 ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2 End of Sec 2-1
Assembler Design ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Machine-dependent  Assembler Features ,[object Object],[object Object],[object Object]
Instruction Format and Addressing Mode ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Translation ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
PC-Relative Addressing Modes ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Base-Relative Addressing Modes ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Immediate Address Translation ,[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Immediate Address Translation   (Cont.) ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Indirect Address Translation ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Program Relocation ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Example Chap 2
Relocatable Program ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Object Code Chap 2 End of Sec 2-2
Machine-Independent Assembler Features Literals Symbol Defining Statement Expressions Program Blocks Control Sections and Program Linking
Literals ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Literals vs. Immediate Operands ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Literal - Implementation (1/3) ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Literal - Implementation (2/3) ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Literal - Implementation (3/3) ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Symbol-Defining Statements ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Symbol-Defining Statements ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2 ,[object Object]
ORG (origin) ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
ORG Example ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Expressions ,[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
SYMTAB ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Example 2.9 ,[object Object],Chap 2
Program Blocks ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Program Blocks - Implementation ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Figure 2.12 ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Program Readability ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Chap 2
Control Sections   and Program Linking ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
External Definition and References ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Implementation ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Modification Record ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
External References in Expression  ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Assembler Design Options One-pass assemblers Multi-pass assemblers Two-pass assembler with overlay structure
Two-Pass Assembler with Overlay Structure ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
One-Pass Assemblers ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
One-Pass Assemblers ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Load-and-go Assembler  ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Forward Reference in One-pass Assembler ,[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Load-and-go Assembler (Cont.)  ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Producing Object Code  ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2
Multi-Pass Assemblers ,[object Object],[object Object],[object Object],[object Object],[object Object],Chap 2

Más contenido relacionado

La actualidad más candente

La actualidad más candente (20)

Assembler
AssemblerAssembler
Assembler
 
Ch 4 linker loader
Ch 4 linker loaderCh 4 linker loader
Ch 4 linker loader
 
Instruction Set Architecture (ISA)
Instruction Set Architecture (ISA)Instruction Set Architecture (ISA)
Instruction Set Architecture (ISA)
 
Macro-processor
Macro-processorMacro-processor
Macro-processor
 
GCC
GCCGCC
GCC
 
System Programming- Unit I
System Programming- Unit ISystem Programming- Unit I
System Programming- Unit I
 
loaders and linkers
 loaders and linkers loaders and linkers
loaders and linkers
 
Fundamentals of Language Processing
Fundamentals of Language ProcessingFundamentals of Language Processing
Fundamentals of Language Processing
 
Assembler
AssemblerAssembler
Assembler
 
Design of a two pass assembler
Design of a two pass assemblerDesign of a two pass assembler
Design of a two pass assembler
 
Pass Structure of Assembler
Pass Structure of AssemblerPass Structure of Assembler
Pass Structure of Assembler
 
Unit 4 sp macro
Unit 4 sp macroUnit 4 sp macro
Unit 4 sp macro
 
EE5440 – Computer Architecture - Lecture 2
EE5440 – Computer Architecture - Lecture 2EE5440 – Computer Architecture - Lecture 2
EE5440 – Computer Architecture - Lecture 2
 
code optimization 1...code optimization-1221849738688969-9
code optimization 1...code optimization-1221849738688969-9code optimization 1...code optimization-1221849738688969-9
code optimization 1...code optimization-1221849738688969-9
 
Cpu organisation
Cpu organisationCpu organisation
Cpu organisation
 
Assembler
AssemblerAssembler
Assembler
 
compiler and their types
compiler and their typescompiler and their types
compiler and their types
 
Assembler
AssemblerAssembler
Assembler
 
Pass 1 flowchart
Pass 1 flowchartPass 1 flowchart
Pass 1 flowchart
 
Hardware Abstraction Layer
Hardware Abstraction LayerHardware Abstraction Layer
Hardware Abstraction Layer
 

Destacado (20)

Assemblers
AssemblersAssemblers
Assemblers
 
Two pass Assembler
Two pass AssemblerTwo pass Assembler
Two pass Assembler
 
2 класс. lesson 29. рождественская история
2 класс. lesson 29. рождественская история2 класс. lesson 29. рождественская история
2 класс. lesson 29. рождественская история
 
Christmas powerpoint
Christmas powerpointChristmas powerpoint
Christmas powerpoint
 
Marry christmas
Marry christmasMarry christmas
Marry christmas
 
Marry Christmas
Marry ChristmasMarry Christmas
Marry Christmas
 
Big ben
Big benBig ben
Big ben
 
Madame tussauds
Madame tussaudsMadame tussauds
Madame tussauds
 
Los Madrugadores
Los MadrugadoresLos Madrugadores
Los Madrugadores
 
Madame Tussaud Museum
Madame Tussaud Museum Madame Tussaud Museum
Madame Tussaud Museum
 
marry christmas
marry christmasmarry christmas
marry christmas
 
Marry Christmas to all
Marry Christmas to allMarry Christmas to all
Marry Christmas to all
 
Madame Tussauds London
Madame Tussauds LondonMadame Tussauds London
Madame Tussauds London
 
CRISTMAS GIFT IDEA
CRISTMAS GIFT IDEA CRISTMAS GIFT IDEA
CRISTMAS GIFT IDEA
 
Magic christl
Magic christlMagic christl
Magic christl
 
Big ben
Big benBig ben
Big ben
 
Christmass Day
Christmass DayChristmass Day
Christmass Day
 
Madame tussauds
Madame tussaudsMadame tussauds
Madame tussauds
 
Our beautiful world
Our beautiful worldOur beautiful world
Our beautiful world
 
Museo Madame Tussaud
Museo Madame Tussaud Museo Madame Tussaud
Museo Madame Tussaud
 

Similar a Assembler

assembler_full_slides.ppt
assembler_full_slides.pptassembler_full_slides.ppt
assembler_full_slides.pptAshwini864432
 
loaders-and-linkers.pdfhhhhhccftyghgfggy
loaders-and-linkers.pdfhhhhhccftyghgfggyloaders-and-linkers.pdfhhhhhccftyghgfggy
loaders-and-linkers.pdfhhhhhccftyghgfggyrahulyadav957181
 
Assembler Programming
Assembler ProgrammingAssembler Programming
Assembler ProgrammingOmar Sanchez
 
Examinable Question and answer system programming
Examinable Question and answer system programmingExaminable Question and answer system programming
Examinable Question and answer system programmingMakerere university
 
Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxvipinkmenon1
 
Instruction Set Architecture
Instruction Set ArchitectureInstruction Set Architecture
Instruction Set ArchitectureDilum Bandara
 
Bca 2nd sem-u-3.1-basic computer programming and micro programmed control
Bca 2nd sem-u-3.1-basic computer programming and micro programmed controlBca 2nd sem-u-3.1-basic computer programming and micro programmed control
Bca 2nd sem-u-3.1-basic computer programming and micro programmed controlRai University
 
B.sc cs-ii-u-3.1-basic computer programming and micro programmed control
B.sc cs-ii-u-3.1-basic computer programming and micro programmed controlB.sc cs-ii-u-3.1-basic computer programming and micro programmed control
B.sc cs-ii-u-3.1-basic computer programming and micro programmed controlRai University
 
Instruction_Set.pdf
Instruction_Set.pdfInstruction_Set.pdf
Instruction_Set.pdfboukomra
 
Programming basic computer
Programming basic computerProgramming basic computer
Programming basic computerMartial Kouadio
 

Similar a Assembler (20)

Assembler
AssemblerAssembler
Assembler
 
assembler_full_slides.ppt
assembler_full_slides.pptassembler_full_slides.ppt
assembler_full_slides.ppt
 
Assembler (2)
Assembler (2)Assembler (2)
Assembler (2)
 
Sp chap2
Sp chap2Sp chap2
Sp chap2
 
System Software
System SoftwareSystem Software
System Software
 
Loader
LoaderLoader
Loader
 
loaders-and-linkers.pdfhhhhhccftyghgfggy
loaders-and-linkers.pdfhhhhhccftyghgfggyloaders-and-linkers.pdfhhhhhccftyghgfggy
loaders-and-linkers.pdfhhhhhccftyghgfggy
 
Assembler Programming
Assembler ProgrammingAssembler Programming
Assembler Programming
 
Examinable Question and answer system programming
Examinable Question and answer system programmingExaminable Question and answer system programming
Examinable Question and answer system programming
 
Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptx
 
Ch2 csda
Ch2 csdaCh2 csda
Ch2 csda
 
Instruction Set Architecture
Instruction Set ArchitectureInstruction Set Architecture
Instruction Set Architecture
 
Loader
LoaderLoader
Loader
 
Assembler1
Assembler1Assembler1
Assembler1
 
Ch 8
Ch 8Ch 8
Ch 8
 
Bca 2nd sem-u-3.1-basic computer programming and micro programmed control
Bca 2nd sem-u-3.1-basic computer programming and micro programmed controlBca 2nd sem-u-3.1-basic computer programming and micro programmed control
Bca 2nd sem-u-3.1-basic computer programming and micro programmed control
 
B.sc cs-ii-u-3.1-basic computer programming and micro programmed control
B.sc cs-ii-u-3.1-basic computer programming and micro programmed controlB.sc cs-ii-u-3.1-basic computer programming and micro programmed control
B.sc cs-ii-u-3.1-basic computer programming and micro programmed control
 
Instruction_Set.pdf
Instruction_Set.pdfInstruction_Set.pdf
Instruction_Set.pdf
 
Programming basic computer
Programming basic computerProgramming basic computer
Programming basic computer
 
Unit iii mca 1st year
Unit iii mca 1st yearUnit iii mca 1st year
Unit iii mca 1st year
 

Último

2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptxMaritesTamaniVerdade
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin ClassesCeline George
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsMebane Rash
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxnegromaestrong
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfChris Hunter
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701bronxfugly43
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
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
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 
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
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.MaryamAhmad92
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
Role Of Transgenic Animal In Target Validation-1.pptx
Role Of Transgenic Animal In Target Validation-1.pptxRole Of Transgenic Animal In Target Validation-1.pptx
Role Of Transgenic Animal In Target Validation-1.pptxNikitaBankoti2
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxVishalSingh1417
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 

Último (20)

2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
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
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
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
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Role Of Transgenic Animal In Target Validation-1.pptx
Role Of Transgenic Animal In Target Validation-1.pptxRole Of Transgenic Animal In Target Validation-1.pptx
Role Of Transgenic Animal In Target Validation-1.pptx
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 

Assembler