SlideShare a Scribd company logo
1 of 35
Introduction ttoo PPrrooggrraammmmiinngg 
LLeeccttuurree 2255
Introduction ttoo CC++++ 
llaanngguuaaggee
IInn CCoommiinngg LLeeccttuurreess 
– CC++++ FFeeaattuurreess 
– CCllaasssseess 
– OObbjjeecctt
TTooddaayy’’ss LLeeccttuurree 
DDeeffaauulltt FFuunnccttiioonn AArrgguummeennttss 
IInnlliinnee FFuunnccttiioonnss 
CCllaasssseess
Rules ffoorr SSttrruuccttuurreedd 
PPrrooggrraammmmiinngg 
 DDoo MMoodduullaarr pprrooggrraammmmiinngg 
– WWrriittee ssmmaallll ffuunnccttiioonn 
– EEvveerryy ffuunnccttiioonn sshhoouulldd ppeerrffoorrmm 
aa ssppeecciiffiicc wweellll ddeeffiinneedd ttaasskk 
 FFuunnccttiioonn sshhoouulldd oobbeeyy ssiinnggllee eennttrryy 
ssiinnggllee eexxiitt rruullee
LLiibbeerraallllyy CCoommmmeenntt 
tthhee ccooddee
OObbjjeecctt OOrriieenntteedd 
LLaanngguuaaggee
EEaarrllyy 1199880''ss 
BBjjaarrnnee 
SSttrroouussttrruupp 
aatt BBeellll LLaabbss
 CC wwiitthh 
CCllaasssseess 
 CC++++ 
 JJaavvaa
DDeeffaauulltt FFuunnccttiioonn 
AArrgguummeennttss
ppoowweerr (( xx ,, 
nn )) ;;
void f ( int ii ,, ddoouubbllee xx ))
void f ( int i =1 ,, ddoouubbllee xx == 1100..55 {{ 
---- 
}}
EExxaammppllee 11 
vvooiidd ff (( iinntt ii == 11 ,, ddoouubbllee xx == 1100..55 )) 
{{ 
ccoouutt<<<<““ii == ””<<<<ii;; 
ccoouutt<<<<““ xx == ““<<<< xx<<<<eennddll;; 
}}
EExxaammppllee 11 
mmaaiinn (( )) 
{{ 
ff (( )) ;; 
ff (( 22 )) ;; 
ff (( 22 ,, 1122 )) ;; 
}} 
Output 
i = 1 x = 10.5 
i = 2 x = 10.5 
i = 2 x = 12
void f ( double xx==1100..55 ,, iinntt ii )) ;;
The ddeeccllaarraattiioonn ooff 
vvaarriiaabblleess iinnssiiddee tthhee ccooddee
while (( ccoonnddiittiioonn )) 
{{ 
//// bbooddyy ooff tthhee wwhhiillee lloooopp 
}}
{{ 
iinntt ii ;; 
------ 
}}
SSccooppee ooff 
VVaarriiaabbllee 
WWhheenn yyoouu ddeeccllaarree aa 
vvaarriiaabbllee iinnssiiddee tthhee bblloocckk 
tthheenn tthhee vvaarriiaabbllee eexxiissttss 
iinn 
tthhaatt bblloocckk..
EExxaammppllee 22 
ffoorr (( iinntt ii == 00 ;; ii << 33 ;; ii++++ )) 
{{ 
iinntt tteemmpp == 2222 ;; 
ccoouutt <<<< ""nn ii == "" <<<< ii <<<< ""tteemmpp == "" <<<< tteemmpp ;; 
}} 
ccoouutt <<<< ""ii == "" <<<< ii ;;
IInnlliinnee 
ffuunnccttiioonnss
iinnlliinnee
EExxaammppllee 22 
##ddeeffiinnee SSQQUUAARREE (( XX )) XX ** XX 
mmaaiinn (( )) 
{{ 
iinntt ii == 55 ,, jj == 1100 ,, kk ;; 
:: 
kk == 
}} 
SSii Q Q++UU jj A A**RR ii EE++ ((jj ii;; ++ jj )) ;;
EExxaammppllee 33 
##ddeeffiinnee SSQQUUAARREE (( XX )) (( XX )) ** (( XX )) 
mmaaiinn (( )) 
{{ 
iinntt ii == 55 ,, jj == 1100 ,, kk ;; 
kk == 
SS((QQ ii U U++AA jjRR ))EE ** (((( iiii ++++ jjjj )))) ;;;; 
}}
EExxaammppllee 33 
##ddeeffiinnee MMAAXX (( AA ,, BB )) (( (( AA )) >> (( BB )) ?? (( AA )) :: (( BB )) )) 
iinnlliinnee ff (( iinntt aa,, iinntt bb )) 
{{ 
iiff (( aa >> bb )) 
rreettuurrnn aa ;; 
rreettuurrnn bb ;; 
}} 
vvooiidd mmaaiinn (( )) 
{{ 
iinntt ii ,, xx ,, yy ;; 
xx == 2233 ;; yy == 4455 ;; 
ii == MMAAXX (( xx++++ ,, yy++++ )) ;; //// SSiiddee -- eeffffeecctt :: llaarrggeerr vvaalluuee iinnccrreemmeenntteedd ttwwiiccee 
ccoouutt <<<< ""xx == "" <<<< xx <<<< "" yy == "" <<<< yy <<<< ''nn'' ;; 
xx == 2233 ;; yy == 4455 ;; 
ii == ff (( xx++++ ,, yy++++ )) ;; //// WWoorrkkss aass eexxppeecctteedd 
ccoouutt <<<< ""xx == "" <<<< xx <<<< "" yy == "" <<<< yy <<<< ''nn'' ;; 
}}
FFuunnccttiioonn 
OOvveerrllooaaddiinngg
OOppeerraattoorr 
OOvveerrllooaaddiinngg
OOvveerrllooaaddiinngg 
UUssiinngg tthhee ssaammee nnaammee ttoo 
ppeerrffoorrmm mmuullttiippllee ttaasskkss oorr 
ddiiffffeerreenntt ttaasskk ddeeppeennddiinngg oonn 
tthhee ssiittuuaattiioonn
double Intsquareroot (( iinntt ii )) ;; 
ddoouubbllee DDoouubblleessqquuaarreerroooott (( ddoouubbllee xx ))
EExxaammppllee 44 
iinntt ssqquuaarreerroooott (( iinntt ii )) 
{{ 
//// bbooddyy ooff tthhee ffuunnccttiioonn 
}} 
ddoouubbllee ssqquuaarreerroooott (( ddoouubbllee xx )) 
{{ 
//// bbooddyy ooff tthhee ffuunnccttiioonn 
}}
EExxaammppllee 44 
mmaaiinn (( )) 
{{ 
ddoouubbllee ii ,, xx ;; 
iinntt jj == 55 ,, kk ;; 
ii == ssqquuaarreerroooott (( 1100..55 )) ;; 
ccoouutt <<<< ii <<<< eennddll ;; 
kk == ssqquuaarreerroooott (( jj )) ;; 
ccoouutt <<<< kk <<<< eennddll ;; 
}}
EExxaammppllee 
FF (( iinntt aa ,, iinntt bb )) ;; 
FF (( iinntt aa ,, iinntt bb ,, iinntt cc )) ;; 
mmaaiinn (( )) 
{{ 
---------------------- 
FF (( 11 ,, 22 )) ;; //// FF (( iinntt aa ,, iinntt bb )) ;; iiss ccaalllleedd 
FF (( 11 ,, 22 ,, 33 )) ;; //// FF (( iinntt aa ,, iinntt bb ,, iinntt cc )) ;; iiss ccaalllleedd 
---------------------- 
}}
iinntt ff (( iinntt aa )) ;; 
ddoouubbllee ff (( iinntt aa )) ;;
NNaammee 
MMaanngglliinngg

