SlideShare a Scribd company logo
1 of 24
Akhil Kaushik
Asstt. Prof., CE Deptt.,
TIT Bhiwani
Code Optimization
Optimization
• In computing, optimization is the process of modifying a
system to make some aspect of it work more efficiently or
use fewer resources.
• Ex: a computer program may be optimized so that it
executes more rapidly or is capable of operating with less
memory storage or other resources, or draw less power.
• The system may be a single computer program, a
collection of computers or even an entire network such as
the internet.
Code Optimization
• Optimization is a program transformation technique,
which tries to improve the code that consume less
resources (i.e. CPU, Memory) and deliver high speed.
• In optimization, high-level general programming
constructs are replaced by very efficient low-level
programming codes.
• Usually done at the end of the development stage since
it reduces readability & adds code that is used to
improve the performance.
Code Optimization
Optimized code’s features:-
• Executes faster
• Code size get reduced
• Efficient memory usage
• Yielding better performance
• Reduces the time and space complexity
Code Optimization
Optimizations are classified into two categories:
• Machine independent optimizations - improve target
code without taking properties of target machine into
consideration.
• Machine dependent optimization - improve target
code by checking properties of target machine.
Code Optimization
Criteria for Optimization:-
• An optimization must preserve the meaning of a
program:
-Cannot change the output produced for any input.
-Can not introduce an error.
• Optimization should, on average, speed up programs.
• Optimization should itself be fast and should not delay
the overall compiling process.
Code Optimization
Optimization can occur at several levels:
1.Design level:- At the highest level, the design may be
optimized to make best use of the available resources.
– The implementation of this design will benefit from the use of
suitable efficient algorithms and the implementation of these
algorithms will benefit from writing good quality code.
2.Compile level:- Use of an optimizing compiler tends to
ensure that the executable program is optimized at least as
much as the compiler can predict
Code Optimization
Improvements can be made at various phases:-
• Source Code: Algorithm's transformation can produce
spectacular improvements
• Intermediate Code: Compiler can improve loops,
procedure calls and address calculations.
-Typically only optimizing compilers include this phase
• Target Code: Compilers can use registers efficiently
Code Optimization
• Main techniques of Optimization:-
Code Optimization
There are primarily 3 types of optimizations:-
(1) Local optimization - Apply to a basic block in isolation
(2) Global optimization - Apply across basic blocks
(3) Loop optimization – Apply on loops
Another significant optimization can be:-
(4) peep-hole optimization - Apply across boundaries
Code Optimization
• Optimization performed within a basic block.
• This is simplest form of optimizations
• No need to analyze the whole procedure body.
• Just analyze the basic blocks of the procedure.
• The local optimization techniques include:
– Constant Folding
– Constant Propagation
– Algebraic Simplification
– Operator Strength Reduction
– Dead Code Elimination
Local Code Optimization
A) Constant folding-
• As the name suggests, this technique involves folding
the constants by evaluating the expressions that
involves the operands having constant values at the
compile time.
• Ex: Circumference of circle = (22/7) x Diameter
• Replace (22/7) with 3.14 during compile time and save
the execution time.
Local Code Optimization
B) Constant Propagation-
• In this technique, if some variable has been assigned
some constant value, then it replaces that variable with
its constant value in the further program wherever it has
been used during compilation, provided that its value
does not get alter in between.
• Ex: pi = 3.14, radius = 10
• Area of circle = pi x radius x radius
• Substitutes constants value during compile time and
saves the execution time.
Local Code Optimization
C) Algebraic Simplification-
• Use algebraic properties to simplify expressions
• Some expressions can be simplified by replacing them
with an equivalent expression that is more efficient.
• Ex:
Code Optimization
D) Strength Reduction-
• As the name suggests, this technique involves
reducing the strength of the expressions by replacing
the expensive and costly operators with the simple and
cheaper ones
Code Optimization
E) Dead code elimination-
• Those code are eliminated which either never executes
or are not reachable or even if they get execute, their
output is never utilized.
Code Optimization
F) Common sub-expressions elimination:
• Eliminates the redundant expressions and avoids their
computation again and again.
Global Code Optimization
• Optimization across basic blocks within a procedure /function
• Could be restricted to a smaller scope, Example: a loop
• Data-flow analysis is done to perform optimization across basic
blocks
• Each basic block is a node in the flow graph of the program.
• These optimizations can be extended to an entire control - flow
graph
• Most of compiler implement global optimizations with well
founded theory and practical gains
Peephole Optimization
• Optimization technique that operates on the one or
few instructions at a time.
• Performs machine dependent improvements
• Peeps into a single or sequence of two to three
instructions (peephole) and replaces it by most
efficient alternative (shorter or faster) instructions.
• Peephole is a small moving window on the target
systems
Peephole Optimization
Characteristics of peep-hole optimizations:-
• Redundant-instruction (loads and stores)elimination
• Flow-of-control optimizations - - Elimination of
multiple jumps (i.e. goto statements)
• Elimination of unreachable code
• Algebraic simplifications
• Reducing operator strength
• Use of machine idioms
Loop Optimization
• Loop optimization plays an important role in
improving the performance of the source code by
reducing overheads associated with executing
loops.
• Loop Optimization can be done by removing:
–Loop invariant
–Induction variables
Loop Optimization
• Removal of Loop Invariant data:-
Loop Optimization
• Induction variables:-
Akhil Kaushik
akhilkaushik05@gmail.com
9416910303
CONTACT ME AT:
Akhil Kaushik
akhilkaushik05@gmail.com
9416910303
THANK YOU !!!

