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

PPTX
Searching & Algorithms IN DATA STRUCTURES
PPT
PDF
Lesson 02 python keywords and identifiers
PPT
pseudo code basics
PPTX
ESTRUCTURAS DE CONTROL
PDF
Recursion CBSE Class 12
PPTX
Python Programming Essentials - M24 - math module
DOCX
Looping statements
Searching & Algorithms IN DATA STRUCTURES
Lesson 02 python keywords and identifiers
pseudo code basics
ESTRUCTURAS DE CONTROL
Recursion CBSE Class 12
Python Programming Essentials - M24 - math module
Looping statements

What's hot (20)

PPT
Python
PPT
Sorting
PDF
Data types in python
PPTX
This pointer
PPTX
Python Flow Control
PPTX
Python for loop
PDF
DATA STRUCTURE AND ALGORITHM FULL NOTES
PPTX
Linear Search Presentation
PPT
If-else and switch-case
PPTX
Presentación "Tópicos de programación"
PPS
Procedures functions structures in VB.Net
PPTX
Data structures
PDF
Lexical Analysis - Compiler design
PPT
Input and output in C++
PDF
Python Sequence Data types in Brief
PPTX
Values and Data types in python
PDF
Multiple Inheritance
PPTX
Procedures and triggers in SQL
Python
Sorting
Data types in python
This pointer
Python Flow Control
Python for loop
DATA STRUCTURE AND ALGORITHM FULL NOTES
Linear Search Presentation
If-else and switch-case
Presentación "Tópicos de programación"
Procedures functions structures in VB.Net
Data structures
Lexical Analysis - Compiler design
Input and output in C++
Python Sequence Data types in Brief
Values and Data types in python
Multiple Inheritance
Procedures and triggers in SQL
Ad

Viewers also liked (20)

PPS
Sem1 plt xp_03
PPS
02 iec t1_s1_oo_ps_session_02
PPS
Sem1 plt xp_02
PPS
Sem1 plt xp_01
PPS
02 iec t1_s1_plt_session_02
PPS
Sql xp 09
PPS
Dacj 1-3 b
PPS
Sql xp 11
PPS
Sql xp 10
PPS
02 t1 s2_linux_lesson2
PPT
aamir presentation
PPS
Sql xp 01
PPS
Comp tia n+_session_08
PPS
01 iec t1_s1_oo_ps_session_01
PPTX
SQL | Computer Science
PPTX
7.information education and communication (iec) A Lecture By Mr.Allah dad Khan
PDF
MS-SQL SERVER ARCHITECTURE
PPTX
Sql server basics
PPTX
5 Rs of IEC (Information, Education and Communication)
PPT
Health education, information and communication
Sem1 plt xp_03
02 iec t1_s1_oo_ps_session_02
Sem1 plt xp_02
Sem1 plt xp_01
02 iec t1_s1_plt_session_02
Sql xp 09
Dacj 1-3 b
Sql xp 11
Sql xp 10
02 t1 s2_linux_lesson2
aamir presentation
Sql xp 01
Comp tia n+_session_08
01 iec t1_s1_oo_ps_session_01
SQL | Computer Science
7.information education and communication (iec) A Lecture By Mr.Allah dad Khan
MS-SQL SERVER ARCHITECTURE
Sql server basics
5 Rs of IEC (Information, Education and Communication)
Health education, information and communication
Ad

Similar to 01 iec t1_s1_plt_session_01 (20)

PPS
03 iec t1_s1_plt_session_03
PDF
Visual Basic 2008 In 24 Hrs
PDF
VZAgent_SOAP_Tutorial
PDF
VZAgent_SOAP_Tutorial
PDF
Firsthalf Ocr D
PDF
Ti1220 Lecture 1: Programming Linguistics
PPT
10262A_00
PPT
10262A_00
PPT
10262A_00
PPT
10262A_00
PPT
10262A_00
PPT
10262A_00
PPT
10262A_00
PPT
10262A_00
PPT
10262A_00
PPT
10262A_00
PDF
PPTX
Software Development Technique (Flowchart & Documentation).pptx
PDF
Emerasoft Day 2012 - Innowake migration
03 iec t1_s1_plt_session_03
Visual Basic 2008 In 24 Hrs
VZAgent_SOAP_Tutorial
VZAgent_SOAP_Tutorial
Firsthalf Ocr D
Ti1220 Lecture 1: Programming Linguistics
10262A_00
10262A_00
10262A_00
10262A_00
10262A_00
10262A_00
10262A_00
10262A_00
10262A_00
10262A_00
Software Development Technique (Flowchart & Documentation).pptx
Emerasoft Day 2012 - Innowake migration

More from Niit Care (20)

PPS
Ajs 1 b
PPS
Ajs 4 b
PPS
Ajs 4 a
PPS
Ajs 4 c
PPS
Ajs 3 b
PPS
Ajs 3 a
PPS
Ajs 3 c
PPS
Ajs 2 b
PPS
Ajs 2 a
PPS
Ajs 2 c
PPS
Ajs 1 a
PPS
Ajs 1 c
PPS
Dacj 4 2-c
PPS
Dacj 4 2-b
PPS
Dacj 4 2-a
PPS
Dacj 4 1-c
PPS
Dacj 4 1-b
PPS
Dacj 4 1-a
PPS
Dacj 1-2 b
PPS
Dacj 1-3 c
Ajs 1 b
Ajs 4 b
Ajs 4 a
Ajs 4 c
Ajs 3 b
Ajs 3 a
Ajs 3 c
Ajs 2 b
Ajs 2 a
Ajs 2 c
Ajs 1 a
Ajs 1 c
Dacj 4 2-c
Dacj 4 2-b
Dacj 4 2-a
Dacj 4 1-c
Dacj 4 1-b
Dacj 4 1-a
Dacj 1-2 b
Dacj 1-3 c

Recently uploaded (20)

PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Network Security Unit 5.pdf for BCA BBA.
PPTX
SOPHOS-XG Firewall Administrator PPT.pptx
PDF
Machine learning based COVID-19 study performance prediction
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PPTX
Machine Learning_overview_presentation.pptx
PPTX
cloud_computing_Infrastucture_as_cloud_p
PPT
Teaching material agriculture food technology
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PPTX
Tartificialntelligence_presentation.pptx
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
NewMind AI Weekly Chronicles - August'25-Week II
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Spectral efficient network and resource selection model in 5G networks
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Network Security Unit 5.pdf for BCA BBA.
SOPHOS-XG Firewall Administrator PPT.pptx
Machine learning based COVID-19 study performance prediction
Mobile App Security Testing_ A Comprehensive Guide.pdf
Machine Learning_overview_presentation.pptx
cloud_computing_Infrastucture_as_cloud_p
Teaching material agriculture food technology
Assigned Numbers - 2025 - Bluetooth® Document
Tartificialntelligence_presentation.pptx
MIND Revenue Release Quarter 2 2025 Press Release
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
Per capita expenditure prediction using model stacking based on satellite ima...
NewMind AI Weekly Chronicles - August'25-Week II
Diabetes mellitus diagnosis method based random forest with bat algorithm
Advanced methodologies resolving dimensionality complications for autism neur...
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Spectral efficient network and resource selection model in 5G networks

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