More Related Content

What's hot

निर्माण खंड 1 के एटलस. hindi हिन्दी
निर्माण खंड 1 के एटलस. hindi हिन्दीनिर्माण खंड 1 के एटलस. hindi हिन्दी
निर्माण खंड 1 के एटलस. hindi हिन्दीHarunyahyaHindi
 
Definitions
DefinitionsDefinitions
Definitionsstieberk
 
CS201- Introduction to Programming- Lecture 20
CS201- Introduction to Programming- Lecture 20CS201- Introduction to Programming- Lecture 20
CS201- Introduction to Programming- Lecture 20Bilal Ahmed
 
CS201- Introduction to Programming- Lecture 34
CS201- Introduction to Programming- Lecture 34CS201- Introduction to Programming- Lecture 34
CS201- Introduction to Programming- Lecture 34Bilal Ahmed
 
CS201- Introduction to Programming- Lecture 30
CS201- Introduction to Programming- Lecture 30CS201- Introduction to Programming- Lecture 30
CS201- Introduction to Programming- Lecture 30Bilal Ahmed
 
Contrats speciaux du commerce maritime
  Contrats speciaux du commerce maritime  Contrats speciaux du commerce maritime
Contrats speciaux du commerce maritimeRabah HELAL
 
CS201- Introduction to Programming- Lecture 08
CS201- Introduction to Programming- Lecture 08CS201- Introduction to Programming- Lecture 08
CS201- Introduction to Programming- Lecture 08Bilal Ahmed
 
CS201- Introduction to Programming- Lecture 11
CS201- Introduction to Programming- Lecture 11CS201- Introduction to Programming- Lecture 11
CS201- Introduction to Programming- Lecture 11Bilal Ahmed
 
CS201- Introduction to Programming- Lecture 21
CS201- Introduction to Programming- Lecture 21CS201- Introduction to Programming- Lecture 21
CS201- Introduction to Programming- Lecture 21Bilal Ahmed
 
A igreja, corpo de cristo
A igreja, corpo de cristoA igreja, corpo de cristo
A igreja, corpo de cristoCelio Celio
 