More Related Content

What's hot

Page replacement algorithms
Page replacement algorithmsPage replacement algorithms
Page replacement algorithms
Piyush Rochwani
 
Inter Process Communication Presentation[1]
Inter Process Communication Presentation[1]Inter Process Communication Presentation[1]
Inter Process Communication Presentation[1]
Ravindra Raju Kolahalam
 

What's hot (20)

Lexical analyzer generator lex
Lexical analyzer generator lexLexical analyzer generator lex
Lexical analyzer generator lex
 
Input-Buffering
Input-BufferingInput-Buffering
Input-Buffering
 
Peephole Optimization
Peephole OptimizationPeephole Optimization
Peephole Optimization
 
Syntax Analysis in Compiler Design
Syntax Analysis in Compiler Design Syntax Analysis in Compiler Design
Syntax Analysis in Compiler Design
 
Intermediate code generation (Compiler Design)
Intermediate code generation (Compiler Design)   Intermediate code generation (Compiler Design)
Intermediate code generation (Compiler Design)
 
Page replacement algorithms
Page replacement algorithmsPage replacement algorithms
Page replacement algorithms
 
Issues in the design of Code Generator
Issues in the design of Code GeneratorIssues in the design of Code Generator
Issues in the design of Code Generator
 
Syntax directed translation
Syntax directed translationSyntax directed translation
Syntax directed translation
 
Code generation
Code generationCode generation
Code generation
 
Lexical analysis - Compiler Design
Lexical analysis - Compiler DesignLexical analysis - Compiler Design
Lexical analysis - Compiler Design
 
Introduction to Compiler design
Introduction to Compiler design Introduction to Compiler design
Introduction to Compiler design
 
Inter Process Communication Presentation[1]
Inter Process Communication Presentation[1]Inter Process Communication Presentation[1]
Inter Process Communication Presentation[1]
 
Intermediate code generation in Compiler Design
Intermediate code generation in Compiler DesignIntermediate code generation in Compiler Design
Intermediate code generation in Compiler Design
 
Timing and control
Timing and controlTiming and control
Timing and control
 
Principal source of optimization in compiler design
Principal source of optimization in compiler designPrincipal source of optimization in compiler design
Principal source of optimization in compiler design
 
Error Detection & Recovery
Error Detection & RecoveryError Detection & Recovery
Error Detection & Recovery
 
Peephole optimization techniques in compiler design
Peephole optimization techniques in compiler designPeephole optimization techniques in compiler design
Peephole optimization techniques in compiler design
 
Lexical Analysis - Compiler design
Lexical Analysis - Compiler design Lexical Analysis - Compiler design
Lexical Analysis - Compiler design
 
Three Address code
Three Address code Three Address code
Three Address code
 
Code optimization in compiler design
Code optimization in compiler designCode optimization in compiler design
Code optimization in compiler design
 

Similar to Code Optimization

Cse viii-advanced-computer-architectures-06cs81-solution
Cse viii-advanced-computer-architectures-06cs81-solutionCse viii-advanced-computer-architectures-06cs81-solution
Cse viii-advanced-computer-architectures-06cs81-solution
Shobha Kumar
 

Similar to Code Optimization (20)

