SlideShare a Scribd company logo
1 of 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

More Related Content

What's hot

Presentation on the topic selection sort
Presentation on the topic selection sortPresentation on the topic selection sort
Presentation on the topic selection sortDistrict Administration
 
Access lesson 04 Creating and Modifying Forms
Access lesson 04 Creating and Modifying FormsAccess lesson 04 Creating and Modifying Forms
Access lesson 04 Creating and Modifying FormsAram SE
 
Binary search tree in data structures
Binary search tree in  data structuresBinary search tree in  data structures
Binary search tree in data structureschauhankapil
 
Avl trees
Avl treesAvl trees
Avl treesppreeta
 
Binary Tree in Data Structure
Binary Tree in Data StructureBinary Tree in Data Structure
Binary Tree in Data StructureMeghaj Mallick
 
Data Structures : hashing (1)
Data Structures : hashing (1)Data Structures : hashing (1)
Data Structures : hashing (1)Home
 
Sorting Algorithms
Sorting AlgorithmsSorting Algorithms
Sorting Algorithmsmultimedia9
 
Access lesson 03 Creating Queries
Access lesson 03 Creating QueriesAccess lesson 03 Creating Queries
Access lesson 03 Creating QueriesAram SE
 
Database design & Normalization (1NF, 2NF, 3NF)
Database design & Normalization (1NF, 2NF, 3NF)Database design & Normalization (1NF, 2NF, 3NF)
Database design & Normalization (1NF, 2NF, 3NF)Jargalsaikhan Alyeksandr
 
relational algebra (joins)
relational algebra (joins)relational algebra (joins)
relational algebra (joins)Nilt1234
 

What's hot (16)

Heap sort
Heap sortHeap sort
Heap sort
 
Presentation on the topic selection sort
Presentation on the topic selection sortPresentation on the topic selection sort
Presentation on the topic selection sort
 
Sdi & mdi
Sdi & mdiSdi & mdi
Sdi & mdi
 
Set operators
Set  operatorsSet  operators
Set operators
 
Access lesson 04 Creating and Modifying Forms
Access lesson 04 Creating and Modifying FormsAccess lesson 04 Creating and Modifying Forms
Access lesson 04 Creating and Modifying Forms
 
Binary search tree in data structures
Binary search tree in  data structuresBinary search tree in  data structures
Binary search tree in data structures
 
Heaps
HeapsHeaps
Heaps
 
Avl trees
Avl treesAvl trees
Avl trees
 
Binary Tree in Data Structure
Binary Tree in Data StructureBinary Tree in Data Structure
Binary Tree in Data Structure
 
Data Structures : hashing (1)
Data Structures : hashing (1)Data Structures : hashing (1)
Data Structures : hashing (1)
 
Sorting Algorithms
Sorting AlgorithmsSorting Algorithms
Sorting Algorithms
 
Access lesson 03 Creating Queries
Access lesson 03 Creating QueriesAccess lesson 03 Creating Queries
Access lesson 03 Creating Queries
 
Database design & Normalization (1NF, 2NF, 3NF)
Database design & Normalization (1NF, 2NF, 3NF)Database design & Normalization (1NF, 2NF, 3NF)
Database design & Normalization (1NF, 2NF, 3NF)
 
Join
JoinJoin
Join
 
Balanced Tree (AVL Tree & Red-Black Tree)
Balanced Tree (AVL Tree & Red-Black Tree)Balanced Tree (AVL Tree & Red-Black Tree)
Balanced Tree (AVL Tree & Red-Black Tree)
 
relational algebra (joins)
relational algebra (joins)relational algebra (joins)
relational algebra (joins)
 

Viewers also liked

Sem1 plt xp_03
Sem1 plt xp_03Sem1 plt xp_03
Sem1 plt xp_03Niit 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_02Niit Care
 
Sem1 plt xp_02
Sem1 plt xp_02Sem1 plt xp_02
Sem1 plt xp_02Niit Care
 
Sem1 plt xp_01
Sem1 plt xp_01Sem1 plt xp_01
Sem1 plt xp_01Niit 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_02Niit Care
 
02 t1 s2_linux_lesson2
02 t1 s2_linux_lesson202 t1 s2_linux_lesson2
02 t1 s2_linux_lesson2Niit Care
 
Comp tia n+_session_08
Comp tia n+_session_08Comp tia n+_session_08
Comp tia n+_session_08Niit 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_01Niit Care
 
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 KhanMr.Allah Dad Khan
 
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 communicationwrigveda
 

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_07Niit Care
 