CS201- Introduction to Programming- Lecture 07
CS201- Introduction to Programming- Lecture 07CS201- Introduction to Programming- Lecture 07
CS201- Introduction to Programming- Lecture 07Bilal Ahmed
 
Md1 2007-2
Md1 2007-2Md1 2007-2
Md1 2007-2nereosa
 
CS201- Introduction to Programming- Lecture 12
CS201- Introduction to Programming- Lecture 12CS201- Introduction to Programming- Lecture 12
CS201- Introduction to Programming- Lecture 12Bilal Ahmed
 
1.struktur kristal (hand_out)
1.struktur kristal (hand_out)1.struktur kristal (hand_out)
1.struktur kristal (hand_out)Putu Adi Susanta
 
CS201- Introduction to Programming- Lecture 09
CS201- Introduction to Programming- Lecture 09CS201- Introduction to Programming- Lecture 09
CS201- Introduction to Programming- Lecture 09Bilal Ahmed
 
CS201- Introduction to Programming- Lecture 23
CS201- Introduction to Programming- Lecture 23CS201- Introduction to Programming- Lecture 23
CS201- Introduction to Programming- Lecture 23Bilal Ahmed
 
Admission in india 2015
Admission in india 2015Admission in india 2015
Admission in india 2015Edhole.com
 
Le Black's Law Dictionary, monument de la lexicographie juridique - ATA 2010
Le Black's Law Dictionary, monument de la lexicographie juridique - ATA 2010Le Black's Law Dictionary, monument de la lexicographie juridique - ATA 2010
Le Black's Law Dictionary, monument de la lexicographie juridique - ATA 2010Frédéric Houbert
 
Hong kong oct. 2014
Hong kong oct. 2014Hong kong oct. 2014
Hong kong oct. 2014Sandy Young
 

What's hot (20)

cardiac arrhythmias
cardiac arrhythmiascardiac arrhythmias
cardiac arrhythmias
 
निर्माण खंड 1 के एटलस. hindi हिन्दी
निर्माण खंड 1 के एटलस. hindi हिन्दीनिर्माण खंड 1 के एटलस. hindi हिन्दी
निर्माण खंड 1 के एटलस. hindi हिन्दी
 
Definitions
DefinitionsDefinitions
Definitions
 
CS201- Introduction to Programming- Lecture 20
CS201- Introduction to Programming- Lecture 20CS201- Introduction to Programming- Lecture 20
CS201- Introduction to Programming- Lecture 20
 
CS201- Introduction to Programming- Lecture 34
CS201- Introduction to Programming- Lecture 34CS201- Introduction to Programming- Lecture 34
CS201- Introduction to Programming- Lecture 34
 
CS201- Introduction to Programming- Lecture 30
CS201- Introduction to Programming- Lecture 30CS201- Introduction to Programming- Lecture 30
CS201- Introduction to Programming- Lecture 30
 
Contrats speciaux du commerce maritime
  Contrats speciaux du commerce maritime  Contrats speciaux du commerce maritime
Contrats speciaux du commerce maritime
 
CS201- Introduction to Programming- Lecture 08
CS201- Introduction to Programming- Lecture 08CS201- Introduction to Programming- Lecture 08
CS201- Introduction to Programming- Lecture 08
 
CS201- Introduction to Programming- Lecture 11
CS201- Introduction to Programming- Lecture 11CS201- Introduction to Programming- Lecture 11
CS201- Introduction to Programming- Lecture 11
 
CS201- Introduction to Programming- Lecture 21
CS201- Introduction to Programming- Lecture 21CS201- Introduction to Programming- Lecture 21
CS201- Introduction to Programming- Lecture 21
 
A igreja, corpo de cristo
A igreja, corpo de cristoA igreja, corpo de cristo
A igreja, corpo de cristo
 
CS201- Introduction to Programming- Lecture 07
CS201- Introduction to Programming- Lecture 07CS201- Introduction to Programming- Lecture 07
CS201- Introduction to Programming- Lecture 07
 
Md1 2007-2
Md1 2007-2Md1 2007-2
Md1 2007-2
 
CS201- Introduction to Programming- Lecture 12
CS201- Introduction to Programming- Lecture 12CS201- Introduction to Programming- Lecture 12
CS201- Introduction to Programming- Lecture 12
 
1.struktur kristal (hand_out)
1.struktur kristal (hand_out)1.struktur kristal (hand_out)
1.struktur kristal (hand_out)
 
CS201- Introduction to Programming- Lecture 09
CS201- Introduction to Programming- Lecture 09CS201- Introduction to Programming- Lecture 09
CS201- Introduction to Programming- Lecture 09
 
CS201- Introduction to Programming- Lecture 23
CS201- Introduction to Programming- Lecture 23CS201- Introduction to Programming- Lecture 23
CS201- Introduction to Programming- Lecture 23
 
Admission in india 2015
Admission in india 2015Admission in india 2015
Admission in india 2015
 
