SlideShare a Scribd company logo
1 of 35
Download to read offline
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
Topic: JAVA SCRIPT
UNIT – I (Part-II)
Subject name: WT
Year/Section: III CSE - A
Dr. Vikram Neerugatti
Associate Professor
Department of CSE
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
1
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
•Overview of Java script
•Primitives
•Operations
•Expressions
•Control Statements
•Arrays
•Functions
•Pattern Matching using regular expressions
Content
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
2
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
• JavaScript was introduced in 1995 to add programs to web
pages.
• JavaScript is used in more traditional websites to provide
various forms of interactivity and cleverness.
• The script should be included in an HTML document for
the code to be interpreted by the browser.
• It means that a web page need not be a static HTML,
• but can include programs that interact with the user,
control the browser, and dynamically create HTML
content.
Overview of Java script
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
3
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
• Script should place within the <script>... </script> HTML
tags in a web page.
• Can place any where but, recommended that you should
keep it within the <head> tags.
Java script-Example
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
4
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
• we call a function document.write which writes a string
into our HTML document.
• his function can be used to write text, HTML, or both.
• JavaScript is a case-sensitive language.
Java script-Example
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
5
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
• we call a function document.write which writes a string
into our HTML document.
• his function can be used to write text, HTML, or both.
• JavaScript is a case-sensitive language.
Java script-Example-Comments
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
6
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
Java script-Example-allow script
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
7
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
Java script-Example-External
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
8
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
• JavaScript allows you to work with three
primitive data types
– Numbers, eg. 123, 120.50 etc.
– Strings of text e.g. "This text string" etc.
– Boolean e.g. true or false.
• JavaScript also defines two trivial data types, null
and undefined, each of which defines only a
single value.
• Object- Composite data type
Primitives
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
9
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
• Variables- will be declared with var.
• While naming your variables in JavaScript, keep
the following rules in mind.
• You should not use any of the JavaScript reserved
keywords as a variable name.
• JavaScript variable names should not start with a
numeral (0-9).
• JavaScript variable names are case-sensitive.
• Scope
• Untyped
Primitives
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
10
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
▪ In an expression a+b, a and b are operands and +
is an operator.
▪ JavaScript supports the following types of
operators.
▪ Arithmetic Operators
▪ Comparison Operators
▪ Logical (or Relational) Operators
▪ Assignment Operators
▪ Conditional (or ternary) Operators
Operations
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
11
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
• + (Addition)
– A+B
• - (Subtraction)
– A-B
• * (Multiplication)
– A*B
• / (Division)
– A/B
• % (Modolus)
– A%B
• ++ (Increment)
– A++
• -- (Decrement)
– A--
Operations-Arithmetic operations
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
12
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
• = = (Equal)
– (A == B)
• != (Not Equal)
– (A != B)
• > (Greater than)
– (A > B)
• < (Less than)
– (A < B)
• >= (Greater than or Equal to)
– (A >= B)
• <= (Less than or Equal to)
– (A <= B)
Operations-Comparison operations
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
13
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
• && (Logical AND)
– (A && B)
• || (Logical OR)
– (A || B) is true
• ! (Logical NOT)
– ! (A && B)
Operations-Logical/Relational operations
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
14
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
• = (Simple Assignment )
– Ex: C = A + B will assign the value of A + B into C
• += (Add and Assignment)
– Ex: C += A is equivalent to C = C + A
• *= (Multiply and Assignment)
– Ex: C *= A is equivalent to C = C * A
• /= (Divide and Assignment)
– Ex: C /= A is equivalent to C = C / A
Operations-Assignment operators
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
15
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
▪ ? : (Conditional )
▪ If Condition is true? Then value X : Other wise
value Y
▪ Ex: (a>b)? X: Y;
Operations-conditional/ternary operators
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
16
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
• In an expression a+b, a and b are operands and +
is an operator.
• Expression is a Combination of operators and
operands.
▪ JavaScript supports the following types of
Expressions.
▪ Arithmetic Expressions
▪ Comparison Expressions
▪ Logical (or Relational) Expressions
▪ Assignment Expressions
▪ Conditional (or ternary) Expressions
Expressions
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
17
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
• If
• If else
• If … Else if
Control Statements-Conditionals
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
18
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
Control Statements-Conditionals
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
19
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
Control Statements-Conditionals
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
20
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
Control Statements-Conditionals
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
21
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
Control Statements-Loops-while
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
22
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
Control Statements-Loops-do while
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
23
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
Control Statements-Loops-for
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
24
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
Control Statements-Loops-Loop control
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
25
To come out of a loop without reaching its bottom – Break
To skip a part of code an to start a next iteration - continue
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
• Function is a group of reusable code, can call
anywhere in program.
• Used to break big problem into small units
• No need to write the same code again and again.
Functions
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
26
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
Functions-Example
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
27
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
• It is a collection of variables of same type.
• It store multiple values in a single variable.
Arrays
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
28
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
• It is a sequence of characters used to search a
pattern.
• Search pattern can be used for text search and text
replace.
• It can be a single character or more characters
• Ex: /csea/
• It uses a string methods called search() and
replace().
• Search-return the position
• replace-return the modified string
Regular expressions
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
29
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
Regular expressions-Example
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
30
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
Regular expressions-Modifiers
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
31
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
•/e/.exec("The best things in life are free!");
•Returns true or false
Pattern Matching using regular
expressions
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
32
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
Blooms Taxonomy
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
33
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
Any Questions/Clarifications/Doubts
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
34
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
Thank you all
11/8/2021
Dr. Vikram Neerugatti, Associate Professor,
Dept. of CSE, ASCET, Guduru.
35