02 intel v_tune_session_02
02 intel v_tune_session_0202 intel v_tune_session_02
02 intel v_tune_session_02Niit Care
 
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
 
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
 
Windows service best practice
Windows service best practiceWindows service best practice
Windows service best practiceYu GUAN
 
CPCS202_01_Introduction.pptx
CPCS202_01_Introduction.pptxCPCS202_01_Introduction.pptx
CPCS202_01_Introduction.pptxbatol1998g
 
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_13Niit Care
 
06 intel v_tune_session_08
06 intel v_tune_session_0806 intel v_tune_session_08
06 intel v_tune_session_08Niit 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
 
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.docxdickonsondorris
 
07 intel v_tune_session_10
07 intel v_tune_session_1007 intel v_tune_session_10
07 intel v_tune_session_10Niit Care
 
Programming
ProgrammingProgramming
ProgrammingSyahida
 

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 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
 

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

Simplified FDO Manufacturing Flow with TPMs _ Liam at Infineon.pdf
Simplified FDO Manufacturing Flow with TPMs _ Liam at Infineon.pdfSimplified FDO Manufacturing Flow with TPMs _ Liam at Infineon.pdf
Simplified FDO Manufacturing Flow with TPMs _ Liam at Infineon.pdfFIDO Alliance
 
Top 10 CodeIgniter Development Companies
Top 10 CodeIgniter Development CompaniesTop 10 CodeIgniter Development Companies
Top 10 CodeIgniter Development CompaniesTopCSSGallery
 
WebAssembly is Key to Better LLM Performance
WebAssembly is Key to Better LLM PerformanceWebAssembly is Key to Better LLM Performance
WebAssembly is Key to Better LLM PerformanceSamy Fodil
 
Human Expert Website Manual WCAG 2.0 2.1 2.2 Audit - Digital Accessibility Au...
Human Expert Website Manual WCAG 2.0 2.1 2.2 Audit - Digital Accessibility Au...Human Expert Website Manual WCAG 2.0 2.1 2.2 Audit - Digital Accessibility Au...
Human Expert Website Manual WCAG 2.0 2.1 2.2 Audit - Digital Accessibility Au...Skynet Technologies
 
2024 May Patch Tuesday
2024 May Patch Tuesday2024 May Patch Tuesday
2024 May Patch TuesdayIvanti
 
Introduction to FDO and How It works Applications _ Richard at FIDO Alliance.pdf
Introduction to FDO and How It works Applications _ Richard at FIDO Alliance.pdfIntroduction to FDO and How It works Applications _ Richard at FIDO Alliance.pdf
Introduction to FDO and How It works Applications _ Richard at FIDO Alliance.pdfFIDO Alliance
 
TopCryptoSupers 12thReport OrionX May2024
TopCryptoSupers 12thReport OrionX May2024TopCryptoSupers 12thReport OrionX May2024
TopCryptoSupers 12thReport OrionX May2024Stephen Perrenod
 
Continuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on ThanabotsContinuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on ThanabotsLeah Henrickson
 
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...panagenda
 
AI mind or machine power point presentation
AI mind or machine power point presentationAI mind or machine power point presentation
AI mind or machine power point presentationyogeshlabana357357
 
The Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and InsightThe Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and InsightSafe Software
 
Using IESVE for Room Loads Analysis - UK & Ireland
Using IESVE for Room Loads Analysis - UK & IrelandUsing IESVE for Room Loads Analysis - UK & Ireland
Using IESVE for Room Loads Analysis - UK & IrelandIES VE
 
Intro in Product Management - Коротко про професію продакт менеджера
Intro in Product Management - Коротко про професію продакт менеджераIntro in Product Management - Коротко про професію продакт менеджера
Intro in Product Management - Коротко про професію продакт менеджераMark Opanasiuk
 
Design and Development of a Provenance Capture Platform for Data Science
Design and Development of a Provenance Capture Platform for Data ScienceDesign and Development of a Provenance Capture Platform for Data Science
Design and Development of a Provenance Capture Platform for Data SciencePaolo Missier
 
The Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdf
The Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdfThe Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdf
The Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdfFIDO Alliance
 
Design Guidelines for Passkeys 2024.pptx
Design Guidelines for Passkeys 2024.pptxDesign Guidelines for Passkeys 2024.pptx
Design Guidelines for Passkeys 2024.pptxFIDO Alliance
 
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...TrustArc
 
