SlideShare a Scribd company logo
1 of 23
Download to read offline
PROGRAM01
PROGRAM02
PROGRAM03
PROGRAM04
PROGRAM05
PROGRAM06
PROGRAM07
CE 2202
NUMERICAL METHODS AND
COMPUTER PROGRAMMING
SESSIONAL
5TH FEBRUARY 2019
A PRESENTATION ON
PROGRAM01
PROGRAM02
PROGRAM03
PROGRAM04
PROGRAM05
PROGRAM06
FAISAL FARUQUE RAFAT
ROLL NO. 1600079
RAJSHAHI UNIVERSITY OF ENGINEERING AND TECHNOLOGY
DEPT. OF CIVIL ENGINEERING
PRESENTED BY
PROGRAM07
PROGRAM01
PROGRAM02
PROGRAM03
PROGRAM04
PROGRAM05
PROGRAM06
W
L
P
A cantilever beam is shown in the upper figure.
Write a C program to compute shear and moment
of the beam at every L/N distance from the free
end.
Here,
Length of the beam, L = 79+10= 89 feet
Concentrated Load, P = 79+13= 82 lbs
Uniformly Distributed Load, W = 13 lbs/feet
N = 100+79= 179
PROGRAM07
PROGRAM01
PROGRAM02
PROGRAM03
PROGRAM04
PROGRAM05
PROGRAM06
PROGRAM07
Shear = Sum of all transverse load
Moment = Load x Distance
For this problem,
Shear = p+i*w
Moment = -p*i-i*w*(i/2)
Here,
i = Sectional distance from right side of the beam
PROGRAM01
PROGRAM02
PROGRAM03
PROGRAM04
PROGRAM05
PROGRAM06
PROGRAM07
0
200
400
600
800
1000
1200
1400
0 10 20 30 40 50 60 70 80 90 100
SFD
SHEAR FORCE DIAGRAM
PROGRAM01
PROGRAM02
PROGRAM03
PROGRAM04
PROGRAM05
PROGRAM06
PROGRAM07
BENDING MOMENT DIAGRAM
-70000
-60000
-50000
-40000
-30000
-20000
-10000
0
0 10 20 30 40 50 60 70 80 90 100
BMD
PROGRAM01
PROGRAM02
PROGRAM03
PROGRAM04
PROGRAM05
PROGRAM06
PROGRAM07
W
L
A cantilever beam is shown in the upper figure.
Write a C program to compute shear and moment
of the beam at every L/N distance from the free
end.
Here,
Length of the beam, L = 79+10= 89 feet
Uniformly Distributed Load, W = 13 lbs/feet
N = 100+79= 179
PROGRAM01
PROGRAM02
PROGRAM03
PROGRAM04
PROGRAM05
PROGRAM06
PROGRAM07
Shear = Sum of all transverse load
Moment = Load x Distance
For this problem,
Shear = r-i*w
Moment = r*i-i*w*(i/2)
Reaction from right side, R = (w*l)/2
Here,
i = Sectional distance from right side of the beam
PROGRAM01
PROGRAM02
PROGRAM03
PROGRAM04
PROGRAM05
PROGRAM06
PROGRAM07
SHEAR FORCE DIAGRAM
-800
-600
-400
-200
0
200
400
600
800
0 10 20 30 40 50 60 70 80 90 100
SFD
PROGRAM01
PROGRAM02
PROGRAM03
PROGRAM04
PROGRAM05
PROGRAM06
PROGRAM07
BENDING MOMENT DIAGRAM
0
2000
4000
6000
8000
10000
12000
14000
0 10 20 30 40 50 60 70 80 90 100
BMD
PROGRAM01
PROGRAM02
PROGRAM03
PROGRAM04
PROGRAM05
PROGRAM06
PROGRAM07
Write a C program to find the total
head of a flow through pipe.
Here,
Value of pressure, p = 40
Value of velocity, v = 3
Value of datum head, z = 6
PROGRAM01
PROGRAM02
PROGRAM03
PROGRAM04
PROGRAM05
PROGRAM06
PROGRAM07
The equation use for this
problem in program is:
Total head,
H = (p/a)+((v*v)/(2*g))+z
PROGRAM01
PROGRAM02
PROGRAM03
PROGRAM04
PROGRAM05
PROGRAM06
PROGRAM07
Following matrices are used for the
program.
Write a C program to read to two
matrices A and B and print A+B.
1 2 3
4 5 6
7 8 9
9 8 7
6 5 4
3 2 1
10 10 10
10 10 10
10 10 10
A = B =
A+B=C =
PROGRAM01
PROGRAM02
PROGRAM03
PROGRAM04
i loop j loop Elements a[i][j]
i = 0 j = 0 a[0][0]
i = 0 j = 1 a[0][1]
i = 0 j = 2 a[0][2]
i = 1 j = 0 a[1][0]
i = 1 j = 1 a[1][1]
i = 1 j = 2 a[1][2]
i = 2 j = 0 a[2][0]
i = 2 j = 1 a[2][1]
i = 2 j = 2 a[2][2]
PROGRAM05
PROGRAM06
PROGRAM07
PROGRAM01
PROGRAM02
PROGRAM03
PROGRAM04
PROGRAM05
PROGRAM06
C matrix
00+00 01+01 02+02
10+10 11+11 12+12
20+20 21+21 22+22
PROGRAM07
A matrix B matrix
00 01 02 00 01 02
10 11 12 10 11 12
20 21 22 20 21 22
For the addition of that matrices we need the
concept of two-dimensional array in C program.
PROGRAM01
PROGRAM02
PROGRAM03
PROGRAM04
PROGRAM05
PROGRAM06
PROGRAM07
DECISION MAKING AND LOOPING:
Write a C program to print the
following multiplication table.
2 x 1 2
2 x 2 4
2 x 3 6
2 x 4 8
2 x 5 10
2 x 6 12
2 x 7 14
2 x 8 16
2 x 9 18
2 x 10 20
PROGRAM01
PROGRAM02
PROGRAM03
PROGRAM04
PROGRAM05
PROGRAM06
PROGRAM07
• To print this multiplication table, a single
for loop would be adequate.
• Initially value of the variable n should be
taken 2, as we are printing the
multiplication table of 2.
• The statement for loop will be like this,
for(i=0;i<=10;i++)
• Initially the value of i will be taken 1 and
It will execute the loop as long as the
value becomes equal to 10.
PROGRAM01
PROGRAM02
PROGRAM03
PROGRAM04
PROGRAM05
PROGRAM06
PROGRAM07
DECISION MAKING AND BRANCING:
Write a C program to determine
whether the following number is even
or odd.
23
We can take the following number as
an example:
PROGRAM01
PROGRAM02
PROGRAM03
PROGRAM04
PROGRAM05
PROGRAM06
PROGRAM07
The number is even, If and only
if we can divide the given
number by 2 keeping the
reamainder 0. Otherwise, the
number is definitely odd.
PROGRAM01
PROGRAM02
PROGRAM03
PROGRAM04
PROGRAM05
PROGRAM06
PROGRAM07
if-else statement will be used for
executing this program.
If the input is assigned to variable n, the
statements will be like this,
If(n%2==0)
{
printf(“Even”);
}
else
{
printf(“Odd”);
}
PROGRAM01
PROGRAM02
PROGRAM03
PROGRAM04
PROGRAM05
PROGRAM06
PROGRAM07
OPERATORS AND EXPRESSIONS:
Write a C program to convert days
into months.
1 Month = 30 Days
on average
PROGRAM01
PROGRAM02
PROGRAM03
PROGRAM04
PROGRAM05
PROGRAM06
PROGRAM07
So, if we divide the desired value by
30, the integer part will be the
number of months. Again, the
remainder will be the remaining days
which don’t make up a total month.
455/30=15 (Integer)
455%30=5
15 Months 5 Days
PROGRAM01
PROGRAM02
PROGRAM03
PROGRAM04
PROGRAM05
PROGRAM06
PROGRAM07
PROGRAM07
T H A N K S
F O R Y O U R P A T I E N C E