More Related Content

What's hot

World wide web architecture presentation
World wide web architecture presentationWorld wide web architecture presentation
World wide web architecture presentationImMe Khan
 
Web Development on Web Project Report
Web Development on Web Project ReportWeb Development on Web Project Report
Web Development on Web Project ReportMilind Gokhale
 
Online course reservation system
Online course reservation systemOnline course reservation system
Online course reservation systemChamma Jabeedkhan
 
Software requirement specification for online examination system
Software requirement specification for online examination systemSoftware requirement specification for online examination system
Software requirement specification for online examination systemkarthik venkatesh
 
online examination management final presentation
online examination management final presentationonline examination management final presentation
online examination management final presentationluckymoni76
 
Online examination ppt
Online examination pptOnline examination ppt
Online examination pptAmit Kumar
 
Report of Student management system
Report of Student management systemReport of Student management system
Report of Student management system1amitgupta
 
Final Year Projects (Computer Science 2013) - Syed Ubaid Ali Jafri
Final Year Projects (Computer Science 2013) - Syed Ubaid Ali JafriFinal Year Projects (Computer Science 2013) - Syed Ubaid Ali Jafri
Final Year Projects (Computer Science 2013) - Syed Ubaid Ali JafriSyed Ubaid Ali Jafri
 
15.project attendence managemnt system
15.project attendence managemnt system15.project attendence managemnt system
15.project attendence managemnt systemHaseeb Nasir
 
Online Food Ordering System
Online Food Ordering SystemOnline Food Ordering System
Online Food Ordering SystemAnkita Jangir
 
online Examination System (project report)
online Examination System (project report)online Examination System (project report)
online Examination System (project report)vivek anand
 
Design issues for the layers
Design issues for the layersDesign issues for the layers
Design issues for the layersjayaprakash
 
E Learning Management System By Tuhin Roy Using PHP
E Learning Management System By Tuhin Roy Using PHPE Learning Management System By Tuhin Roy Using PHP
E Learning Management System By Tuhin Roy Using PHPTuhin Ray
 
Library management system
Library management systemLibrary management system
Library management systemArman Ahmed
 
Student management system university erp
Student management system   university erpStudent management system   university erp
Student management system university erpMehul Thakkar
 
student mangement
student mangementstudent mangement
student mangementAditya Gaud
 

What's hot (20)

World wide web architecture presentation
World wide web architecture presentationWorld wide web architecture presentation
World wide web architecture presentation
 
