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

Más contenido relacionado

La actualidad más candente (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 a 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 a 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
 

Más de 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
 

Más de 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
 

Último

Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdfSandro Moreira
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
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...apidays
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelDeepika Singh
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Victor Rentea
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Bhuvaneswari Subramani
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfOrbitshub
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...apidays
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontologyjohnbeverley2021
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native ApplicationsWSO2
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
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 challengesrafiqahmad00786416
 

Último (20)

Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
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...
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
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
 

Decision making and looping - c programming by YEASIN NEWAJ