SlideShare a Scribd company logo
1 of 62
C PROGRAMMING
Mohammad Yeasin Newaj Khan
BSc. In EEE
CANADIAN UNIVERSITY OF BANGLADESH
CREATOR
TOPIC: DECISION MAKING
& LOOPING
CONTENTS
Relational
Expression
If, If/Else
Statement
Looping
Statement
Switch
Statement
DECISION MAKING
WHAT US DECISION MAKING?
Decision making structures require that the
programmer specifies one or more
conditions to be evaluated or tested by the
program, along with a statement or
statements to be executed if the condition is
determined to be true, and optionally, other
statements to be executed if the condition is
determined to be false.
The diagram in the right is the general form
of a typical decision making structure found
in most of the programming languages.
REAL LIFE EXAMPLE OF DECISION MAKING
RELATIONAL STATEMENTS
01
● Relational Statements are the statements that compares the
values of two arithmetic expressions and produces a result of
either True or False.
● General syntax left_operand relational_operator
right_operand
● Operand can be variables, or any arithmetic expression.
● Example:
i < 5,
i + j > 3 * k
WHAT IS RELATIONAL STATEMENT?
TABLE OF RELATIONAL OPERATOR AND IT’S MEANING
IF, IF/ELSE STATEMENT
02
WHAT IS IF, IF/ELSE STATEMENT?
An if statement is a programming conditional statement that, if proved true,
performs a function or displays information.
Below is a general example of an if statement, not specific to any
particular programming language.
In the example above, if the value of X were equal to any number less than
10, the program displays, "Hello John" when the script is run.
TYPES OF IF, IF/ELSE STATEMENT
1.SIMPLE IF STATEMENT
WHAT IS SIMPLE IF STATEMENT?
A Simple if statement consists of a Boolean
expression followed by one or more statements.
EXECUTION OF SIMPLE IF STATEMENT
if(expression)
{
statement inside;
}
statement outside;
The general form of a simple if statement is,
If the expression returns true,
then the statement-inside will be executed,
otherwise statement-inside is skipped and only
the statement-outside is executed.
EXAMPLE OF SIMPLE IF STATEMENT
OUTPUT:
x is greater than y
2.IF…ELSE
STATEMENT
DEFINITION
An if statement can be followed by an
optional else statement, which executes when
the Boolean expression is false.
EXECUTION OF SIMPLE IF STATEMENT
If the expression is true, the statement-block1 is
executed, else statement-block1 is skipped
and statement-block2 is executed.
The general form of a simple if...else statement is,
EXAMPLE OF SIMPLE IF STATEMENT
OUTPUT:
y is greater than x
3.NESTED IF…ELSE
STATEMENT
WHAT IS NESTED IF… ELSE STATEMENT?
When one if or else if statement is used inside
another if or else if statement(s) then it is called
nested if...else statement
EXECUTION OF NESTED IF…ELSE STATEMENT
The general form of a nested if...else statement is,
if expression is false then statement-block3 will be executed,
otherwise the execution continues and enters inside the
first if to perform the check for the next if block, where
if expression 1 is true the statement-block1 is executed
otherwise statement-block2 is executed.
EXAMPLE OF SIMPLE IF STATEMENT
4.ELSE IF LADDER
WHAT IS ELSE IF LADDER?
Else If ladder occurs like If any true statement is
found, the statement associate with it is
executed
EXECUTION OF ELSE IF LADDER STATEMENT
The general form of else-if ladder is,
The expression is tested from the top(of the ladder)
downwards. As soon as a true condition is found,
the statement associated with it is executed.
EXAMPLE OF ELSE IF LADDER STATEMENT
LOOPING STATEMENT
03
WHAT IS LOOPING STATEMENT?
You may encounter situations, when a block of code
needs to be executed several number of times. In
general, statements are executed sequentially: The
first statement in a function is executed first,
followed by the second, and so on.
Programming languages provide various control
structures that allow for more complicated execution
paths.
A loop statement allows us to execute a statement or
group of statements multiple times.
The Given right diagram is the general form of a loop
statement in most of the programming languages.
DEFITION & TYPES
It is more like a while
statement, except that it
tests the condition at
the end of the loop
body.
For Loop
Executes a sequence of
statements multiple times and
abbreviates the code that
manages the loop variable.
Repeats a statement or group of
statements while a given
condition is true. It tests the
condition before executing the
loop body.
While Loop Do While Loop
DEFITION & TYPES
When one or more
loops inside any other
while, for, or do..while
loop is used
Nested Loop
1.FOR LOOP
WHAT IS FOR LOOP?
FLOW DIAGRAM OF FOR LOOP
EXAMPLE OF FOR LOOP
Programming codes Output
1.WHILE LOOP
WHAT IS WHILE LOOP?
FLOW DIAGRAM OF WHILE LOOP
EXAMPLE
Programming codes Output
3.DO…WHILE LOOP
WHAT IS DO…WHILE LOOP?
FLOW DIAGRAM OF DO…WHILE LOOP
EXAMPLE OF DO WHILE LOPP
Programming codes Output
4.NESTED LOOP
NESTED LOOP - FOR
NESTED LOOP - WHILE
NESTED LOOP – DO WHILE
EXAMPLE OF NESTED LOOP
Programming codes Output
SWITCH STATEMENTS
04
SWITCH STATEMENT
WHAT IS SWITCH STATEMENT?
RULES OF SWITCH STATEMENT
FLOW DIAGRAM OF SWITCH STATEMENT
EXAMPLE OF SWITCH STATEMENT
OUTPUT OF SWITCH STATEMENT EXAMAPLE
NESTED SWITCH
STATEMENT
WHAT IS NESTED SWITCH STATEMENT?
EXAMPLE OF NESTED SWITCH STATEMENT
Programming codes
Output
RESOURCES
https://www.tutorialspoint.com
https://www.studytonight.com
https://www.msdotnet.co.in/
THANK YOU