Le Black's Law Dictionary, monument de la lexicographie juridique - ATA 2010
Le Black's Law Dictionary, monument de la lexicographie juridique - ATA 2010Le Black's Law Dictionary, monument de la lexicographie juridique - ATA 2010
Le Black's Law Dictionary, monument de la lexicographie juridique - ATA 2010
 
Hong kong oct. 2014
Hong kong oct. 2014Hong kong oct. 2014
Hong kong oct. 2014
 

Viewers also liked

MGT101 - Financial Accounting- Lecture 38
MGT101 - Financial Accounting- Lecture 38MGT101 - Financial Accounting- Lecture 38
MGT101 - Financial Accounting- Lecture 38Bilal Ahmed
 
MTH101 - Calculus and Analytical Geometry- Lecture 44
MTH101 - Calculus and Analytical Geometry- Lecture 44MTH101 - Calculus and Analytical Geometry- Lecture 44
MTH101 - Calculus and Analytical Geometry- Lecture 44Bilal Ahmed
 
ENG101- English Comprehension- Lecture 28
ENG101- English Comprehension- Lecture 28ENG101- English Comprehension- Lecture 28
ENG101- English Comprehension- Lecture 28Bilal Ahmed
 
MTH101 - Calculus and Analytical Geometry- Lecture 41
MTH101 - Calculus and Analytical Geometry- Lecture 41MTH101 - Calculus and Analytical Geometry- Lecture 41
MTH101 - Calculus and Analytical Geometry- Lecture 41Bilal Ahmed
 
CS201- Introduction to Programming- Lecture 33
CS201- Introduction to Programming- Lecture 33CS201- Introduction to Programming- Lecture 33
CS201- Introduction to Programming- Lecture 33Bilal Ahmed
 
MGT101 - Financial Accounting- Lecture 36
MGT101 - Financial Accounting- Lecture 36MGT101 - Financial Accounting- Lecture 36
MGT101 - Financial Accounting- Lecture 36Bilal Ahmed
 
CS101- Introduction to Computing- Lecture 29
CS101- Introduction to Computing- Lecture 29CS101- Introduction to Computing- Lecture 29
CS101- Introduction to Computing- Lecture 29Bilal Ahmed
 
CS101- Introduction to Computing- Lecture 39
CS101- Introduction to Computing- Lecture 39CS101- Introduction to Computing- Lecture 39
CS101- Introduction to Computing- Lecture 39Bilal Ahmed
 
MGT101 - Financial Accounting- Lecture 44
MGT101 - Financial Accounting- Lecture 44MGT101 - Financial Accounting- Lecture 44
MGT101 - Financial Accounting- Lecture 44Bilal Ahmed
 
ENG101- English Comprehension- Lecture 24
ENG101- English Comprehension- Lecture 24ENG101- English Comprehension- Lecture 24
ENG101- English Comprehension- Lecture 24Bilal Ahmed
 
CS101- Introduction to Computing- Lecture 35
CS101- Introduction to Computing- Lecture 35CS101- Introduction to Computing- Lecture 35
CS101- Introduction to Computing- Lecture 35Bilal Ahmed
 
CS201- Introduction to Programming- Lecture 43
CS201- Introduction to Programming- Lecture 43CS201- Introduction to Programming- Lecture 43
CS201- Introduction to Programming- Lecture 43Bilal Ahmed
 
CS101- Introduction to Computing- Lecture 44
CS101- Introduction to Computing- Lecture 44CS101- Introduction to Computing- Lecture 44
CS101- Introduction to Computing- Lecture 44Bilal Ahmed
 
ENG101- English Comprehension- Lecture 23
ENG101- English Comprehension- Lecture 23ENG101- English Comprehension- Lecture 23
ENG101- English Comprehension- Lecture 23Bilal Ahmed
 
MGT101 - Financial Accounting- Lecture 41
MGT101 - Financial Accounting- Lecture 41MGT101 - Financial Accounting- Lecture 41
MGT101 - Financial Accounting- Lecture 41Bilal Ahmed
 
CS101- Introduction to Computing- Lecture 37
CS101- Introduction to Computing- Lecture 37CS101- Introduction to Computing- Lecture 37
CS101- Introduction to Computing- Lecture 37Bilal Ahmed
 
CS201- Introduction to Programming- Lecture 37
CS201- Introduction to Programming- Lecture 37CS201- Introduction to Programming- Lecture 37
CS201- Introduction to Programming- Lecture 37Bilal Ahmed
 
ENG101- English Comprehension- Lecture 43
ENG101- English Comprehension- Lecture 43ENG101- English Comprehension- Lecture 43
ENG101- English Comprehension- Lecture 43Bilal Ahmed
 
MGT101 - Financial Accounting- Lecture 27
MGT101 - Financial Accounting- Lecture 27MGT101 - Financial Accounting- Lecture 27
MGT101 - Financial Accounting- Lecture 27Bilal Ahmed
 