More Related Content

What's hot

FLEXURAL STRESSES AND SHEAR STRESSES
FLEXURAL STRESSES AND SHEAR STRESSESFLEXURAL STRESSES AND SHEAR STRESSES
FLEXURAL STRESSES AND SHEAR STRESSESvempatishiva
 
Mini project For M.tech Structural Engineering Deflection of Simply supported...
Mini project For M.tech Structural Engineering Deflection of Simply supported...Mini project For M.tech Structural Engineering Deflection of Simply supported...
Mini project For M.tech Structural Engineering Deflection of Simply supported...vaignan
 
Problems on simply supported beams
Problems on simply supported beamsProblems on simply supported beams
Problems on simply supported beamssushma chinta
 
General steps of the finite element method
General steps of the finite element methodGeneral steps of the finite element method
General steps of the finite element methodmahesh gaikwad
 
Free FE practice problems
Free FE practice problemsFree FE practice problems
Free FE practice problemsEIT Experts
 
Buckling Analysis of Plate
Buckling Analysis of PlateBuckling Analysis of Plate
Buckling Analysis of PlatePayal Jain
 
Deflection of simply supported beam and cantilever
Deflection of simply supported beam and cantileverDeflection of simply supported beam and cantilever
Deflection of simply supported beam and cantileveryashdeep nimje
 