BCA
BCABCA
BCA
 
Java script
Java scriptJava script
Java script
 
Web Development on Web Project Report
Web Development on Web Project ReportWeb Development on Web Project Report
Web Development on Web Project Report
 
Online course reservation system
Online course reservation systemOnline course reservation system
Online course reservation system
 
Software requirement specification for online examination system
Software requirement specification for online examination systemSoftware requirement specification for online examination system
Software requirement specification for online examination system
 
online examination management final presentation
online examination management final presentationonline examination management final presentation
online examination management final presentation
 
Online examination ppt
Online examination pptOnline examination ppt
Online examination ppt
 
Report of Student management system
Report of Student management systemReport of Student management system
Report of Student management system
 
Final Year Projects (Computer Science 2013) - Syed Ubaid Ali Jafri
Final Year Projects (Computer Science 2013) - Syed Ubaid Ali JafriFinal Year Projects (Computer Science 2013) - Syed Ubaid Ali Jafri
Final Year Projects (Computer Science 2013) - Syed Ubaid Ali Jafri
 
15.project attendence managemnt system
15.project attendence managemnt system15.project attendence managemnt system
15.project attendence managemnt system
 
Web Development
Web DevelopmentWeb Development
Web Development
 
Online Food Ordering System
Online Food Ordering SystemOnline Food Ordering System
Online Food Ordering System
 
online Examination System (project report)
online Examination System (project report)online Examination System (project report)
online Examination System (project report)
 
Design issues for the layers
Design issues for the layersDesign issues for the layers
Design issues for the layers
 
E Learning Management System By Tuhin Roy Using PHP
E Learning Management System By Tuhin Roy Using PHPE Learning Management System By Tuhin Roy Using PHP
E Learning Management System By Tuhin Roy Using PHP
 
Library management system
Library management systemLibrary management system
Library management system
 
Student management system university erp
Student management system   university erpStudent management system   university erp
Student management system university erp
 
Semantic web
Semantic webSemantic web
Semantic web
 
student mangement
student mangementstudent mangement
student mangement
 

Similar to Basics of Java Script

Similar to Basics of Java Script (20)

Introduction to Web Technologies
Introduction to Web TechnologiesIntroduction to Web Technologies
Introduction to Web Technologies
 
Esr biodata
Esr biodataEsr biodata
Esr biodata
 
CV_Salim_August-2016
CV_Salim_August-2016CV_Salim_August-2016
CV_Salim_August-2016
 
CV
CVCV
CV
 
Resume
ResumeResume
Resume
 
Be project report template
Be project report templateBe project report template
Be project report template
 
1st year Result
1st year Result1st year Result
1st year Result
 
20120822-CSIT-EIE.pptx
20120822-CSIT-EIE.pptx20120822-CSIT-EIE.pptx
20120822-CSIT-EIE.pptx
 
CV
CVCV
CV
 
SADGURU SWAMI NITHYANANDA INSTITUTE OF TECHNOLOGY, KHANHANGAD
SADGURU SWAMI NITHYANANDA INSTITUTE OF TECHNOLOGY, KHANHANGADSADGURU SWAMI NITHYANANDA INSTITUTE OF TECHNOLOGY, KHANHANGAD
SADGURU SWAMI NITHYANANDA INSTITUTE OF TECHNOLOGY, KHANHANGAD
 
Ssnit kanhangad
Ssnit kanhangadSsnit kanhangad
Ssnit kanhangad
 
Dinesh Resume
Dinesh ResumeDinesh Resume
Dinesh Resume
 
Dhananjay_Mishra
Dhananjay_MishraDhananjay_Mishra
Dhananjay_Mishra
 
SNSCE EEE Placement Brouchure
SNSCE EEE Placement BrouchureSNSCE EEE Placement Brouchure
SNSCE EEE Placement Brouchure
 
Staad Pro, Open Jump and Geo five software training report
Staad Pro, Open Jump and Geo five software training reportStaad Pro, Open Jump and Geo five software training report
Staad Pro, Open Jump and Geo five software training report
 