CS201- Introduction to Programming- Lecture 35
CS201- Introduction to Programming- Lecture 35CS201- Introduction to Programming- Lecture 35
CS201- Introduction to Programming- Lecture 35Bilal Ahmed
 

Viewers also liked (20)

MGT101 - Financial Accounting- Lecture 38
MGT101 - Financial Accounting- Lecture 38MGT101 - Financial Accounting- Lecture 38
MGT101 - Financial Accounting- Lecture 38
 
MTH101 - Calculus and Analytical Geometry- Lecture 44
MTH101 - Calculus and Analytical Geometry- Lecture 44MTH101 - Calculus and Analytical Geometry- Lecture 44
MTH101 - Calculus and Analytical Geometry- Lecture 44
 
ENG101- English Comprehension- Lecture 28
ENG101- English Comprehension- Lecture 28ENG101- English Comprehension- Lecture 28
ENG101- English Comprehension- Lecture 28
 
MTH101 - Calculus and Analytical Geometry- Lecture 41
MTH101 - Calculus and Analytical Geometry- Lecture 41MTH101 - Calculus and Analytical Geometry- Lecture 41
MTH101 - Calculus and Analytical Geometry- Lecture 41
 
CS201- Introduction to Programming- Lecture 33
CS201- Introduction to Programming- Lecture 33CS201- Introduction to Programming- Lecture 33
CS201- Introduction to Programming- Lecture 33
 
MGT101 - Financial Accounting- Lecture 36
MGT101 - Financial Accounting- Lecture 36MGT101 - Financial Accounting- Lecture 36
MGT101 - Financial Accounting- Lecture 36
 
CS101- Introduction to Computing- Lecture 29
CS101- Introduction to Computing- Lecture 29CS101- Introduction to Computing- Lecture 29
CS101- Introduction to Computing- Lecture 29
 
CS101- Introduction to Computing- Lecture 39
CS101- Introduction to Computing- Lecture 39CS101- Introduction to Computing- Lecture 39
CS101- Introduction to Computing- Lecture 39
 
MGT101 - Financial Accounting- Lecture 44
MGT101 - Financial Accounting- Lecture 44MGT101 - Financial Accounting- Lecture 44
MGT101 - Financial Accounting- Lecture 44
 
ENG101- English Comprehension- Lecture 24
ENG101- English Comprehension- Lecture 24ENG101- English Comprehension- Lecture 24
ENG101- English Comprehension- Lecture 24
 
CS101- Introduction to Computing- Lecture 35
CS101- Introduction to Computing- Lecture 35CS101- Introduction to Computing- Lecture 35
CS101- Introduction to Computing- Lecture 35
 
CS201- Introduction to Programming- Lecture 43
CS201- Introduction to Programming- Lecture 43CS201- Introduction to Programming- Lecture 43
CS201- Introduction to Programming- Lecture 43
 
CS101- Introduction to Computing- Lecture 44
CS101- Introduction to Computing- Lecture 44CS101- Introduction to Computing- Lecture 44
CS101- Introduction to Computing- Lecture 44
 
ENG101- English Comprehension- Lecture 23
ENG101- English Comprehension- Lecture 23ENG101- English Comprehension- Lecture 23
ENG101- English Comprehension- Lecture 23
 
MGT101 - Financial Accounting- Lecture 41
MGT101 - Financial Accounting- Lecture 41MGT101 - Financial Accounting- Lecture 41
MGT101 - Financial Accounting- Lecture 41
 
CS101- Introduction to Computing- Lecture 37
CS101- Introduction to Computing- Lecture 37CS101- Introduction to Computing- Lecture 37
CS101- Introduction to Computing- Lecture 37
 
CS201- Introduction to Programming- Lecture 37
CS201- Introduction to Programming- Lecture 37CS201- Introduction to Programming- Lecture 37
CS201- Introduction to Programming- Lecture 37
 
ENG101- English Comprehension- Lecture 43
ENG101- English Comprehension- Lecture 43ENG101- English Comprehension- Lecture 43
ENG101- English Comprehension- Lecture 43
 
MGT101 - Financial Accounting- Lecture 27
MGT101 - Financial Accounting- Lecture 27MGT101 - Financial Accounting- Lecture 27
MGT101 - Financial Accounting- Lecture 27
 
CS201- Introduction to Programming- Lecture 35
CS201- Introduction to Programming- Lecture 35CS201- Introduction to Programming- Lecture 35
CS201- Introduction to Programming- Lecture 35
 

Similar to CS201- Introduction to Programming- Lecture 25

Penetration testing: A proactive approach to secure computing - Eric Vanderbu...
Penetration testing: A proactive approach to secure computing - Eric Vanderbu...Penetration testing: A proactive approach to secure computing - Eric Vanderbu...
Penetration testing: A proactive approach to secure computing - Eric Vanderbu...Eric Vanderburg
 
CS201- Introduction to Programming- Lecture 24
CS201- Introduction to Programming- Lecture 24CS201- Introduction to Programming- Lecture 24
CS201- Introduction to Programming- Lecture 24Bilal Ahmed
 