More Related Content

What's hot (19)

Flow of Control
Flow of ControlFlow of Control
Flow of Control
 
Decisions
DecisionsDecisions
Decisions
 
OCA JAVA - 2 Programming with Java Statements
 OCA JAVA - 2 Programming with Java Statements OCA JAVA - 2 Programming with Java Statements
OCA JAVA - 2 Programming with Java Statements
 
Presentation of control statement
Presentation of control statement  Presentation of control statement
Presentation of control statement
 
Vb decision making statements
Vb decision making statementsVb decision making statements
Vb decision making statements
 
Switch case in C++
Switch case in C++Switch case in C++
Switch case in C++
 
Control Statement programming
Control Statement programmingControl Statement programming
Control Statement programming
 
Selection Statements in C Programming
Selection Statements in C ProgrammingSelection Statements in C Programming
Selection Statements in C Programming
 
Control statement
Control statementControl statement
Control statement
 
Control Structure in C
Control Structure in CControl Structure in C
Control Structure in C
 
C++ STATEMENTS
C++ STATEMENTS C++ STATEMENTS
C++ STATEMENTS
 
C Constructs (C Statements & Loop)
C Constructs (C Statements & Loop)C Constructs (C Statements & Loop)
C Constructs (C Statements & Loop)
 
C statements
C statementsC statements
C statements
 
Joji ilagan career center foundation6final
Joji ilagan career center foundation6finalJoji ilagan career center foundation6final
Joji ilagan career center foundation6final
 
Decision control and iterative statements
Decision control and iterative statementsDecision control and iterative statements
Decision control and iterative statements
 
Calc 1.4a
Calc 1.4aCalc 1.4a
Calc 1.4a
 
Nondeterministic finite automaton
Nondeterministic finite automatonNondeterministic finite automaton
Nondeterministic finite automaton
 
Control structures in c
Control structures in cControl structures in c
Control structures in c
 
Functional dependency
Functional dependencyFunctional dependency
Functional dependency
 

Similar to Decision making and looping - c programming by YEASIN NEWAJ

Flow of control by deepak lakhlan
Flow of control by deepak lakhlanFlow of control by deepak lakhlan
Flow of control by deepak lakhlanDeepak Lakhlan
 
