SlideShare uma empresa Scribd logo
1 de 20
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

Mais conteúdo relacionado

Destaque

02 t1 s2_linux_lesson2
02 t1 s2_linux_lesson202 t1 s2_linux_lesson2
02 t1 s2_linux_lesson2
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
 
Information education communication
Information education communicationInformation education communication
Information education communication
Stephi Poulose
 
Information education and communication
Information education and communicationInformation education and communication
Information education and communication
Nursing Path
 
Computer Languages....ppt
Computer Languages....pptComputer Languages....ppt
Computer Languages....ppt
hashgeneration
 
Lect 1. introduction to programming languages
Lect 1. introduction to programming languagesLect 1. introduction to programming languages
Lect 1. introduction to programming languages
Varun Garg
 

Destaque (20)

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
 
Information education communication
Information education communicationInformation education communication
Information education communication
 
Information education and communication
Information education and communicationInformation education and communication
Information education and communication
 
Information education and communication (IEC)
Information education and communication (IEC)Information education and communication (IEC)
Information education and communication (IEC)
 
Ajs 1 b
Ajs 1 bAjs 1 b
Ajs 1 b
 
Computer Languages....ppt
Computer Languages....pptComputer Languages....ppt
Computer Languages....ppt
 
Lect 1. introduction to programming languages
Lect 1. introduction to programming languagesLect 1. introduction to programming languages
Lect 1. introduction to programming languages
 
Basics of C programming
Basics of C programmingBasics of C programming
Basics of C programming
 

Semelhante a 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
 
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
 
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
 
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
 
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
 
Programming
ProgrammingProgramming
Programming
Syahida
 

Semelhante a 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 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)
 
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)
 
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
 
Programming
ProgrammingProgramming
Programming
 

Mais de Niit Care (20)

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
 
Dacj 1-3 a
Dacj 1-3 aDacj 1-3 a
Dacj 1-3 a
 

Último

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Último (20)

AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 

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