CS201- Introduction to Programming- Lecture 28
CS201- Introduction to Programming- Lecture 28CS201- Introduction to Programming- Lecture 28
CS201- Introduction to Programming- Lecture 28Bilal Ahmed
 
Government resources
Government resourcesGovernment resources
Government resourcesKatie Avery
 
Mathematical modelling
Mathematical modellingMathematical modelling
Mathematical modellingNandiniNandus
 
Building types lecture
Building types lectureBuilding types lecture
Building types lectureANURUDDHKUMAR
 
21 High-quality programming code construction part-ii
21 High-quality programming code construction part-ii21 High-quality programming code construction part-ii
21 High-quality programming code construction part-iimaznabili
 
CS201- Introduction to Programming- Lecture 13
CS201- Introduction to Programming- Lecture 13CS201- Introduction to Programming- Lecture 13
CS201- Introduction to Programming- Lecture 13Bilal Ahmed
 
CS201- Introduction to Programming- Lecture 44
CS201- Introduction to Programming- Lecture 44CS201- Introduction to Programming- Lecture 44
CS201- Introduction to Programming- Lecture 44Bilal Ahmed
 
Solve linear systems by Multiplication
Solve linear systems by MultiplicationSolve linear systems by Multiplication
Solve linear systems by Multiplicationswartzje
 
MSE 602 - Inspect Process Improvememt
MSE 602 - Inspect Process ImprovememtMSE 602 - Inspect Process Improvememt
MSE 602 - Inspect Process ImprovememtAnthony "AJ" Schulte
 
CS201- Introduction to Programming- Lecture 29
CS201- Introduction to Programming- Lecture 29CS201- Introduction to Programming- Lecture 29
CS201- Introduction to Programming- Lecture 29Bilal Ahmed
 
Achisitii recente 2014
Achisitii recente 2014Achisitii recente 2014
Achisitii recente 2014Cristina
 

Similar to CS201- Introduction to Programming- Lecture 25 (19)

Penetration testing: A proactive approach to secure computing - Eric Vanderbu...
Penetration testing: A proactive approach to secure computing - Eric Vanderbu...Penetration testing: A proactive approach to secure computing - Eric Vanderbu...
Penetration testing: A proactive approach to secure computing - Eric Vanderbu...
 
CS201- Introduction to Programming- Lecture 24
CS201- Introduction to Programming- Lecture 24CS201- Introduction to Programming- Lecture 24
CS201- Introduction to Programming- Lecture 24
 
New developments in sarbanes oxley and dodd-frank whistleblower retaliation ...
New developments in sarbanes oxley and dodd-frank whistleblower retaliation ...New developments in sarbanes oxley and dodd-frank whistleblower retaliation ...
New developments in sarbanes oxley and dodd-frank whistleblower retaliation ...
 
CS201- Introduction to Programming- Lecture 28
CS201- Introduction to Programming- Lecture 28CS201- Introduction to Programming- Lecture 28
CS201- Introduction to Programming- Lecture 28
 
Government resources
Government resourcesGovernment resources
Government resources
 
Tiro parabólico
Tiro parabólicoTiro parabólico
Tiro parabólico
 
Mathematical modelling
Mathematical modellingMathematical modelling
Mathematical modelling
 
Building types lecture
Building types lectureBuilding types lecture
Building types lecture
 
21 High-quality programming code construction part-ii
21 High-quality programming code construction part-ii21 High-quality programming code construction part-ii
21 High-quality programming code construction part-ii
 
World com scandal
World com scandalWorld com scandal
World com scandal
 
CS201- Introduction to Programming- Lecture 13
CS201- Introduction to Programming- Lecture 13CS201- Introduction to Programming- Lecture 13
CS201- Introduction to Programming- Lecture 13
 
Strategies for representing whistleblowers in the federal government
Strategies for representing whistleblowers in the federal governmentStrategies for representing whistleblowers in the federal government
Strategies for representing whistleblowers in the federal government
 
Websphere classes in mumbai
Websphere classes in mumbaiWebsphere classes in mumbai
Websphere classes in mumbai
 
CS201- Introduction to Programming- Lecture 44
CS201- Introduction to Programming- Lecture 44CS201- Introduction to Programming- Lecture 44
CS201- Introduction to Programming- Lecture 44
 
Solve linear systems by Multiplication
Solve linear systems by MultiplicationSolve linear systems by Multiplication
Solve linear systems by Multiplication
 
MSE 602 - Inspect Process Improvememt
MSE 602 - Inspect Process ImprovememtMSE 602 - Inspect Process Improvememt
MSE 602 - Inspect Process Improvememt
 
CS201- Introduction to Programming- Lecture 29
CS201- Introduction to Programming- Lecture 29CS201- Introduction to Programming- Lecture 29
CS201- Introduction to Programming- Lecture 29
 
Achisitii recente 2014
Achisitii recente 2014Achisitii recente 2014
Achisitii recente 2014
 
ITU-consegi-final
ITU-consegi-finalITU-consegi-final
ITU-consegi-final
 