An Introduction to the Finite Element Method
An Introduction to the Finite Element MethodAn Introduction to the Finite Element Method
An Introduction to the Finite Element MethodMohammad Tawfik
 
INTRODUCTION TO FINITE ELEMENT ANALYSIS
INTRODUCTION TO FINITE ELEMENT ANALYSISINTRODUCTION TO FINITE ELEMENT ANALYSIS
INTRODUCTION TO FINITE ELEMENT ANALYSISAchyuth Peri
 
Finite Element analysis -Plate ,shell skew plate
Finite Element analysis -Plate ,shell skew plate Finite Element analysis -Plate ,shell skew plate
Finite Element analysis -Plate ,shell skew plate S.DHARANI KUMAR
 
Etabs presentation with new graphics sept 2002
Etabs presentation with new graphics sept 2002Etabs presentation with new graphics sept 2002
Etabs presentation with new graphics sept 2002Nguyen Bao
 
ANALYSIS AND DESIGN OF HIGH RISE BUILDING BY USING ETABS
ANALYSIS AND DESIGN OF HIGH RISE BUILDING BY USING ETABSANALYSIS AND DESIGN OF HIGH RISE BUILDING BY USING ETABS
ANALYSIS AND DESIGN OF HIGH RISE BUILDING BY USING ETABSila vamsi krishna
 

What's hot (20)

Steel plate shear wall
Steel plate shear wallSteel plate shear wall
Steel plate shear wall
 
FLEXURAL STRESSES AND SHEAR STRESSES
FLEXURAL STRESSES AND SHEAR STRESSESFLEXURAL STRESSES AND SHEAR STRESSES
FLEXURAL STRESSES AND SHEAR STRESSES
 
Analysis of warehouse in staad pro.
Analysis of warehouse in staad pro. Analysis of warehouse in staad pro.
Analysis of warehouse in staad pro.
 
One way slab load calculation
One way slab load calculation One way slab load calculation
One way slab load calculation
 
Mini project For M.tech Structural Engineering Deflection of Simply supported...
Mini project For M.tech Structural Engineering Deflection of Simply supported...Mini project For M.tech Structural Engineering Deflection of Simply supported...
Mini project For M.tech Structural Engineering Deflection of Simply supported...
 
Problems on simply supported beams
Problems on simply supported beamsProblems on simply supported beams
Problems on simply supported beams
 
Lecture 1 design loads
Lecture 1   design loadsLecture 1   design loads
Lecture 1 design loads
 
SIWES Presentation
SIWES PresentationSIWES Presentation
SIWES Presentation
 
CODES OF ETHICS
CODES OF ETHICSCODES OF ETHICS
CODES OF ETHICS
 
General steps of the finite element method
General steps of the finite element methodGeneral steps of the finite element method
General steps of the finite element method
 
