SlideShare a Scribd company logo
Installing WindowsLogic and Techniques
Programming XP Professional Using Attended Installation
Rationale


                The Programming Logic and Techniques (PLT) module is
                positioned as the entry point into this curriculum. Since this
                curriculum is designed to cater to aspiring software
                professionals, a strong foundation in programming
                approaches and application of logic was found essential
                and was recommended by the industry.
                In the OOPs using C# module the students will be required
                to write programs involving the use of programming
                constructs. The PLT module, apart from teaching problem
                solving technique like flowcharting, will also prepare the
                students for the OOPs using C# module by developing the
                student’s ability to study, solve and represent the logic of
                the problems.



     Ver. 1.0                       Session 1                          Slide 1 of 20
Installing WindowsLogic and Techniques
Programming XP Professional Using Attended Installation
Objectives


                In this session, you will learn to:
                   Identify input, process, and output
                   Describe programs
                   Problem-solving techniques




     Ver. 1.0                        Session 1            Slide 2 of 20
Installing WindowsLogic and Techniques
Programming XP Professional Using Attended Installation
Phases


                Activities can be broken into separate phases:
                   The first phase is called the input phase.
                   The second phase is called the process phase.
                   The last phase is called the output phase.




     Ver. 1.0                       Session 1                      Slide 3 of 20
Installing WindowsLogic and Techniques
Programming XP Professional Using Attended Installation
Input-Process-Output Cycle


                The cycle of activities performed by a computer is referred
                to as the Input-Process-Output cycle or the I-P-O cycle.
                A computer consists of several components.
                Each component participates in either one of the input,
                process, or output phases.




     Ver. 1.0                      Session 1                         Slide 4 of 20
Installing WindowsLogic and Techniques
Programming XP Professional Using Attended Installation
Programs


                A computer is designed to accept input, process it, and
                generate output.
                A set of instructions to perform a task is called a program.
                A number of programs together form an application.




     Ver. 1.0                       Session 1                          Slide 5 of 20
Installing WindowsLogic and Techniques
Programming XP Professional Using Attended Installation
Flowcharts


                A flowchart is a graphical representation of the steps to be
                followed for solving a problem.
                It consists of a set of symbols.
                Each symbol represents a specific activity.




     Ver. 1.0                       Session 1                         Slide 6 of 20
Installing WindowsLogic and Techniques
Programming XP Professional Using Attended Installation
Symbols Used in Flowcharts


                Symbol                   Activity


                                         Input


                                         Processing


                                         Output


                                         Decision


                                         Subroutine




     Ver. 1.0                Session 1                    Slide 7 of 20
Installing WindowsLogic and Techniques
Programming XP Professional Using Attended Installation
Symbols Used in Flowcharts (Contd.)


                Symbol                   Activity

                                         Flow lines




                                         Terminator


                                         On page connector



                                         Off page connector



                                         Annotation




     Ver. 1.0                Session 1                        Slide 8 of 20
Installing WindowsLogic and Techniques
Programming XP Professional Using Attended Installation
Just a minute


                  Match the following verbs with appropriate symbols.
                         Get, Write, Stop, Add, Start, Multiply, Read, Subtract, Divide,
                         Display, Input, Output, If
                S. No.           Symbol                               Activity


                    1.


                    2.


                    3.

                                       start




                    4.


                    5.



     Ver. 1.0                                  Session 1                          Slide 9 of 20
Installing WindowsLogic and Techniques
Programming XP Professional Using Attended Installation
Just a minute (Contd.)


                Answer:
                1. If
                2. Add, Multiply, Subtract, Divide
                3. Get, Read, Input
                4. Start, Stop
                5. Write, Display, Output




     Ver. 1.0                        Session 1            Slide 10 of 20
Installing WindowsLogic and Techniques
Programming XP Professional Using Attended Installation
Drawing Simple Flowcharts


                Example:
                   Flowchart for preparing tea            Start




                                                 The Steps for Preparing tea




                                                 Input Water, Sugar,
                                                 Tea Leaves, and Milk




                                                   Boil the Ingredients



                                                   Tea is Prepared



                                                          Stop


     Ver. 1.0                        Session 1                                 Slide 11 of 20
Installing WindowsLogic and Techniques
Programming XP Professional Using Attended Installation
Drawing Simple Flowcharts (Contd.)


                Example:
                   Flowchart for manipulating numbers

                                                        Start




                                                  Get a Number




                                                 Add 1 to the Number




                                                 Display the Number



                                                        Stop



     Ver. 1.0                       Session 1                          Slide 12 of 20
Installing WindowsLogic and Techniques
Programming XP Professional Using Attended Installation
Drawing Simple Flowcharts (Contd.)


                Example:
                   The value of sale made is calculated as the number of units
                   sold multiplied by the price per unit. Draw a flowchart to
                   calculate and print the sale value.




     Ver. 1.0                       Session 1                            Slide 13 of 20
Installing WindowsLogic and Techniques
Programming XP Professional Using Attended Installation
Drawing Simple Flowcharts (Contd.)


                Example (Contd.):
                                                       Start




                                                Input Units Sold




                                                Input Unit Price



                                                 Multiply Units Sold
                                                   By Unit Price


                                                 Print Total Sale
                                                       Value


                                                        Stop

     Ver. 1.0                       Session 1                          Slide 14 of 20
Installing WindowsLogic and Techniques
Programming XP Professional Using Attended Installation




                           Exercises



     Ver. 1.0                Session 1                    Slide 15 of 20
Installing WindowsLogic and Techniques
Programming XP Professional Using Attended Installation
Exercise 1


                Draw a flowchart to represent the procedure of admission of
                a student to NIIT.




     Ver. 1.0                      Session 1                       Slide 16 of 20