Peephole optimization techniques
Peephole optimization techniquesPeephole optimization techniques
Peephole optimization techniques
 
Unit 1 Computer organization and Instructions
Unit 1 Computer organization and InstructionsUnit 1 Computer organization and Instructions
Unit 1 Computer organization and Instructions
 
Code optimization
Code optimizationCode optimization
Code optimization
 
Cse viii-advanced-computer-architectures-06cs81-solution
Cse viii-advanced-computer-architectures-06cs81-solutionCse viii-advanced-computer-architectures-06cs81-solution
Cse viii-advanced-computer-architectures-06cs81-solution
 
Parallel Computing - Lec 6
Parallel Computing - Lec 6Parallel Computing - Lec 6
Parallel Computing - Lec 6
 
L-2 (Computer Performance).ppt
L-2 (Computer Performance).pptL-2 (Computer Performance).ppt
L-2 (Computer Performance).ppt
 
Basics of micro controllers for biginners
Basics of  micro controllers for biginnersBasics of  micro controllers for biginners
Basics of micro controllers for biginners
 
BAXTER phase 1b
BAXTER phase 1bBAXTER phase 1b
BAXTER phase 1b
 
Project Life Cycle and Effort Estimation
Project Life Cycle andEffort EstimationProject Life Cycle andEffort Estimation
Project Life Cycle and Effort Estimation
 
Algorithmic problem sloving
Algorithmic problem slovingAlgorithmic problem sloving
Algorithmic problem sloving
 
Embedded _c_
Embedded  _c_Embedded  _c_
Embedded _c_
 
OpenPOWER Webinar
OpenPOWER Webinar OpenPOWER Webinar
OpenPOWER Webinar
 
Practical C++ Generative Programming
Practical C++ Generative ProgrammingPractical C++ Generative Programming
Practical C++ Generative Programming
 
Cocomo model
Cocomo modelCocomo model
Cocomo model
 
ScilabTEC 2015 - Noesis Solutions
ScilabTEC 2015 - Noesis SolutionsScilabTEC 2015 - Noesis Solutions
ScilabTEC 2015 - Noesis Solutions
 
Introduction to embedded computing and arm processors
Introduction to embedded computing and arm processorsIntroduction to embedded computing and arm processors
Introduction to embedded computing and arm processors
 
JIT Compiler
JIT CompilerJIT Compiler
JIT Compiler
 
COCOMO 1 Model ppt AR-1.pdf
COCOMO 1 Model  ppt AR-1.pdfCOCOMO 1 Model  ppt AR-1.pdf
COCOMO 1 Model ppt AR-1.pdf
 
pipeline in computer architecture design
pipeline in computer architecture  designpipeline in computer architecture  design
pipeline in computer architecture design
 
C- language Lecture 4
C- language Lecture 4C- language Lecture 4
C- language Lecture 4
 

More from Akhil Kaushik

More from Akhil Kaushik (20)

Symbol Table, Error Handler & Code Generation
Symbol Table, Error Handler & Code GenerationSymbol Table, Error Handler & Code Generation
Symbol Table, Error Handler & Code Generation
 
Parsing in Compiler Design
Parsing in Compiler DesignParsing in Compiler Design
Parsing in Compiler Design
 
Context Free Grammar
Context Free GrammarContext Free Grammar
Context Free Grammar
 
Symbol Table
Symbol TableSymbol Table
Symbol Table
 
Lexical Analyzer Implementation
Lexical Analyzer ImplementationLexical Analyzer Implementation
Lexical Analyzer Implementation
 
NFA & DFA
NFA & DFANFA & DFA
NFA & DFA
 
Lexical Analysis - Compiler Design
Lexical Analysis - Compiler DesignLexical Analysis - Compiler Design
Lexical Analysis - Compiler Design
 
File Handling Python
File Handling PythonFile Handling Python
File Handling Python
 
Regular Expressions
Regular ExpressionsRegular Expressions
Regular Expressions
 
Algorithms & Complexity Calculation
Algorithms & Complexity CalculationAlgorithms & Complexity Calculation
Algorithms & Complexity Calculation
 
Intro to Data Structure & Algorithms
Intro to Data Structure & AlgorithmsIntro to Data Structure & Algorithms
Intro to Data Structure & Algorithms
 
Decision Making & Loops
Decision Making & LoopsDecision Making & Loops
Decision Making & Loops
 