deepak resume updated 2016 march
deepak resume updated 2016 marchdeepak resume updated 2016 march
deepak resume updated 2016 march
 
JMS CV new
JMS CV newJMS CV new
JMS CV new
 
Dr.Lenin profile
Dr.Lenin profileDr.Lenin profile
Dr.Lenin profile
 
Development of machine allocation & Route Recommendation).pptx
Development of machine allocation & Route Recommendation).pptxDevelopment of machine allocation & Route Recommendation).pptx
Development of machine allocation & Route Recommendation).pptx
 
FRACTAL ANTENNA FOR AEROSPACE NAVIGATION
FRACTAL ANTENNA FOR AEROSPACE NAVIGATIONFRACTAL ANTENNA FOR AEROSPACE NAVIGATION
FRACTAL ANTENNA FOR AEROSPACE NAVIGATION
 

More from Vikram Nandini

IoT: From Copper strip to Gold Bar
IoT: From Copper strip to Gold BarIoT: From Copper strip to Gold Bar
IoT: From Copper strip to Gold BarVikram Nandini
 
Linux File Trees and Commands
Linux File Trees and CommandsLinux File Trees and Commands
Linux File Trees and CommandsVikram Nandini
 
Introduction to Linux & Basic Commands
Introduction to Linux & Basic CommandsIntroduction to Linux & Basic Commands
Introduction to Linux & Basic CommandsVikram Nandini
 
Manufacturing - II Part
Manufacturing - II PartManufacturing - II Part
Manufacturing - II PartVikram Nandini
 
Prototyping Online Components
Prototyping Online ComponentsPrototyping Online Components
Prototyping Online ComponentsVikram Nandini
 
Artificial Neural Networks
Artificial Neural NetworksArtificial Neural Networks
Artificial Neural NetworksVikram Nandini
 
Design Principles for Connected Devices
Design Principles for Connected DevicesDesign Principles for Connected Devices
Design Principles for Connected DevicesVikram Nandini
 
Communication in the IoT
Communication in the IoTCommunication in the IoT
Communication in the IoTVikram Nandini
 
Introduction to Cyber Security
Introduction to Cyber SecurityIntroduction to Cyber Security
Introduction to Cyber SecurityVikram Nandini
 
cloud computing UNIT-2.pdf
cloud computing UNIT-2.pdfcloud computing UNIT-2.pdf
cloud computing UNIT-2.pdfVikram Nandini
 
Cascading Style Sheets
Cascading Style SheetsCascading Style Sheets
Cascading Style SheetsVikram Nandini
 

More from Vikram Nandini (20)

IoT: From Copper strip to Gold Bar
IoT: From Copper strip to Gold BarIoT: From Copper strip to Gold Bar
IoT: From Copper strip to Gold Bar
 
Design Patterns
Design PatternsDesign Patterns
Design Patterns
 
Linux File Trees and Commands
Linux File Trees and CommandsLinux File Trees and Commands
Linux File Trees and Commands
 
Introduction to Linux & Basic Commands
Introduction to Linux & Basic CommandsIntroduction to Linux & Basic Commands
Introduction to Linux & Basic Commands
 
INTRODUCTION to OOAD
INTRODUCTION to OOADINTRODUCTION to OOAD
INTRODUCTION to OOAD
 
Ethics
EthicsEthics
Ethics
 
Manufacturing - II Part
Manufacturing - II PartManufacturing - II Part
Manufacturing - II Part
 
Manufacturing
ManufacturingManufacturing
Manufacturing
 
Business Models
Business ModelsBusiness Models
Business Models
 
Prototyping Online Components
Prototyping Online ComponentsPrototyping Online Components
Prototyping Online Components
 
Artificial Neural Networks
Artificial Neural NetworksArtificial Neural Networks
Artificial Neural Networks
 
IoT-Prototyping
IoT-PrototypingIoT-Prototyping
IoT-Prototyping
 
Design Principles for Connected Devices
Design Principles for Connected DevicesDesign Principles for Connected Devices
Design Principles for Connected Devices
 