Free FE practice problems
Free FE practice problemsFree FE practice problems
Free FE practice problems
 
Buckling Analysis of Plate
Buckling Analysis of PlateBuckling Analysis of Plate
Buckling Analysis of Plate
 
Deflection of simply supported beam and cantilever
Deflection of simply supported beam and cantileverDeflection of simply supported beam and cantilever
Deflection of simply supported beam and cantilever
 
Strength of materials Two mark Question with answers
Strength of materials Two mark Question with answersStrength of materials Two mark Question with answers
Strength of materials Two mark Question with answers
 
Etabs tutorial
Etabs tutorialEtabs tutorial
Etabs tutorial
 
An Introduction to the Finite Element Method
An Introduction to the Finite Element MethodAn Introduction to the Finite Element Method
An Introduction to the Finite Element Method
 
INTRODUCTION TO FINITE ELEMENT ANALYSIS
INTRODUCTION TO FINITE ELEMENT ANALYSISINTRODUCTION TO FINITE ELEMENT ANALYSIS
INTRODUCTION TO FINITE ELEMENT ANALYSIS
 
Finite Element analysis -Plate ,shell skew plate
Finite Element analysis -Plate ,shell skew plate Finite Element analysis -Plate ,shell skew plate
Finite Element analysis -Plate ,shell skew plate
 
Etabs presentation with new graphics sept 2002
Etabs presentation with new graphics sept 2002Etabs presentation with new graphics sept 2002
Etabs presentation with new graphics sept 2002
 
ANALYSIS AND DESIGN OF HIGH RISE BUILDING BY USING ETABS
ANALYSIS AND DESIGN OF HIGH RISE BUILDING BY USING ETABSANALYSIS AND DESIGN OF HIGH RISE BUILDING BY USING ETABS
ANALYSIS AND DESIGN OF HIGH RISE BUILDING BY USING ETABS
 

Similar to NUMERICAL METHODS AND COMPUTER PROGRAMMING SESSIONAL PRESENTATION

BS LAB Manual (1).pdf
BS LAB Manual  (1).pdfBS LAB Manual  (1).pdf
BS LAB Manual (1).pdfssuser476810
 
Rightand wrong[1]
Rightand wrong[1]Rightand wrong[1]
Rightand wrong[1]slange
 
Assignment #4 questions and solutions-2013
Assignment #4 questions and solutions-2013Assignment #4 questions and solutions-2013
Assignment #4 questions and solutions-2013Darlington Etaje
 
C - programming - Ankit Kumar Singh
C - programming - Ankit Kumar Singh C - programming - Ankit Kumar Singh
C - programming - Ankit Kumar Singh AnkitSinghRajput35
 
Answers To Selected Exercises For Fortran 90 95 For Scientists And Engineers
Answers To Selected Exercises For Fortran 90 95 For Scientists And EngineersAnswers To Selected Exercises For Fortran 90 95 For Scientists And Engineers
Answers To Selected Exercises For Fortran 90 95 For Scientists And EngineersSheila Sinclair
 
Inf-Sup Stable Displacement-Pressure Combinations for Isogeometric Analysis o...
Inf-Sup Stable Displacement-Pressure Combinations for Isogeometric Analysis o...Inf-Sup Stable Displacement-Pressure Combinations for Isogeometric Analysis o...
Inf-Sup Stable Displacement-Pressure Combinations for Isogeometric Analysis o...CHENNAKESAVA KADAPA
 
Matlab_basic2013_1.pdf
Matlab_basic2013_1.pdfMatlab_basic2013_1.pdf
Matlab_basic2013_1.pdfabdul basit
 
C programming(Part 1)
C programming(Part 1)C programming(Part 1)
C programming(Part 1)SURBHI SAROHA
 
Programming for Problem Solving
Programming for Problem SolvingProgramming for Problem Solving
Programming for Problem SolvingSreedhar Chowdam
 
Design of chip controller
Design of chip controllerDesign of chip controller
Design of chip controllerasha
 