Working together SRE & Platform Engineering
Working together SRE & Platform EngineeringWorking together SRE & Platform Engineering
Working together SRE & Platform EngineeringMarcus Vechiato
 
Event-Driven Architecture Masterclass: Challenges in Stream Processing
Event-Driven Architecture Masterclass: Challenges in Stream ProcessingEvent-Driven Architecture Masterclass: Challenges in Stream Processing
Event-Driven Architecture Masterclass: Challenges in Stream ProcessingScyllaDB
 

Recently uploaded (20)

Simplified FDO Manufacturing Flow with TPMs _ Liam at Infineon.pdf
Simplified FDO Manufacturing Flow with TPMs _ Liam at Infineon.pdfSimplified FDO Manufacturing Flow with TPMs _ Liam at Infineon.pdf
Simplified FDO Manufacturing Flow with TPMs _ Liam at Infineon.pdf
 
Top 10 CodeIgniter Development Companies
Top 10 CodeIgniter Development CompaniesTop 10 CodeIgniter Development Companies
Top 10 CodeIgniter Development Companies
 
WebAssembly is Key to Better LLM Performance
WebAssembly is Key to Better LLM PerformanceWebAssembly is Key to Better LLM Performance
WebAssembly is Key to Better LLM Performance
 
Human Expert Website Manual WCAG 2.0 2.1 2.2 Audit - Digital Accessibility Au...
Human Expert Website Manual WCAG 2.0 2.1 2.2 Audit - Digital Accessibility Au...Human Expert Website Manual WCAG 2.0 2.1 2.2 Audit - Digital Accessibility Au...
Human Expert Website Manual WCAG 2.0 2.1 2.2 Audit - Digital Accessibility Au...
 
2024 May Patch Tuesday
2024 May Patch Tuesday2024 May Patch Tuesday
2024 May Patch Tuesday
 
Introduction to FDO and How It works Applications _ Richard at FIDO Alliance.pdf
Introduction to FDO and How It works Applications _ Richard at FIDO Alliance.pdfIntroduction to FDO and How It works Applications _ Richard at FIDO Alliance.pdf
Introduction to FDO and How It works Applications _ Richard at FIDO Alliance.pdf
 
TopCryptoSupers 12thReport OrionX May2024
TopCryptoSupers 12thReport OrionX May2024TopCryptoSupers 12thReport OrionX May2024
TopCryptoSupers 12thReport OrionX May2024
 
Continuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on ThanabotsContinuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
 
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
Easier, Faster, and More Powerful – Alles Neu macht der Mai -Wir durchleuchte...
 
AI mind or machine power point presentation
AI mind or machine power point presentationAI mind or machine power point presentation
AI mind or machine power point presentation
 
The Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and InsightThe Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and Insight
 
Using IESVE for Room Loads Analysis - UK & Ireland
Using IESVE for Room Loads Analysis - UK & IrelandUsing IESVE for Room Loads Analysis - UK & Ireland
Using IESVE for Room Loads Analysis - UK & Ireland
 
Intro in Product Management - Коротко про професію продакт менеджера
Intro in Product Management - Коротко про професію продакт менеджераIntro in Product Management - Коротко про професію продакт менеджера
Intro in Product Management - Коротко про професію продакт менеджера
 
Overview of Hyperledger Foundation
Overview of Hyperledger FoundationOverview of Hyperledger Foundation
Overview of Hyperledger Foundation
 
Design and Development of a Provenance Capture Platform for Data Science
Design and Development of a Provenance Capture Platform for Data ScienceDesign and Development of a Provenance Capture Platform for Data Science
Design and Development of a Provenance Capture Platform for Data Science
 
The Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdf
The Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdfThe Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdf
The Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdf
 
Design Guidelines for Passkeys 2024.pptx
Design Guidelines for Passkeys 2024.pptxDesign Guidelines for Passkeys 2024.pptx
Design Guidelines for Passkeys 2024.pptx
 
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
 
Working together SRE & Platform Engineering
Working together SRE & Platform EngineeringWorking together SRE & Platform Engineering
Working together SRE & Platform Engineering
 
Event-Driven Architecture Masterclass: Challenges in Stream Processing
Event-Driven Architecture Masterclass: Challenges in Stream ProcessingEvent-Driven Architecture Masterclass: Challenges in Stream Processing
Event-Driven Architecture Masterclass: Challenges in Stream Processing
 

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