Cse lecture-6-c control statement
Cse lecture-6-c control statementCse lecture-6-c control statement
Cse lecture-6-c control statementFarshidKhan
 
Do While Repetition Structure
Do While Repetition StructureDo While Repetition Structure
Do While Repetition StructureShahzu2
 
Chapter 4(1)
Chapter 4(1)Chapter 4(1)
Chapter 4(1)TejaswiB4
 
Flow of control C ++ By TANUJ
Flow of control C ++ By TANUJFlow of control C ++ By TANUJ
Flow of control C ++ By TANUJTANUJ ⠀
 
BSc. III Unit iii VB.NET
BSc. III Unit iii VB.NETBSc. III Unit iii VB.NET
BSc. III Unit iii VB.NETUjwala Junghare
 
Decision Making Statement in C ppt
Decision Making Statement in C pptDecision Making Statement in C ppt
Decision Making Statement in C pptMANJUTRIPATHI7
 
Decision Making and Branching in C
Decision Making and Branching  in CDecision Making and Branching  in C
Decision Making and Branching in CRAJ KUMAR
 
itft-Decision making and branching in java
itft-Decision making and branching in javaitft-Decision making and branching in java
itft-Decision making and branching in javaAtul Sehdev
 
Chapter05-Control Structures.pptx
Chapter05-Control Structures.pptxChapter05-Control Structures.pptx
Chapter05-Control Structures.pptxAdrianVANTOPINA
 
Learn C# Programming - Decision Making & Loops
Learn C# Programming - Decision Making & LoopsLearn C# Programming - Decision Making & Loops
Learn C# Programming - Decision Making & LoopsEng Teong Cheah
 

Similar to Decision making and looping - c programming by YEASIN NEWAJ (20)

Flow of control by deepak lakhlan
Flow of control by deepak lakhlanFlow of control by deepak lakhlan
Flow of control by deepak lakhlan
 
Cse lecture-6-c control statement
Cse lecture-6-c control statementCse lecture-6-c control statement
Cse lecture-6-c control statement
 
Do While Repetition Structure
Do While Repetition StructureDo While Repetition Structure
Do While Repetition Structure
 
Chapter 4(1)
Chapter 4(1)Chapter 4(1)
Chapter 4(1)
 
python.pptx
python.pptxpython.pptx
python.pptx
 
Flow of control C ++ By TANUJ
Flow of control C ++ By TANUJFlow of control C ++ By TANUJ
Flow of control C ++ By TANUJ
 
Computer programming 2 Lesson 9
Computer programming 2  Lesson 9Computer programming 2  Lesson 9
Computer programming 2 Lesson 9
 
Computer programming 2 - Lesson 7
Computer programming 2 - Lesson 7Computer programming 2 - Lesson 7
Computer programming 2 - Lesson 7
 
Decision making and branching
Decision making and branchingDecision making and branching
Decision making and branching
 
BSc. III Unit iii VB.NET
BSc. III Unit iii VB.NETBSc. III Unit iii VB.NET
BSc. III Unit iii VB.NET
 
Decision Making Statement in C ppt
Decision Making Statement in C pptDecision Making Statement in C ppt
Decision Making Statement in C ppt
 
Fundamentals of Programming Chapter 6
Fundamentals of Programming Chapter 6Fundamentals of Programming Chapter 6
Fundamentals of Programming Chapter 6
 
Python decision making
Python   decision makingPython   decision making
Python decision making
 
Comp ppt (1)
Comp ppt (1)Comp ppt (1)
Comp ppt (1)
 
Control statements in java
Control statements in javaControl statements in java
Control statements in java
 
C language 2
C language 2C language 2
C language 2
 
Decision Making and Branching in C
Decision Making and Branching  in CDecision Making and Branching  in C
Decision Making and Branching in C
 
itft-Decision making and branching in java
itft-Decision making and branching in javaitft-Decision making and branching in java
itft-Decision making and branching in java
 
Chapter05-Control Structures.pptx
Chapter05-Control Structures.pptxChapter05-Control Structures.pptx
Chapter05-Control Structures.pptx
 