Installing WindowsLogic and Techniques
Programming XP Professional Using Attended Installation
Exercise 2


                Rearrange the following steps in the order of correct
                sequence to add two numbers and draw a flowchart for the
                same:
                1.   Get the First Number
                2.   Display the Result
                3.   Stop
                4.   Add the Two Numbers
                5.   Get the Second Number
                6.   Start




     Ver. 1.0                       Session 1                     Slide 17 of 20
Installing WindowsLogic and Techniques
Programming XP Professional Using Attended Installation
Exercise 3


                Draw a flowchart to accept five numbers and display the
                sum of the numbers.




     Ver. 1.0                      Session 1                       Slide 18 of 20
Installing WindowsLogic and Techniques
Programming XP Professional Using Attended Installation
Exercise 4


                Draw a flowchart to input any number, multiply it by 2, and
                display the result.




     Ver. 1.0                       Session 1                        Slide 19 of 20
Installing WindowsLogic and Techniques
Programming XP Professional Using Attended Installation
Summary


                In this session, you learned that:
                   The cycle of activities performed by a computer follows the
                   Input-Process-Output cycle.
                   A set of instructions to perform a particular job is called a
                   program.
                   A flowchart is a graphical representation of the steps to be
                   followed for solving a problem.
                   A flowchart consists of a set of symbols, where each symbol
                   represents a specific activity.




     Ver. 1.0                        Session 1                            Slide 20 of 20

More Related Content

What's hot

게임 기획서 작성하기 - 송철헌
게임 기획서 작성하기 - 송철헌게임 기획서 작성하기 - 송철헌
게임 기획서 작성하기 - 송철헌ETRIBE_STG
 
Unity2018/2019における最適化事情
Unity2018/2019における最適化事情Unity2018/2019における最適化事情
Unity2018/2019における最適化事情
Unity Technologies Japan K.K.
 
ジラフとアンニカの写真撮影機能の制作事例
ジラフとアンニカの写真撮影機能の制作事例ジラフとアンニカの写真撮影機能の制作事例
ジラフとアンニカの写真撮影機能の制作事例
Kami pallet
 
CEDEC2017 アーティストのためのリアルタイムシェーダー学習法
CEDEC2017 アーティストのためのリアルタイムシェーダー学習法CEDEC2017 アーティストのためのリアルタイムシェーダー学習法
CEDEC2017 アーティストのためのリアルタイムシェーダー学習法
小林 信行
 
Unityで意外と簡単・・・だけど難しいVRコンテンツ
Unityで意外と簡単・・・だけど難しいVRコンテンツUnityで意外と簡単・・・だけど難しいVRコンテンツ
Unityで意外と簡単・・・だけど難しいVRコンテンツ
infinite_loop
 
MAYAで作ったアニメーションをUnityに取り込んで動かしてみるの巻
MAYAで作ったアニメーションをUnityに取り込んで動かしてみるの巻MAYAで作ったアニメーションをUnityに取り込んで動かしてみるの巻
MAYAで作ったアニメーションをUnityに取り込んで動かしてみるの巻
poko ponmaru
 