Basic programs in Python
Basic programs in PythonBasic programs in Python
Basic programs in Python
 
Python Data-Types
Python Data-TypesPython Data-Types
Python Data-Types
 
Introduction to Python Programming
Introduction to Python ProgrammingIntroduction to Python Programming
Introduction to Python Programming
 
Compiler Design Basics
Compiler Design BasicsCompiler Design Basics
Compiler Design Basics
 
Bootstrapping in Compiler
Bootstrapping in CompilerBootstrapping in Compiler
Bootstrapping in Compiler
 
Compiler construction tools
Compiler construction toolsCompiler construction tools
Compiler construction tools
 
Phases of compiler
Phases of compilerPhases of compiler
Phases of compiler
 
Introduction to Compilers
Introduction to CompilersIntroduction to Compilers
Introduction to Compilers
 

Recently uploaded

Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
EADTU
 
QUATER-1-PE-HEALTH-LC2- this is just a sample of unpacked lesson
QUATER-1-PE-HEALTH-LC2- this is just a sample of unpacked lessonQUATER-1-PE-HEALTH-LC2- this is just a sample of unpacked lesson
QUATER-1-PE-HEALTH-LC2- this is just a sample of unpacked lesson
httgc7rh9c
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 

Recently uploaded (20)

AIM of Education-Teachers Training-2024.ppt
AIM of Education-Teachers Training-2024.pptAIM of Education-Teachers Training-2024.ppt
AIM of Education-Teachers Training-2024.ppt
 
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
 
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
 
Simple, Complex, and Compound Sentences Exercises.pdf
Simple, Complex, and Compound Sentences Exercises.pdfSimple, Complex, and Compound Sentences Exercises.pdf
Simple, Complex, and Compound Sentences Exercises.pdf
 
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxCOMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
 
QUATER-1-PE-HEALTH-LC2- this is just a sample of unpacked lesson
QUATER-1-PE-HEALTH-LC2- this is just a sample of unpacked lessonQUATER-1-PE-HEALTH-LC2- this is just a sample of unpacked lesson
QUATER-1-PE-HEALTH-LC2- this is just a sample of unpacked lesson
 
How to Manage Call for Tendor in Odoo 17
How to Manage Call for Tendor in Odoo 17How to Manage Call for Tendor in Odoo 17
How to Manage Call for Tendor in Odoo 17
 
How to Add a Tool Tip to a Field in Odoo 17
How to Add a Tool Tip to a Field in Odoo 17How to Add a Tool Tip to a Field in Odoo 17
How to Add a Tool Tip to a Field in Odoo 17
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Economic Importance Of Fungi In Food Additives
Economic Importance Of Fungi In Food AdditivesEconomic Importance Of Fungi In Food Additives
Economic Importance Of Fungi In Food Additives
 
What is 3 Way Matching Process in Odoo 17.pptx
What is 3 Way Matching Process in Odoo 17.pptxWhat is 3 Way Matching Process in Odoo 17.pptx
What is 3 Way Matching Process in Odoo 17.pptx
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
 
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
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 
21st_Century_Skills_Framework_Final_Presentation_2.pptx
21st_Century_Skills_Framework_Final_Presentation_2.pptx21st_Century_Skills_Framework_Final_Presentation_2.pptx
21st_Century_Skills_Framework_Final_Presentation_2.pptx
 