Introduction to IoT
Introduction to IoTIntroduction to IoT
Introduction to IoT
 
Embedded decices
Embedded decicesEmbedded decices
Embedded decices
 
Communication in the IoT
Communication in the IoTCommunication in the IoT
Communication in the IoT
 
Introduction to Cyber Security
Introduction to Cyber SecurityIntroduction to Cyber Security
Introduction to Cyber Security
 
cloud computing UNIT-2.pdf
cloud computing UNIT-2.pdfcloud computing UNIT-2.pdf
cloud computing UNIT-2.pdf
 
Cascading Style Sheets
Cascading Style SheetsCascading Style Sheets
Cascading Style Sheets
 
HTML Common Tags -1
HTML Common Tags -1HTML Common Tags -1
HTML Common Tags -1
 

Recently uploaded

Wadi Rum luxhotel lodge Analysis case study.pptx
Wadi Rum luxhotel lodge Analysis case study.pptxWadi Rum luxhotel lodge Analysis case study.pptx
Wadi Rum luxhotel lodge Analysis case study.pptxNadaHaitham1
 
Moment Distribution Method For Btech Civil
Moment Distribution Method For Btech CivilMoment Distribution Method For Btech Civil
Moment Distribution Method For Btech CivilVinayVitekari
 
DC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationDC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationBhangaleSonal
 
DeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakesDeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakesMayuraD1
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdfKamal Acharya
 
Engineering Drawing focus on projection of planes
Engineering Drawing focus on projection of planesEngineering Drawing focus on projection of planes
Engineering Drawing focus on projection of planesRAJNEESHKUMAR341697
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptDineshKumar4165
 
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Service
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best ServiceTamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Service
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Servicemeghakumariji156
 
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptxA CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptxmaisarahman1
 
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptxS1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptxSCMS School of Architecture
 
Online food ordering system project report.pdf
Online food ordering system project report.pdfOnline food ordering system project report.pdf
Online food ordering system project report.pdfKamal Acharya
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VDineshKumar4165
 
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKARHAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKARKOUSTAV SARKAR
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaOmar Fathy
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTbhaskargani46
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptNANDHAKUMARA10
 
GEAR TRAIN- BASIC CONCEPTS AND WORKING PRINCIPLE
GEAR TRAIN- BASIC CONCEPTS AND WORKING PRINCIPLEGEAR TRAIN- BASIC CONCEPTS AND WORKING PRINCIPLE
GEAR TRAIN- BASIC CONCEPTS AND WORKING PRINCIPLEselvakumar948
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapRishantSharmaFr
 
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills KuwaitKuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwaitjaanualu31
 

Recently uploaded (20)

Wadi Rum luxhotel lodge Analysis case study.pptx
Wadi Rum luxhotel lodge Analysis case study.pptxWadi Rum luxhotel lodge Analysis case study.pptx
Wadi Rum luxhotel lodge Analysis case study.pptx
 
Moment Distribution Method For Btech Civil
Moment Distribution Method For Btech CivilMoment Distribution Method For Btech Civil
Moment Distribution Method For Btech Civil
 
DC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationDC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equation
 
DeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakesDeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakes
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdf
 
Engineering Drawing focus on projection of planes
Engineering Drawing focus on projection of planesEngineering Drawing focus on projection of planes
Engineering Drawing focus on projection of planes
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Service
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best ServiceTamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Service
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Service
 
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptxA CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
 
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptxS1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
 
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
 
Online food ordering system project report.pdf
Online food ordering system project report.pdfOnline food ordering system project report.pdf
Online food ordering system project report.pdf
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - V
 
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKARHAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS Lambda
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.ppt
 
GEAR TRAIN- BASIC CONCEPTS AND WORKING PRINCIPLE
GEAR TRAIN- BASIC CONCEPTS AND WORKING PRINCIPLEGEAR TRAIN- BASIC CONCEPTS AND WORKING PRINCIPLE
GEAR TRAIN- BASIC CONCEPTS AND WORKING PRINCIPLE
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills KuwaitKuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
 

Basics of Java Script