More from Bilal Ahmed

CS201- Introduction to Programming- Lecture 45
CS201- Introduction to Programming- Lecture 45CS201- Introduction to Programming- Lecture 45
CS201- Introduction to Programming- Lecture 45Bilal Ahmed
 
CS201- Introduction to Programming- Lecture 42
CS201- Introduction to Programming- Lecture 42CS201- Introduction to Programming- Lecture 42
CS201- Introduction to Programming- Lecture 42Bilal Ahmed
 
CS201- Introduction to Programming- Lecture 41
CS201- Introduction to Programming- Lecture 41CS201- Introduction to Programming- Lecture 41
CS201- Introduction to Programming- Lecture 41Bilal Ahmed
 
CS201- Introduction to Programming- Lecture 40
CS201- Introduction to Programming- Lecture 40CS201- Introduction to Programming- Lecture 40
CS201- Introduction to Programming- Lecture 40Bilal Ahmed
 
CS201- Introduction to Programming- Lecture 39
CS201- Introduction to Programming- Lecture 39CS201- Introduction to Programming- Lecture 39
CS201- Introduction to Programming- Lecture 39Bilal Ahmed
 
CS201- Introduction to Programming- Lecture 36
CS201- Introduction to Programming- Lecture 36CS201- Introduction to Programming- Lecture 36
CS201- Introduction to Programming- Lecture 36Bilal Ahmed
 
CS201- Introduction to Programming- Lecture 32
CS201- Introduction to Programming- Lecture 32CS201- Introduction to Programming- Lecture 32
CS201- Introduction to Programming- Lecture 32Bilal Ahmed
 
CS201- Introduction to Programming- Lecture 31
CS201- Introduction to Programming- Lecture 31CS201- Introduction to Programming- Lecture 31
CS201- Introduction to Programming- Lecture 31Bilal Ahmed
 
CS201- Introduction to Programming- Lecture 19
CS201- Introduction to Programming- Lecture 19CS201- Introduction to Programming- Lecture 19
CS201- Introduction to Programming- Lecture 19Bilal Ahmed
 
CS201- Introduction to Programming- Lecture 18
CS201- Introduction to Programming- Lecture 18CS201- Introduction to Programming- Lecture 18
CS201- Introduction to Programming- Lecture 18Bilal Ahmed
 
CS201- Introduction to Programming- Lecture 17
CS201- Introduction to Programming- Lecture 17CS201- Introduction to Programming- Lecture 17
CS201- Introduction to Programming- Lecture 17Bilal Ahmed
 
CS201- Introduction to Programming- Lecture 16
CS201- Introduction to Programming- Lecture 16CS201- Introduction to Programming- Lecture 16
CS201- Introduction to Programming- Lecture 16Bilal Ahmed
 

More from Bilal Ahmed (12)

CS201- Introduction to Programming- Lecture 45
CS201- Introduction to Programming- Lecture 45CS201- Introduction to Programming- Lecture 45
CS201- Introduction to Programming- Lecture 45
 
CS201- Introduction to Programming- Lecture 42
CS201- Introduction to Programming- Lecture 42CS201- Introduction to Programming- Lecture 42
CS201- Introduction to Programming- Lecture 42
 
CS201- Introduction to Programming- Lecture 41
CS201- Introduction to Programming- Lecture 41CS201- Introduction to Programming- Lecture 41
CS201- Introduction to Programming- Lecture 41
 
CS201- Introduction to Programming- Lecture 40
CS201- Introduction to Programming- Lecture 40CS201- Introduction to Programming- Lecture 40
CS201- Introduction to Programming- Lecture 40
 
CS201- Introduction to Programming- Lecture 39
CS201- Introduction to Programming- Lecture 39CS201- Introduction to Programming- Lecture 39
CS201- Introduction to Programming- Lecture 39
 
CS201- Introduction to Programming- Lecture 36
CS201- Introduction to Programming- Lecture 36CS201- Introduction to Programming- Lecture 36
CS201- Introduction to Programming- Lecture 36
 
CS201- Introduction to Programming- Lecture 32
CS201- Introduction to Programming- Lecture 32CS201- Introduction to Programming- Lecture 32
CS201- Introduction to Programming- Lecture 32
 
CS201- Introduction to Programming- Lecture 31
CS201- Introduction to Programming- Lecture 31CS201- Introduction to Programming- Lecture 31
CS201- Introduction to Programming- Lecture 31
 
CS201- Introduction to Programming- Lecture 19
CS201- Introduction to Programming- Lecture 19CS201- Introduction to Programming- Lecture 19
CS201- Introduction to Programming- Lecture 19
 
CS201- Introduction to Programming- Lecture 18
CS201- Introduction to Programming- Lecture 18CS201- Introduction to Programming- Lecture 18
CS201- Introduction to Programming- Lecture 18
 
CS201- Introduction to Programming- Lecture 17
CS201- Introduction to Programming- Lecture 17CS201- Introduction to Programming- Lecture 17
CS201- Introduction to Programming- Lecture 17
 
