Logical conditions If ………………... Logical condition Is something which must either give a "true" or "false" answer / 2 possible results. For example is.

Slides:



Advertisements
Similar presentations
The Important Thing About By. The Important Thing About ******** The important thing about ***** is *****. It is true s/he can *****, *****, and *****.
Advertisements

Your performance improvement partner 2/25/
Copyright MATHS FACTS LENGTH 1cm = 10 mm 1m = 100cm 1km = 1000m Copyright
The following 5 questions are about VOLTAGE DIVIDERS. You have 20 seconds for each question What is the voltage at the point X ? A9v B5v C0v D10v Question.
Chapter 4 - Control Statements
T. Trimpe Challenge #3 Population Dynamics.
Logic Programming with Solution Preferences Hai-Feng Guo University of Nebraska at Omaha, USA.
Multiplying Decimals & Properties of Multiplication Christine Berg Edited By V T Hamilton.
Enter. The Scene Type text here Choice A1 Text for decisions Guidelines Guideline text Click on A, B or C A B C Choice B1 Choice C1 Click on A, B or C.
Add title Add a picture or a description. Question 1(True) Click to type your question here I have made this an easy True/false question true False Next.
Free Macro Download from i-present.co.uk by GMARK Ltd.i-present.co.ukGMARK my text Lorem for more information :
EXCEL 2007 Cell Referencing IF Function. CELL REFERENCING Three Types: –Relative –Absolute –Mixed.
The IF function Bernard Liengme. Objectives To know how to: Construct a condition using the comparison operators =, >=, >, ; Construct a formula using.
Base view of Joystick Cam cutting grid Customer details Base contacts Additional options Pot Overview of the VCS0 cam cutting sheet.
Title Slide Directions:. My Jeopardy Category 1 Category 2 Category 3 Category 4 Category Final Jeopardy.
C1C2 C3C4C5C6 C7 25 ft. 50 ft. 45 ft. 25 ft. Hose #1Hose #2Hose #3Hose #4Hose #5Hose #6 Hose #3 Designated Busted Hose Designated Drop Area of Spare Hose.
A Roadmap to Restoring Computing's Former Glory David I. August Princeton University (Not speaking for Parakinetics, Inc.)
Neal Stublen Human Decisions  Think about a decision you've made today?  How did you arrive at that decision?  Was it a black-and-white.
LECTURE 15 DESCARTES’ VERSION OF THE ONTOLOGICAL ARGUMENT.
Powerpoint Jeopardy Category 1Category 2Category 3Category 4Category
True/False. False True Subject May Go Here True / False ? Type correct answer here. Type incorrect answer here.
Determine whether each curve below is the graph of a function of x. Select all answers that are graphs of functions of x:
An alternative to the trial and improvement method Factorising Difficult Quadratics.
Multiples, Factors, Primes & Composite Numbers
Equation Jeopardy Add Mixed Multiply/ Divide Fractions Q $100 Q $200 Q $300 Q $400 Q $500 Q $100 Q $200 Q $300 Q $400 Q $500 Final Jeopardy Subtract.
$1,000,000 $500,000 $100,000 $50,000 $10,000 $5000 $1000 $500 $200 $100 Is this your Final Answer? YesNo Question 2? Correct Answer Wrong Answer.
Multiplication of Real Numbers Section 2.5. Multiplying Rules 1) If the numbers have the same signs then the answer is positive. (-7) (-4) = 28 2) If.
ORDER OF OPERATIONS Making Sense of Math.
Asking Questions - Conditionals Objectives Learning the types of questions c++ can ask. Writing simple questions in c++. logical operators relational operators.
Persuasive Text 8th 8.18.
Solving Systems by Elimination 5.4 NOTES, DATE ____________.
Title Category #1 Category #2 Category #3Category #
Mathsercise-C Expressions 1 Ready? Here we go!. Expressions 1 Simplify the expression…… 1 4p Question 2 Answer + 9q+ 5p– 3q 9p + 6q.
IF Statements flowcharts and pseudocode Please open the speaker notes - they contain additional information!
Teaching Point: I can evaluate an expression or check my work by substituting in a variable and applying my knowledge of PEMDAS. Do-now: 1)4(3) +7 – 1.
Section 2.3 – Deductive Reasoning
Objective The student will be able to:
Rule Exercises Status of the Ball Definitions and Rule 15
Rule Exercises Status of the Ball Definitions and Rule 15
Factors, multiple, primes: Factors from prime factors
Prime, Composite, FACTORS, and Multiples
And the text with form..
10 Real Numbers, Equations, and Inequalities.
Multiplying Rational Numbers
Distributive law of multiplication
Collecting Like terms Brackets 2 Brackets
סדר דין פלילי – חקיקה ומהות ההליך הפלילי
Factors, multiple, primes: Prime factors
Mathsercise-C Ready? Equations 1 Here we go!.

True or False: {image} is one-to-one function.
Find the reference angle for the angle measuring {image}
Decimals: Multiplying by 2.5
Review Use fractions express the quotient
Multiplication always makes things bigger
LI4 Inequalities- True or False?.
You must show all steps of your working out.
© School Improvement Liverpool Limited 2018
Question 1.
If-Statements and If/Else Statements
ALGEBRA what you need to know..
Factors, multiple, primes: Multiples
Fractions: Simplifies to a unit fraction?
Division of Real Numbers
Standard Form: Multiplying powers of 10
Standard form: In standard form?
True or False True or False
Coordinates: Naming 2D coordinates – quadrant 1
Respond to all ‘green pen’ with a comment
LET’S PLAY JEOPARDY!!.
Presentation transcript:

Logical conditions If ………………..

Logical condition Is something which must either give a "true" or "false" answer / 2 possible results. For example is your name Fred or Are you taller than 1.50m

If conditions =If (d5 > 40,"old","young") =If (d5 > 40,"old","young") =If (c2="east", "ok","No") =If (c2="east", "ok","No")

Joint conditions (if either condition inside the brackets is true) =If(OR(c2="west", c2="east"),"ok","wrong") =If(OR(c2="west", c2="east"),"ok","wrong") =If(AND(c1 = "west", D2 > 5 ), "ok","wrong) =If(AND(c1 = "west", D2 > 5 ), "ok","wrong)

Other Ifs =If(D5>10000,D5*0.05,0) =If(D5>10000,D5*0.05,0) =If(Or(c5="East",C5="west"),d5*0.05, D5*0.04) =If(Or(c5="East",C5="west"),d5*0.05, D5*0.04) =IF(C5="east",1,IF(C5="west",2,3)) =IF(C5="east",1,IF(C5="west",2,3)) When we want more than two possible answers - if the answer in C5 is East then give/ multiply by 1 if the answer in C5 is West then give / multiply by 2. If not give 3. if the answer in C5 is West then give / multiply by 2. If not give 3.