Code Optimization

  • 1. Akhil Kaushik Asstt. Prof., CE Deptt., TIT Bhiwani Code Optimization
  • 2. Optimization • In computing, optimization is the process of modifying a system to make some aspect of it work more efficiently or use fewer resources. • Ex: a computer program may be optimized so that it executes more rapidly or is capable of operating with less memory storage or other resources, or draw less power. • The system may be a single computer program, a collection of computers or even an entire network such as the internet.
  • 3. Code Optimization • Optimization is a program transformation technique, which tries to improve the code that consume less resources (i.e. CPU, Memory) and deliver high speed. • In optimization, high-level general programming constructs are replaced by very efficient low-level programming codes. • Usually done at the end of the development stage since it reduces readability & adds code that is used to improve the performance.
  • 4. Code Optimization Optimized code’s features:- • Executes faster • Code size get reduced • Efficient memory usage • Yielding better performance • Reduces the time and space complexity
  • 5. Code Optimization Optimizations are classified into two categories: • Machine independent optimizations - improve target code without taking properties of target machine into consideration. • Machine dependent optimization - improve target code by checking properties of target machine.
  • 6. Code Optimization Criteria for Optimization:- • An optimization must preserve the meaning of a program: -Cannot change the output produced for any input. -Can not introduce an error. • Optimization should, on average, speed up programs. • Optimization should itself be fast and should not delay the overall compiling process.
  • 7. Code Optimization Optimization can occur at several levels: 1.Design level:- At the highest level, the design may be optimized to make best use of the available resources. – The implementation of this design will benefit from the use of suitable efficient algorithms and the implementation of these algorithms will benefit from writing good quality code. 2.Compile level:- Use of an optimizing compiler tends to ensure that the executable program is optimized at least as much as the compiler can predict
  • 8. Code Optimization Improvements can be made at various phases:- • Source Code: Algorithm's transformation can produce spectacular improvements • Intermediate Code: Compiler can improve loops, procedure calls and address calculations. -Typically only optimizing compilers include this phase • Target Code: Compilers can use registers efficiently
  • 9. Code Optimization • Main techniques of Optimization:-
  • 10. Code Optimization There are primarily 3 types of optimizations:- (1) Local optimization - Apply to a basic block in isolation (2) Global optimization - Apply across basic blocks (3) Loop optimization – Apply on loops Another significant optimization can be:- (4) peep-hole optimization - Apply across boundaries
  • 11. Code Optimization • Optimization performed within a basic block. • This is simplest form of optimizations • No need to analyze the whole procedure body. • Just analyze the basic blocks of the procedure. • The local optimization techniques include: – Constant Folding – Constant Propagation – Algebraic Simplification – Operator Strength Reduction – Dead Code Elimination
  • 12. Local Code Optimization A) Constant folding- • As the name suggests, this technique involves folding the constants by evaluating the expressions that involves the operands having constant values at the compile time. • Ex: Circumference of circle = (22/7) x Diameter • Replace (22/7) with 3.14 during compile time and save the execution time.
  • 13. Local Code Optimization B) Constant Propagation- • In this technique, if some variable has been assigned some constant value, then it replaces that variable with its constant value in the further program wherever it has been used during compilation, provided that its value does not get alter in between. • Ex: pi = 3.14, radius = 10 • Area of circle = pi x radius x radius • Substitutes constants value during compile time and saves the execution time.
  • 14. Local Code Optimization C) Algebraic Simplification- • Use algebraic properties to simplify expressions • Some expressions can be simplified by replacing them with an equivalent expression that is more efficient. • Ex:
  • 15. Code Optimization D) Strength Reduction- • As the name suggests, this technique involves reducing the strength of the expressions by replacing the expensive and costly operators with the simple and cheaper ones
  • 16. Code Optimization E) Dead code elimination- • Those code are eliminated which either never executes or are not reachable or even if they get execute, their output is never utilized.
  • 17. Code Optimization F) Common sub-expressions elimination: • Eliminates the redundant expressions and avoids their computation again and again.
  • 18. Global Code Optimization • Optimization across basic blocks within a procedure /function • Could be restricted to a smaller scope, Example: a loop • Data-flow analysis is done to perform optimization across basic blocks • Each basic block is a node in the flow graph of the program. • These optimizations can be extended to an entire control - flow graph • Most of compiler implement global optimizations with well founded theory and practical gains
  • 19. Peephole Optimization • Optimization technique that operates on the one or few instructions at a time. • Performs machine dependent improvements • Peeps into a single or sequence of two to three instructions (peephole) and replaces it by most efficient alternative (shorter or faster) instructions. • Peephole is a small moving window on the target systems
  • 20. Peephole Optimization Characteristics of peep-hole optimizations:- • Redundant-instruction (loads and stores)elimination • Flow-of-control optimizations - - Elimination of multiple jumps (i.e. goto statements) • Elimination of unreachable code • Algebraic simplifications • Reducing operator strength • Use of machine idioms
  • 21. Loop Optimization • Loop optimization plays an important role in improving the performance of the source code by reducing overheads associated with executing loops. • Loop Optimization can be done by removing: –Loop invariant –Induction variables
  • 22. Loop Optimization • Removal of Loop Invariant data:-
  • 24. Akhil Kaushik akhilkaushik05@gmail.com 9416910303 CONTACT ME AT: Akhil Kaushik akhilkaushik05@gmail.com 9416910303 THANK YOU !!!