Synchronous Loadable Up and Down Counter
Synchronous Loadable Up and Down Counter Synchronous Loadable Up and Down Counter
Synchronous Loadable Up and Down Counter Digital System Design
 
Lecture#5 Operators in C++
Lecture#5 Operators in C++Lecture#5 Operators in C++
Lecture#5 Operators in C++NUST Stuff
 
Two stage op amp design on cadence
Two stage op amp design on cadenceTwo stage op amp design on cadence
Two stage op amp design on cadenceHaowei Jiang
 
Computer Science Programming Assignment Help
Computer Science Programming Assignment HelpComputer Science Programming Assignment Help
Computer Science Programming Assignment HelpProgramming Homework Help
 

Similar to NUMERICAL METHODS AND COMPUTER PROGRAMMING SESSIONAL PRESENTATION (20)

BS LAB Manual (1).pdf
BS LAB Manual  (1).pdfBS LAB Manual  (1).pdf
BS LAB Manual (1).pdf
 
PSP LAB MANUAL.pdf
PSP LAB MANUAL.pdfPSP LAB MANUAL.pdf
PSP LAB MANUAL.pdf
 
Rightand wrong[1]
Rightand wrong[1]Rightand wrong[1]
Rightand wrong[1]
 
Assignment #4 questions and solutions-2013
Assignment #4 questions and solutions-2013Assignment #4 questions and solutions-2013
Assignment #4 questions and solutions-2013
 
C - programming - Ankit Kumar Singh
C - programming - Ankit Kumar Singh C - programming - Ankit Kumar Singh
C - programming - Ankit Kumar Singh
 
Answers To Selected Exercises For Fortran 90 95 For Scientists And Engineers
Answers To Selected Exercises For Fortran 90 95 For Scientists And EngineersAnswers To Selected Exercises For Fortran 90 95 For Scientists And Engineers
Answers To Selected Exercises For Fortran 90 95 For Scientists And Engineers
 
Bode Plot Notes Step by Step
Bode Plot Notes Step by StepBode Plot Notes Step by Step
Bode Plot Notes Step by Step
 
Inf-Sup Stable Displacement-Pressure Combinations for Isogeometric Analysis o...
Inf-Sup Stable Displacement-Pressure Combinations for Isogeometric Analysis o...Inf-Sup Stable Displacement-Pressure Combinations for Isogeometric Analysis o...
Inf-Sup Stable Displacement-Pressure Combinations for Isogeometric Analysis o...
 
Matlab_basic2013_1.pdf
Matlab_basic2013_1.pdfMatlab_basic2013_1.pdf
Matlab_basic2013_1.pdf
 
Chapter 03
Chapter 03Chapter 03
Chapter 03
 
C programming(Part 1)
C programming(Part 1)C programming(Part 1)
C programming(Part 1)
 
Programming for Problem Solving
Programming for Problem SolvingProgramming for Problem Solving
Programming for Problem Solving
 
Design of chip controller
Design of chip controllerDesign of chip controller
Design of chip controller
 
Synchronous Loadable Up and Down Counter
Synchronous Loadable Up and Down Counter Synchronous Loadable Up and Down Counter
Synchronous Loadable Up and Down Counter
 
Lecture#5 Operators in C++
Lecture#5 Operators in C++Lecture#5 Operators in C++
Lecture#5 Operators in C++
 
Two stage op amp design on cadence
Two stage op amp design on cadenceTwo stage op amp design on cadence
Two stage op amp design on cadence
 
Project report. fin
Project report. finProject report. fin
Project report. fin
 
Computer Science Programming Assignment Help
Computer Science Programming Assignment HelpComputer Science Programming Assignment Help
Computer Science Programming Assignment Help
 
ANSYS Project
ANSYS ProjectANSYS Project
ANSYS Project
 
EE201_Assignment2
EE201_Assignment2EE201_Assignment2
EE201_Assignment2
 

Recently uploaded

MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAbhinavSharma374939
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...RajaP95
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 

Recently uploaded (20)

9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog Converter
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 

NUMERICAL METHODS AND COMPUTER PROGRAMMING SESSIONAL PRESENTATION