常識を疑え ゲームの企画書に望まれるものと期待されるもの (HDIfes#3 2014-6-21)
常識を疑え ゲームの企画書に望まれるものと期待されるもの (HDIfes#3 2014-6-21)常識を疑え ゲームの企画書に望まれるものと期待されるもの (HDIfes#3 2014-6-21)
常識を疑え ゲームの企画書に望まれるものと期待されるもの (HDIfes#3 2014-6-21)
uehara1974
 
Realizacja projektu 3D - praca inżynierska
Realizacja projektu 3D - praca inżynierskaRealizacja projektu 3D - praca inżynierska
Realizacja projektu 3D - praca inżynierska
Jola Podolszańska
 
Creating A Character in Uncharted: Drake's Fortune
Creating A Character in Uncharted: Drake's FortuneCreating A Character in Uncharted: Drake's Fortune
Creating A Character in Uncharted: Drake's Fortune
Naughty Dog
 
VTC on Unity の 進捗について
VTC on Unity の 進捗についてVTC on Unity の 進捗について
VTC on Unity の 進捗について
Ryodo Tanaka
 
リアルタイムリモートデバッグ環境によるゲーム開発イテレーションの高速化【DeNA TechCon 2020 ライブ配信】
リアルタイムリモートデバッグ環境によるゲーム開発イテレーションの高速化【DeNA TechCon 2020 ライブ配信】リアルタイムリモートデバッグ環境によるゲーム開発イテレーションの高速化【DeNA TechCon 2020 ライブ配信】
リアルタイムリモートデバッグ環境によるゲーム開発イテレーションの高速化【DeNA TechCon 2020 ライブ配信】
DeNA
 
時代遅れと言われようとMdaフレームワークの紹介
時代遅れと言われようとMdaフレームワークの紹介時代遅れと言われようとMdaフレームワークの紹介
時代遅れと言われようとMdaフレームワークの紹介
MaxNeetGames
 
【GDM37】ゲームAIにおける意思決定と地形表現~『LEFT ALIVE』を事例に紹介~
【GDM37】ゲームAIにおける意思決定と地形表現~『LEFT ALIVE』を事例に紹介~【GDM37】ゲームAIにおける意思決定と地形表現~『LEFT ALIVE』を事例に紹介~
【GDM37】ゲームAIにおける意思決定と地形表現~『LEFT ALIVE』を事例に紹介~
dena_genom
 
What is goap, and why is it not already mainstream
What is goap, and why is it not already mainstreamWhat is goap, and why is it not already mainstream
What is goap, and why is it not already mainstream
Aakash Chotrani
 
5分でわかる Sensor SDK
5分でわかる Sensor SDK5分でわかる Sensor SDK
5分でわかる Sensor SDK
UnityTechnologiesJapan002
 
2018/1/30 Django勉強会
2018/1/30 Django勉強会2018/1/30 Django勉強会
2018/1/30 Django勉強会
虎の穴 開発室
 
第2部 自作ライブラリ紹介
第2部  自作ライブラリ紹介第2部  自作ライブラリ紹介
【Unite Tokyo 2018】トゥーンシェーダートークセッション#1『リアルタイムトゥーンシェーダー徹底トーク』
【Unite Tokyo 2018】トゥーンシェーダートークセッション#1『リアルタイムトゥーンシェーダー徹底トーク』【Unite Tokyo 2018】トゥーンシェーダートークセッション#1『リアルタイムトゥーンシェーダー徹底トーク』
【Unite Tokyo 2018】トゥーンシェーダートークセッション#1『リアルタイムトゥーンシェーダー徹底トーク』
Unity Technologies Japan K.K.
 
DeepLearningとWord2Vecを用いた画像レコメンドの考察
DeepLearningとWord2Vecを用いた画像レコメンドの考察DeepLearningとWord2Vecを用いた画像レコメンドの考察
DeepLearningとWord2Vecを用いた画像レコメンドの考察
Tadaichiro Nakano
 
Unityで音ゲーをつくる
Unityで音ゲーをつくるUnityで音ゲーをつくる
Unityで音ゲーをつくる
chronoah
 

What's hot (20)

게임 기획서 작성하기 - 송철헌
게임 기획서 작성하기 - 송철헌게임 기획서 작성하기 - 송철헌
게임 기획서 작성하기 - 송철헌
 
Unity2018/2019における最適化事情
Unity2018/2019における最適化事情Unity2018/2019における最適化事情
Unity2018/2019における最適化事情
 
ジラフとアンニカの写真撮影機能の制作事例
ジラフとアンニカの写真撮影機能の制作事例ジラフとアンニカの写真撮影機能の制作事例
ジラフとアンニカの写真撮影機能の制作事例
 
CEDEC2017 アーティストのためのリアルタイムシェーダー学習法
CEDEC2017 アーティストのためのリアルタイムシェーダー学習法CEDEC2017 アーティストのためのリアルタイムシェーダー学習法
CEDEC2017 アーティストのためのリアルタイムシェーダー学習法
 
Unityで意外と簡単・・・だけど難しいVRコンテンツ
Unityで意外と簡単・・・だけど難しいVRコンテンツUnityで意外と簡単・・・だけど難しいVRコンテンツ
Unityで意外と簡単・・・だけど難しいVRコンテンツ
 
MAYAで作ったアニメーションをUnityに取り込んで動かしてみるの巻
MAYAで作ったアニメーションをUnityに取り込んで動かしてみるの巻MAYAで作ったアニメーションをUnityに取り込んで動かしてみるの巻
MAYAで作ったアニメーションをUnityに取り込んで動かしてみるの巻
 
常識を疑え ゲームの企画書に望まれるものと期待されるもの (HDIfes#3 2014-6-21)
常識を疑え ゲームの企画書に望まれるものと期待されるもの (HDIfes#3 2014-6-21)常識を疑え ゲームの企画書に望まれるものと期待されるもの (HDIfes#3 2014-6-21)
常識を疑え ゲームの企画書に望まれるものと期待されるもの (HDIfes#3 2014-6-21)
 
Realizacja projektu 3D - praca inżynierska
Realizacja projektu 3D - praca inżynierskaRealizacja projektu 3D - praca inżynierska
Realizacja projektu 3D - praca inżynierska
 
Creating A Character in Uncharted: Drake's Fortune
Creating A Character in Uncharted: Drake's FortuneCreating A Character in Uncharted: Drake's Fortune
Creating A Character in Uncharted: Drake's Fortune
 
VTC on Unity の 進捗について
VTC on Unity の 進捗についてVTC on Unity の 進捗について
VTC on Unity の 進捗について
 
リアルタイムリモートデバッグ環境によるゲーム開発イテレーションの高速化【DeNA TechCon 2020 ライブ配信】
リアルタイムリモートデバッグ環境によるゲーム開発イテレーションの高速化【DeNA TechCon 2020 ライブ配信】リアルタイムリモートデバッグ環境によるゲーム開発イテレーションの高速化【DeNA TechCon 2020 ライブ配信】
リアルタイムリモートデバッグ環境によるゲーム開発イテレーションの高速化【DeNA TechCon 2020 ライブ配信】
 
時代遅れと言われようとMdaフレームワークの紹介
時代遅れと言われようとMdaフレームワークの紹介時代遅れと言われようとMdaフレームワークの紹介
時代遅れと言われようとMdaフレームワークの紹介
 
【GDM37】ゲームAIにおける意思決定と地形表現~『LEFT ALIVE』を事例に紹介~
【GDM37】ゲームAIにおける意思決定と地形表現~『LEFT ALIVE』を事例に紹介~【GDM37】ゲームAIにおける意思決定と地形表現~『LEFT ALIVE』を事例に紹介~
【GDM37】ゲームAIにおける意思決定と地形表現~『LEFT ALIVE』を事例に紹介~
 
What is goap, and why is it not already mainstream
What is goap, and why is it not already mainstreamWhat is goap, and why is it not already mainstream
What is goap, and why is it not already mainstream
 
5分でわかる Sensor SDK
5分でわかる Sensor SDK5分でわかる Sensor SDK
5分でわかる Sensor SDK
 
2018/1/30 Django勉強会
2018/1/30 Django勉強会2018/1/30 Django勉強会
2018/1/30 Django勉強会
 
第2部 自作ライブラリ紹介
第2部  自作ライブラリ紹介第2部  自作ライブラリ紹介
第2部 自作ライブラリ紹介
 
【Unite Tokyo 2018】トゥーンシェーダートークセッション#1『リアルタイムトゥーンシェーダー徹底トーク』
【Unite Tokyo 2018】トゥーンシェーダートークセッション#1『リアルタイムトゥーンシェーダー徹底トーク』【Unite Tokyo 2018】トゥーンシェーダートークセッション#1『リアルタイムトゥーンシェーダー徹底トーク』
【Unite Tokyo 2018】トゥーンシェーダートークセッション#1『リアルタイムトゥーンシェーダー徹底トーク』
 
DeepLearningとWord2Vecを用いた画像レコメンドの考察
DeepLearningとWord2Vecを用いた画像レコメンドの考察DeepLearningとWord2Vecを用いた画像レコメンドの考察
DeepLearningとWord2Vecを用いた画像レコメンドの考察
 
Unityで音ゲーをつくる
Unityで音ゲーをつくるUnityで音ゲーをつくる
Unityで音ゲーをつくる
 

Viewers also liked

Sem1 plt xp_03
Sem1 plt xp_03Sem1 plt xp_03
Sem1 plt xp_03
Niit Care
 
02 iec t1_s1_oo_ps_session_02
02 iec t1_s1_oo_ps_session_0202 iec t1_s1_oo_ps_session_02
02 iec t1_s1_oo_ps_session_02
Niit Care
 
Sem1 plt xp_02
Sem1 plt xp_02Sem1 plt xp_02
Sem1 plt xp_02
Niit Care
 
Sem1 plt xp_01
Sem1 plt xp_01Sem1 plt xp_01
Sem1 plt xp_01
Niit Care
 
02 iec t1_s1_plt_session_02
02 iec t1_s1_plt_session_0202 iec t1_s1_plt_session_02
02 iec t1_s1_plt_session_02
Niit Care
 
Sql xp 09
Sql xp 09Sql xp 09
Sql xp 09
Niit Care
 
Dacj 1-3 b
Dacj 1-3 bDacj 1-3 b
Dacj 1-3 b
Niit Care
 
Sql xp 11
Sql xp 11Sql xp 11
Sql xp 11
Niit Care
 
Sql xp 10
Sql xp 10Sql xp 10
Sql xp 10
Niit Care
 
02 t1 s2_linux_lesson2
02 t1 s2_linux_lesson202 t1 s2_linux_lesson2
02 t1 s2_linux_lesson2
Niit Care
 
aamir presentation
aamir presentationaamir presentation
aamir presentation
Muhammed Aamir
 
Sql xp 01
Sql xp 01Sql xp 01
Sql xp 01
Niit Care
 
Comp tia n+_session_08
Comp tia n+_session_08Comp tia n+_session_08
Comp tia n+_session_08
Niit Care
 
01 iec t1_s1_oo_ps_session_01
01 iec t1_s1_oo_ps_session_0101 iec t1_s1_oo_ps_session_01
01 iec t1_s1_oo_ps_session_01
Niit Care
 
SQL | Computer Science
SQL | Computer ScienceSQL | Computer Science
SQL | Computer Science
Transweb Global Inc
 
7.information education and communication (iec) A Lecture By Mr.Allah dad Khan
7.information education and communication (iec)  A Lecture By Mr.Allah dad Khan7.information education and communication (iec)  A Lecture By Mr.Allah dad Khan
7.information education and communication (iec) A Lecture By Mr.Allah dad Khan
Mr.Allah Dad Khan
 
MS-SQL SERVER ARCHITECTURE
MS-SQL SERVER ARCHITECTUREMS-SQL SERVER ARCHITECTURE
MS-SQL SERVER ARCHITECTURE
Douglas Bernardini
 
Sql server basics
Sql server basicsSql server basics
Sql server basics
VishalJharwade
 
5 Rs of IEC (Information, Education and Communication)
5 Rs of IEC (Information, Education and Communication)5 Rs of IEC (Information, Education and Communication)
5 Rs of IEC (Information, Education and Communication)
Mark Raygan Garcia
 
Health education, information and communication
Health education, information and communicationHealth education, information and communication
Health education, information and communication
wrigveda
 

Viewers also liked (20)

Sem1 plt xp_03
Sem1 plt xp_03Sem1 plt xp_03
Sem1 plt xp_03
 
02 iec t1_s1_oo_ps_session_02
02 iec t1_s1_oo_ps_session_0202 iec t1_s1_oo_ps_session_02
02 iec t1_s1_oo_ps_session_02
 
Sem1 plt xp_02
Sem1 plt xp_02Sem1 plt xp_02
Sem1 plt xp_02
 
Sem1 plt xp_01
Sem1 plt xp_01Sem1 plt xp_01
Sem1 plt xp_01
 
02 iec t1_s1_plt_session_02
02 iec t1_s1_plt_session_0202 iec t1_s1_plt_session_02
02 iec t1_s1_plt_session_02
 
Sql xp 09
Sql xp 09Sql xp 09
Sql xp 09
 
Dacj 1-3 b
Dacj 1-3 bDacj 1-3 b
Dacj 1-3 b
 
Sql xp 11
Sql xp 11Sql xp 11
Sql xp 11
 
Sql xp 10
Sql xp 10Sql xp 10
Sql xp 10
 
02 t1 s2_linux_lesson2
02 t1 s2_linux_lesson202 t1 s2_linux_lesson2
02 t1 s2_linux_lesson2
 
aamir presentation
aamir presentationaamir presentation
aamir presentation
 
Sql xp 01
Sql xp 01Sql xp 01
Sql xp 01
 
Comp tia n+_session_08
Comp tia n+_session_08Comp tia n+_session_08
Comp tia n+_session_08
 
01 iec t1_s1_oo_ps_session_01
01 iec t1_s1_oo_ps_session_0101 iec t1_s1_oo_ps_session_01
01 iec t1_s1_oo_ps_session_01
 
SQL | Computer Science
SQL | Computer ScienceSQL | Computer Science
SQL | Computer Science
 
7.information education and communication (iec) A Lecture By Mr.Allah dad Khan
7.information education and communication (iec)  A Lecture By Mr.Allah dad Khan7.information education and communication (iec)  A Lecture By Mr.Allah dad Khan
7.information education and communication (iec) A Lecture By Mr.Allah dad Khan
 
MS-SQL SERVER ARCHITECTURE
MS-SQL SERVER ARCHITECTUREMS-SQL SERVER ARCHITECTURE
MS-SQL SERVER ARCHITECTURE
 
Sql server basics
Sql server basicsSql server basics
Sql server basics
 
5 Rs of IEC (Information, Education and Communication)
5 Rs of IEC (Information, Education and Communication)5 Rs of IEC (Information, Education and Communication)
5 Rs of IEC (Information, Education and Communication)
 
Health education, information and communication
Health education, information and communicationHealth education, information and communication
Health education, information and communication
 

Similar to 01 iec t1_s1_plt_session_01

05 intel v_tune_session_07
05 intel v_tune_session_0705 intel v_tune_session_07
05 intel v_tune_session_07
Niit Care
 
02 intel v_tune_session_02
02 intel v_tune_session_0202 intel v_tune_session_02
02 intel v_tune_session_02
Niit Care
 
Plug yourself in and your app will never be the same (2 hour edition)
Plug yourself in and your app will never be the same (2 hour edition)Plug yourself in and your app will never be the same (2 hour edition)
Plug yourself in and your app will never be the same (2 hour edition)
Mikkel Flindt Heisterberg
 
Plug yourself in and your app will never be the same (2 hr editon)
Plug yourself in and your app will never be the same (2 hr editon)Plug yourself in and your app will never be the same (2 hr editon)
Plug yourself in and your app will never be the same (2 hr editon)
Mikkel Flindt Heisterberg
 
Windows service best practice
Windows service best practiceWindows service best practice
Windows service best practice
Yu GUAN
 
CHAPTER 1
CHAPTER 1CHAPTER 1
CHAPTER 1
mohd_mizan
 
CPCS202_01_Introduction.pptx
CPCS202_01_Introduction.pptxCPCS202_01_Introduction.pptx
CPCS202_01_Introduction.pptx
batol1998g
 
Plug yourself in and your app will never be the same (1 hr edition)
Plug yourself in and your app will never be the same (1 hr edition)Plug yourself in and your app will never be the same (1 hr edition)
Plug yourself in and your app will never be the same (1 hr edition)
Mikkel Flindt Heisterberg
 
09 intel v_tune_session_13
09 intel v_tune_session_1309 intel v_tune_session_13
09 intel v_tune_session_13
Niit Care
 
10 gui 14
10 gui 1410 gui 14
10 gui 14
Niit Care
 
06 intel v_tune_session_08
06 intel v_tune_session_0806 intel v_tune_session_08
06 intel v_tune_session_08
Niit Care
 
Chapter 1 — Introduction to Visual Basic 2010 Programming
Chapter 1 — Introduction to Visual Basic 2010 Programming Chapter 1 — Introduction to Visual Basic 2010 Programming
Chapter 1 — Introduction to Visual Basic 2010 Programming
francopw
 
Lotusphere 2011 Jmp103 - Jumpstart Your "Jedi Plug-in Development Skills" wi...
Lotusphere 2011  Jmp103 - Jumpstart Your "Jedi Plug-in Development Skills" wi...Lotusphere 2011  Jmp103 - Jumpstart Your "Jedi Plug-in Development Skills" wi...
Lotusphere 2011 Jmp103 - Jumpstart Your "Jedi Plug-in Development Skills" wi...
Ryan Baxter
 
Chapter 01.PPT
Chapter 01.PPTChapter 01.PPT
Chapter 01.PPT
JoeBlack136
 
Using Show Commands to Investigate Network Status Lab Grading Ru.docx
Using Show Commands to Investigate Network Status Lab Grading Ru.docxUsing Show Commands to Investigate Network Status Lab Grading Ru.docx
Using Show Commands to Investigate Network Status Lab Grading Ru.docx
dickonsondorris
 
07 intel v_tune_session_10
07 intel v_tune_session_1007 intel v_tune_session_10
07 intel v_tune_session_10
Niit Care
 
Unit 2
Unit 2Unit 2
Unit 2
rohassanie
 
IT for beginners
IT for beginnersIT for beginners
IT for beginners
GiulianoVesci
 
Slide 01
Slide 01Slide 01
Slide 01
Dash Chan
 
Ict - Programming
Ict - ProgrammingIct - Programming
Ict - Programming
aleeya91
 

Similar to 01 iec t1_s1_plt_session_01 (20)

05 intel v_tune_session_07
05 intel v_tune_session_0705 intel v_tune_session_07
05 intel v_tune_session_07
 
02 intel v_tune_session_02
02 intel v_tune_session_0202 intel v_tune_session_02
02 intel v_tune_session_02
 
Plug yourself in and your app will never be the same (2 hour edition)
Plug yourself in and your app will never be the same (2 hour edition)Plug yourself in and your app will never be the same (2 hour edition)
Plug yourself in and your app will never be the same (2 hour edition)
 
Plug yourself in and your app will never be the same (2 hr editon)
Plug yourself in and your app will never be the same (2 hr editon)Plug yourself in and your app will never be the same (2 hr editon)
Plug yourself in and your app will never be the same (2 hr editon)
 
Windows service best practice
Windows service best practiceWindows service best practice
Windows service best practice
 
CHAPTER 1
CHAPTER 1CHAPTER 1
CHAPTER 1
 
CPCS202_01_Introduction.pptx
CPCS202_01_Introduction.pptxCPCS202_01_Introduction.pptx
CPCS202_01_Introduction.pptx
 
Plug yourself in and your app will never be the same (1 hr edition)
Plug yourself in and your app will never be the same (1 hr edition)Plug yourself in and your app will never be the same (1 hr edition)
Plug yourself in and your app will never be the same (1 hr edition)
 
09 intel v_tune_session_13
09 intel v_tune_session_1309 intel v_tune_session_13
09 intel v_tune_session_13
 
10 gui 14
10 gui 1410 gui 14
10 gui 14
 
06 intel v_tune_session_08
06 intel v_tune_session_0806 intel v_tune_session_08
06 intel v_tune_session_08
 
Chapter 1 — Introduction to Visual Basic 2010 Programming
Chapter 1 — Introduction to Visual Basic 2010 Programming Chapter 1 — Introduction to Visual Basic 2010 Programming
Chapter 1 — Introduction to Visual Basic 2010 Programming
 
Lotusphere 2011 Jmp103 - Jumpstart Your "Jedi Plug-in Development Skills" wi...
Lotusphere 2011  Jmp103 - Jumpstart Your "Jedi Plug-in Development Skills" wi...Lotusphere 2011  Jmp103 - Jumpstart Your "Jedi Plug-in Development Skills" wi...
Lotusphere 2011 Jmp103 - Jumpstart Your "Jedi Plug-in Development Skills" wi...
 
Chapter 01.PPT
Chapter 01.PPTChapter 01.PPT
Chapter 01.PPT
 
Using Show Commands to Investigate Network Status Lab Grading Ru.docx
Using Show Commands to Investigate Network Status Lab Grading Ru.docxUsing Show Commands to Investigate Network Status Lab Grading Ru.docx
Using Show Commands to Investigate Network Status Lab Grading Ru.docx
 
07 intel v_tune_session_10
07 intel v_tune_session_1007 intel v_tune_session_10
07 intel v_tune_session_10
 
Unit 2
Unit 2Unit 2
Unit 2
 
IT for beginners
IT for beginnersIT for beginners
IT for beginners
 
Slide 01
Slide 01Slide 01
Slide 01
 
Ict - Programming
Ict - ProgrammingIct - Programming
Ict - Programming
 

More from Niit Care

Ajs 1 b
Ajs 1 bAjs 1 b
Ajs 1 b
Niit Care
 
Ajs 4 b
Ajs 4 bAjs 4 b
Ajs 4 b
Niit Care
 
Ajs 4 a
Ajs 4 aAjs 4 a
Ajs 4 a
Niit Care
 
Ajs 4 c
Ajs 4 cAjs 4 c
Ajs 4 c
Niit Care
 
Ajs 3 b
Ajs 3 bAjs 3 b
Ajs 3 b
Niit Care
 
Ajs 3 a
Ajs 3 aAjs 3 a
Ajs 3 a
Niit Care
 
Ajs 3 c
Ajs 3 cAjs 3 c
Ajs 3 c
Niit Care
 
Ajs 2 b
Ajs 2 bAjs 2 b
Ajs 2 b
Niit Care
 
Ajs 2 a
Ajs 2 aAjs 2 a
Ajs 2 a
Niit Care
 
Ajs 2 c
Ajs 2 cAjs 2 c
Ajs 2 c
Niit Care
 
Ajs 1 a
Ajs 1 aAjs 1 a
Ajs 1 a
Niit Care
 
Ajs 1 c
Ajs 1 cAjs 1 c
Ajs 1 c
Niit Care
 
Dacj 4 2-c
Dacj 4 2-cDacj 4 2-c
Dacj 4 2-c
Niit Care
 
Dacj 4 2-b
Dacj 4 2-bDacj 4 2-b
Dacj 4 2-b
Niit Care
 
Dacj 4 2-a
Dacj 4 2-aDacj 4 2-a
Dacj 4 2-a
Niit Care
 
Dacj 4 1-c
Dacj 4 1-cDacj 4 1-c
Dacj 4 1-c
Niit Care
 
Dacj 4 1-b
Dacj 4 1-bDacj 4 1-b
Dacj 4 1-b
Niit Care
 
Dacj 4 1-a
Dacj 4 1-aDacj 4 1-a
Dacj 4 1-a
Niit Care
 
Dacj 1-2 b
Dacj 1-2 bDacj 1-2 b
Dacj 1-2 b
Niit Care
 
Dacj 1-3 c
Dacj 1-3 cDacj 1-3 c
Dacj 1-3 c
Niit Care
 

More from Niit Care (20)

Ajs 1 b
Ajs 1 bAjs 1 b
Ajs 1 b
 
Ajs 4 b
Ajs 4 bAjs 4 b
Ajs 4 b
 
Ajs 4 a
Ajs 4 aAjs 4 a
Ajs 4 a
 
Ajs 4 c
Ajs 4 cAjs 4 c
Ajs 4 c
 
Ajs 3 b
Ajs 3 bAjs 3 b
Ajs 3 b
 
Ajs 3 a
Ajs 3 aAjs 3 a
Ajs 3 a
 
Ajs 3 c
Ajs 3 cAjs 3 c
Ajs 3 c
 
Ajs 2 b
Ajs 2 bAjs 2 b
Ajs 2 b
 
Ajs 2 a
Ajs 2 aAjs 2 a
Ajs 2 a
 
Ajs 2 c
Ajs 2 cAjs 2 c
Ajs 2 c
 
Ajs 1 a
Ajs 1 aAjs 1 a
Ajs 1 a
 
Ajs 1 c
Ajs 1 cAjs 1 c
Ajs 1 c
 
Dacj 4 2-c
Dacj 4 2-cDacj 4 2-c
Dacj 4 2-c
 
Dacj 4 2-b
Dacj 4 2-bDacj 4 2-b
Dacj 4 2-b
 
Dacj 4 2-a
Dacj 4 2-aDacj 4 2-a
Dacj 4 2-a
 
Dacj 4 1-c
Dacj 4 1-cDacj 4 1-c
Dacj 4 1-c
 
Dacj 4 1-b
Dacj 4 1-bDacj 4 1-b
Dacj 4 1-b
 
Dacj 4 1-a
Dacj 4 1-aDacj 4 1-a
Dacj 4 1-a
 
Dacj 1-2 b
Dacj 1-2 bDacj 1-2 b
Dacj 1-2 b
 
Dacj 1-3 c
Dacj 1-3 cDacj 1-3 c
Dacj 1-3 c
 

Recently uploaded

20240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 202420240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 2024
Matthew Sinclair
 
Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
Kari Kakkonen
 
Video Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the FutureVideo Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the Future
Alpen-Adria-Universität
 
June Patch Tuesday
June Patch TuesdayJune Patch Tuesday
June Patch Tuesday
Ivanti
 
Mind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AIMind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AI
Kumud Singh
 
Generating privacy-protected synthetic data using Secludy and Milvus
Generating privacy-protected synthetic data using Secludy and MilvusGenerating privacy-protected synthetic data using Secludy and Milvus
Generating privacy-protected synthetic data using Secludy and Milvus
Zilliz
 
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
Edge AI and Vision Alliance
 
National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
Quotidiano Piemontese
 
Mariano G Tinti - Decoding SpaceX
Mariano G Tinti - Decoding SpaceXMariano G Tinti - Decoding SpaceX
Mariano G Tinti - Decoding SpaceX
Mariano Tinti
 
OpenID AuthZEN Interop Read Out - Authorization
OpenID AuthZEN Interop Read Out - AuthorizationOpenID AuthZEN Interop Read Out - Authorization
OpenID AuthZEN Interop Read Out - Authorization
David Brossard
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Tosin Akinosho
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
Safe Software
 
TrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy SurveyTrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy Survey
TrustArc
 
CAKE: Sharing Slices of Confidential Data on Blockchain
CAKE: Sharing Slices of Confidential Data on BlockchainCAKE: Sharing Slices of Confidential Data on Blockchain
CAKE: Sharing Slices of Confidential Data on Blockchain
Claudio Di Ciccio
 
AI-Powered Food Delivery Transforming App Development in Saudi Arabia.pdf
AI-Powered Food Delivery Transforming App Development in Saudi Arabia.pdfAI-Powered Food Delivery Transforming App Development in Saudi Arabia.pdf
AI-Powered Food Delivery Transforming App Development in Saudi Arabia.pdf
Techgropse Pvt.Ltd.
 
Taking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdfTaking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdf
ssuserfac0301
 
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAUHCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
panagenda
 
Serial Arm Control in Real Time Presentation
Serial Arm Control in Real Time PresentationSerial Arm Control in Real Time Presentation
Serial Arm Control in Real Time Presentation
tolgahangng
 
GenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizationsGenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizations
kumardaparthi1024
 
HCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAUHCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAU
panagenda
 

Recently uploaded (20)

20240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 202420240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 2024
 
Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
 
Video Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the FutureVideo Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the Future
 
June Patch Tuesday
June Patch TuesdayJune Patch Tuesday
June Patch Tuesday
 
Mind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AIMind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AI
 
Generating privacy-protected synthetic data using Secludy and Milvus
Generating privacy-protected synthetic data using Secludy and MilvusGenerating privacy-protected synthetic data using Secludy and Milvus
Generating privacy-protected synthetic data using Secludy and Milvus
 
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
 
National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
 
Mariano G Tinti - Decoding SpaceX
Mariano G Tinti - Decoding SpaceXMariano G Tinti - Decoding SpaceX
Mariano G Tinti - Decoding SpaceX
 
OpenID AuthZEN Interop Read Out - Authorization
OpenID AuthZEN Interop Read Out - AuthorizationOpenID AuthZEN Interop Read Out - Authorization
OpenID AuthZEN Interop Read Out - Authorization
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
 
TrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy SurveyTrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy Survey
 
CAKE: Sharing Slices of Confidential Data on Blockchain
CAKE: Sharing Slices of Confidential Data on BlockchainCAKE: Sharing Slices of Confidential Data on Blockchain
CAKE: Sharing Slices of Confidential Data on Blockchain
 
AI-Powered Food Delivery Transforming App Development in Saudi Arabia.pdf
AI-Powered Food Delivery Transforming App Development in Saudi Arabia.pdfAI-Powered Food Delivery Transforming App Development in Saudi Arabia.pdf
AI-Powered Food Delivery Transforming App Development in Saudi Arabia.pdf
 
Taking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdfTaking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdf
 
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAUHCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
 
Serial Arm Control in Real Time Presentation
Serial Arm Control in Real Time PresentationSerial Arm Control in Real Time Presentation
Serial Arm Control in Real Time Presentation
 
GenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizationsGenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizations
 
HCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAUHCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAU
 

01 iec t1_s1_plt_session_01

  • 1. Installing WindowsLogic and Techniques Programming XP Professional Using Attended Installation Rationale The Programming Logic and Techniques (PLT) module is positioned as the entry point into this curriculum. Since this curriculum is designed to cater to aspiring software professionals, a strong foundation in programming approaches and application of logic was found essential and was recommended by the industry. In the OOPs using C# module the students will be required to write programs involving the use of programming constructs. The PLT module, apart from teaching problem solving technique like flowcharting, will also prepare the students for the OOPs using C# module by developing the student’s ability to study, solve and represent the logic of the problems. Ver. 1.0 Session 1 Slide 1 of 20
  • 2. Installing WindowsLogic and Techniques Programming XP Professional Using Attended Installation Objectives In this session, you will learn to: Identify input, process, and output Describe programs Problem-solving techniques Ver. 1.0 Session 1 Slide 2 of 20
  • 3. Installing WindowsLogic and Techniques Programming XP Professional Using Attended Installation Phases Activities can be broken into separate phases: The first phase is called the input phase. The second phase is called the process phase. The last phase is called the output phase. Ver. 1.0 Session 1 Slide 3 of 20
  • 4. Installing WindowsLogic and Techniques Programming XP Professional Using Attended Installation Input-Process-Output Cycle The cycle of activities performed by a computer is referred to as the Input-Process-Output cycle or the I-P-O cycle. A computer consists of several components. Each component participates in either one of the input, process, or output phases. Ver. 1.0 Session 1 Slide 4 of 20
  • 5. Installing WindowsLogic and Techniques Programming XP Professional Using Attended Installation Programs A computer is designed to accept input, process it, and generate output. A set of instructions to perform a task is called a program. A number of programs together form an application. Ver. 1.0 Session 1 Slide 5 of 20
  • 6. Installing WindowsLogic and Techniques Programming XP Professional Using Attended Installation Flowcharts A flowchart is a graphical representation of the steps to be followed for solving a problem. It consists of a set of symbols. Each symbol represents a specific activity. Ver. 1.0 Session 1 Slide 6 of 20
  • 7. Installing WindowsLogic and Techniques Programming XP Professional Using Attended Installation Symbols Used in Flowcharts Symbol Activity Input Processing Output Decision Subroutine Ver. 1.0 Session 1 Slide 7 of 20
  • 8. Installing WindowsLogic and Techniques Programming XP Professional Using Attended Installation Symbols Used in Flowcharts (Contd.) Symbol Activity Flow lines Terminator On page connector Off page connector Annotation Ver. 1.0 Session 1 Slide 8 of 20
  • 9. Installing WindowsLogic and Techniques Programming XP Professional Using Attended Installation Just a minute Match the following verbs with appropriate symbols. Get, Write, Stop, Add, Start, Multiply, Read, Subtract, Divide, Display, Input, Output, If S. No. Symbol Activity 1. 2. 3. start 4. 5. Ver. 1.0 Session 1 Slide 9 of 20
  • 10. Installing WindowsLogic and Techniques Programming XP Professional Using Attended Installation Just a minute (Contd.) Answer: 1. If 2. Add, Multiply, Subtract, Divide 3. Get, Read, Input 4. Start, Stop 5. Write, Display, Output Ver. 1.0 Session 1 Slide 10 of 20
  • 11. Installing WindowsLogic and Techniques Programming XP Professional Using Attended Installation Drawing Simple Flowcharts Example: Flowchart for preparing tea Start The Steps for Preparing tea Input Water, Sugar, Tea Leaves, and Milk Boil the Ingredients Tea is Prepared Stop Ver. 1.0 Session 1 Slide 11 of 20
  • 12. Installing WindowsLogic and Techniques Programming XP Professional Using Attended Installation Drawing Simple Flowcharts (Contd.) Example: Flowchart for manipulating numbers Start Get a Number Add 1 to the Number Display the Number Stop Ver. 1.0 Session 1 Slide 12 of 20
  • 13. Installing WindowsLogic and Techniques Programming XP Professional Using Attended Installation Drawing Simple Flowcharts (Contd.) Example: The value of sale made is calculated as the number of units sold multiplied by the price per unit. Draw a flowchart to calculate and print the sale value. Ver. 1.0 Session 1 Slide 13 of 20
  • 14. Installing WindowsLogic and Techniques Programming XP Professional Using Attended Installation Drawing Simple Flowcharts (Contd.) Example (Contd.): Start Input Units Sold Input Unit Price Multiply Units Sold By Unit Price Print Total Sale Value Stop Ver. 1.0 Session 1 Slide 14 of 20
  • 15. Installing WindowsLogic and Techniques Programming XP Professional Using Attended Installation Exercises Ver. 1.0 Session 1 Slide 15 of 20
  • 16. Installing WindowsLogic and Techniques Programming XP Professional Using Attended Installation Exercise 1 Draw a flowchart to represent the procedure of admission of a student to NIIT. Ver. 1.0 Session 1 Slide 16 of 20
  • 17. Installing WindowsLogic and Techniques Programming XP Professional Using Attended Installation Exercise 2 Rearrange the following steps in the order of correct sequence to add two numbers and draw a flowchart for the same: 1. Get the First Number 2. Display the Result 3. Stop 4. Add the Two Numbers 5. Get the Second Number 6. Start Ver. 1.0 Session 1 Slide 17 of 20
  • 18. Installing WindowsLogic and Techniques Programming XP Professional Using Attended Installation Exercise 3 Draw a flowchart to accept five numbers and display the sum of the numbers. Ver. 1.0 Session 1 Slide 18 of 20
  • 19. Installing WindowsLogic and Techniques Programming XP Professional Using Attended Installation Exercise 4 Draw a flowchart to input any number, multiply it by 2, and display the result. Ver. 1.0 Session 1 Slide 19 of 20
  • 20. Installing WindowsLogic and Techniques Programming XP Professional Using Attended Installation Summary In this session, you learned that: The cycle of activities performed by a computer follows the Input-Process-Output cycle. A set of instructions to perform a particular job is called a program. A flowchart is a graphical representation of the steps to be followed for solving a problem. A flowchart consists of a set of symbols, where each symbol represents a specific activity. Ver. 1.0 Session 1 Slide 20 of 20