CS201- Introduction to Programming- Lecture 16
CS201- Introduction to Programming- Lecture 16CS201- Introduction to Programming- Lecture 16
CS201- Introduction to Programming- Lecture 16
 

Recently uploaded

Tekoäly ja opinto-ohjaus, webinaari 26.4.24
Tekoäly ja opinto-ohjaus, webinaari 26.4.24Tekoäly ja opinto-ohjaus, webinaari 26.4.24
Tekoäly ja opinto-ohjaus, webinaari 26.4.24Matleena Laakso
 
Tekoäly opetuksessa, opettajien kevätpäivä 26.4.24
Tekoäly opetuksessa, opettajien kevätpäivä 26.4.24Tekoäly opetuksessa, opettajien kevätpäivä 26.4.24
Tekoäly opetuksessa, opettajien kevätpäivä 26.4.24Matleena Laakso
 
Tekoäly ja oppiminen. Airut-hanke 23.4.24
Tekoäly ja oppiminen. Airut-hanke 23.4.24Tekoäly ja oppiminen. Airut-hanke 23.4.24
Tekoäly ja oppiminen. Airut-hanke 23.4.24Matleena Laakso
 
Valkohäntäpeura (Odocoileus virginianus).pptx
Valkohäntäpeura (Odocoileus virginianus).pptxValkohäntäpeura (Odocoileus virginianus).pptx
Valkohäntäpeura (Odocoileus virginianus).pptxpurmonen8
 
Opettaja ja tekoäly. Pedaiiltapäivä 25.4.24
Opettaja ja tekoäly. Pedaiiltapäivä 25.4.24Opettaja ja tekoäly. Pedaiiltapäivä 25.4.24
Opettaja ja tekoäly. Pedaiiltapäivä 25.4.24Matleena Laakso
 
Tekoälyä koulunkäynninohjaajille. Jyty 27.4.24
Tekoälyä koulunkäynninohjaajille. Jyty 27.4.24Tekoälyä koulunkäynninohjaajille. Jyty 27.4.24
Tekoälyä koulunkäynninohjaajille. Jyty 27.4.24Matleena Laakso
 
Tekoäly opetuksessa. Seinäjoen lyseo 24.4.24
Tekoäly opetuksessa. Seinäjoen lyseo 24.4.24Tekoäly opetuksessa. Seinäjoen lyseo 24.4.24
Tekoäly opetuksessa. Seinäjoen lyseo 24.4.24Matleena Laakso
 

Recently uploaded (8)

Tekoäly ja opinto-ohjaus, webinaari 26.4.24
Tekoäly ja opinto-ohjaus, webinaari 26.4.24Tekoäly ja opinto-ohjaus, webinaari 26.4.24
Tekoäly ja opinto-ohjaus, webinaari 26.4.24
 
Tekoäly opetuksessa, opettajien kevätpäivä 26.4.24
Tekoäly opetuksessa, opettajien kevätpäivä 26.4.24Tekoäly opetuksessa, opettajien kevätpäivä 26.4.24
Tekoäly opetuksessa, opettajien kevätpäivä 26.4.24
 
Tekoäly ja oppiminen. Airut-hanke 23.4.24
Tekoäly ja oppiminen. Airut-hanke 23.4.24Tekoäly ja oppiminen. Airut-hanke 23.4.24
Tekoäly ja oppiminen. Airut-hanke 23.4.24
 
Valkohäntäpeura (Odocoileus virginianus).pptx
Valkohäntäpeura (Odocoileus virginianus).pptxValkohäntäpeura (Odocoileus virginianus).pptx
Valkohäntäpeura (Odocoileus virginianus).pptx
 
Opettaja ja tekoäly. Pedaiiltapäivä 25.4.24
Opettaja ja tekoäly. Pedaiiltapäivä 25.4.24Opettaja ja tekoäly. Pedaiiltapäivä 25.4.24
Opettaja ja tekoäly. Pedaiiltapäivä 25.4.24
 
Tekoälyä koulunkäynninohjaajille. Jyty 27.4.24
Tekoälyä koulunkäynninohjaajille. Jyty 27.4.24Tekoälyä koulunkäynninohjaajille. Jyty 27.4.24
Tekoälyä koulunkäynninohjaajille. Jyty 27.4.24
 
Koulutuksen palkat ja kustannukset sekä koulutuksen ansiot
Koulutuksen palkat ja kustannukset sekä koulutuksen ansiotKoulutuksen palkat ja kustannukset sekä koulutuksen ansiot
Koulutuksen palkat ja kustannukset sekä koulutuksen ansiot
 
Tekoäly opetuksessa. Seinäjoen lyseo 24.4.24
Tekoäly opetuksessa. Seinäjoen lyseo 24.4.24Tekoäly opetuksessa. Seinäjoen lyseo 24.4.24
Tekoäly opetuksessa. Seinäjoen lyseo 24.4.24
 

CS201- Introduction to Programming- Lecture 25