Learn C# Programming - Decision Making & Loops
Learn C# Programming - Decision Making & LoopsLearn C# Programming - Decision Making & Loops
Learn C# Programming - Decision Making & Loops
 

More from YeasinNewaj

Smith Chart by YEASIN NEWAJ
Smith Chart by YEASIN NEWAJ Smith Chart by YEASIN NEWAJ
Smith Chart by YEASIN NEWAJ YeasinNewaj
 
Transmission Line by YEASIN NEWAJ
Transmission Line by YEASIN NEWAJTransmission Line by YEASIN NEWAJ
Transmission Line by YEASIN NEWAJYeasinNewaj
 
Microwave Engineering by YEASIN NEWAJ
Microwave Engineering by YEASIN NEWAJMicrowave Engineering by YEASIN NEWAJ
Microwave Engineering by YEASIN NEWAJYeasinNewaj
 
Impedance Matching by YEASIN NEWAJ
Impedance Matching by YEASIN NEWAJ Impedance Matching by YEASIN NEWAJ
Impedance Matching by YEASIN NEWAJ YeasinNewaj
 
Antenna and It's Parameters by YEASIN NEWAJ
Antenna and It's Parameters by YEASIN NEWAJ Antenna and It's Parameters by YEASIN NEWAJ
Antenna and It's Parameters by YEASIN NEWAJ YeasinNewaj
 
Digital signal processing by YEASIN NEWAJ
Digital signal processing by YEASIN NEWAJDigital signal processing by YEASIN NEWAJ
Digital signal processing by YEASIN NEWAJYeasinNewaj
 
Diode - All you need to know
Diode - All you need to knowDiode - All you need to know
Diode - All you need to knowYeasinNewaj
 
Common emitter amplifier by YEASIN NEWAJ
Common emitter amplifier by YEASIN NEWAJCommon emitter amplifier by YEASIN NEWAJ
Common emitter amplifier by YEASIN NEWAJYeasinNewaj
 
Gravitation - Physics
Gravitation - PhysicsGravitation - Physics
Gravitation - PhysicsYeasinNewaj
 

More from YeasinNewaj (11)

Smith Chart by YEASIN NEWAJ
Smith Chart by YEASIN NEWAJ Smith Chart by YEASIN NEWAJ
Smith Chart by YEASIN NEWAJ
 
Transmission Line by YEASIN NEWAJ
Transmission Line by YEASIN NEWAJTransmission Line by YEASIN NEWAJ
Transmission Line by YEASIN NEWAJ
 
Microwave Engineering by YEASIN NEWAJ
Microwave Engineering by YEASIN NEWAJMicrowave Engineering by YEASIN NEWAJ
Microwave Engineering by YEASIN NEWAJ
 
Impedance Matching by YEASIN NEWAJ
Impedance Matching by YEASIN NEWAJ Impedance Matching by YEASIN NEWAJ
Impedance Matching by YEASIN NEWAJ
 
Antenna and It's Parameters by YEASIN NEWAJ
Antenna and It's Parameters by YEASIN NEWAJ Antenna and It's Parameters by YEASIN NEWAJ
Antenna and It's Parameters by YEASIN NEWAJ
 
Digital signal processing by YEASIN NEWAJ
Digital signal processing by YEASIN NEWAJDigital signal processing by YEASIN NEWAJ
Digital signal processing by YEASIN NEWAJ
 
Diode - All you need to know
Diode - All you need to knowDiode - All you need to know
Diode - All you need to know
 
Common emitter amplifier by YEASIN NEWAJ
Common emitter amplifier by YEASIN NEWAJCommon emitter amplifier by YEASIN NEWAJ
Common emitter amplifier by YEASIN NEWAJ
 
Verilog
VerilogVerilog
Verilog
 
Electrostatics
ElectrostaticsElectrostatics
Electrostatics
 
Gravitation - Physics
Gravitation - PhysicsGravitation - Physics
Gravitation - Physics
 

Recently uploaded

A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
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 RobisonAnna Loughnan Colquhoun
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsRoshan Dwivedi
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 

Recently uploaded (20)

A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
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
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 

Decision making and looping - c programming by YEASIN NEWAJ