Virtual Program AI & Robotics Module 1

Slides:



Advertisements
Similar presentations
If Statements, Try Catch and Validation. The main statement used in C# for making decisions depending on different conditions is called the If statement.
Advertisements

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:
Find opposites of numbers EXAMPLE 4 a. If a = – 2.5, then – a = – ( – 2.5 ) = 2.5. b. If a =, then – a = –
Task Card Templates Choose one slide below each week to create a task card for a Tech Tub station. Make sure to fill in the “Notes” below the task card.
Extended Prelude to Programming Concepts & Design, 3/e by Stewart Venit and Elizabeth Drake Chapter 2: Flowcharts.
Conditions. Objectives  Understanding what altering the flow of control does on programs and being able to apply thee to design code  Look at why indentation.
TABLES AND VALUES Section 1.5. Open Sentence Equation.
Welcome to (insert course name) (customize with instructor/course/section #)
Type your question here. Type Answer Type your question here. Type Answer.
My Cool Robot Is: Robot Name Here Your Name Here Class Period.
While and If-Else Loops ROBOTC Software. While Loops While loop is a structure within ROBOTC Allows a section of code to be repeated as long as a certain.
Structured Programming The Basics. Control structures They control the order of execution What order statements will be done in, or whether they will.
Basic Conditions. Challenge: ● Ask the user his/her name ● If it’s “Wally,” jeer him ● Pause video and try on your own.
Structure Based Test Design
Structured Programming The Basics
You’re a new employee and need to get started. What should you do?
FREQUENTLY ASKED QUESTIONS ABOUT ADVANCED CARE PLANNING
Development Environment
Chapter 12: Researching Your Question!
Basics of Computer Programming
Week of 12/12/16 Test Review.
Enter Title Here Created by.
Programming Mehdi Bukhari.
Enter subject graphic here
Basics of Computer Programming
If, else, elif.
Python - Iteration Iteration
Basics of Computer Programming
Lecture 3 MIT 12043, Fundamentals of Programming By: S. Sabraz Nawaz
CHAPTER 4 Test Design Techniques
Introduction To Robot Decision Making
קורס פיננסי – מושגים פיננסיים / כלכליים
Download the Mobile App Now!
Learning to Program in Python
While Loops and If-Else Structures
Facial expressions.
Purpose of Looks Like - Sounds Like Exercise
Scratch: selection / branching/ if / If…else / compound conditionals / error trapping by Mr. Clausen.
Selection (IF Statements)
Multiple Selections (ELIF Statements)
Design and Implementation
“Everyone Else Does It!” Ethics Project
Module 4 Loops.
Visual Basic – Decision Statements
Selection Statements.
Introduction To Robot Decision Making
Data Logging Day 1 ish Objectives:
Programming - Buttons Intro to Robotics.
Programming with Alice
4105 CHALLENGING REVIEW QUIZ
Programming - Buttons Intro to Robotics.
Substitute any Jeopardy title card for the front page.
Flowcharts and Pseudo Code
A LESSON IN LOOPING What is a loop?
I can…. French I need for this…
Independent Task – Level 7
A guide for UNT staff using Outlook
Function Notation.
“Everyone Else Does It!” Ethics Project
Hint idea 2 Split into shorter tasks like this.
statement. Another decision statement, , creates branches for multi-
Download the Mobile App Now!
Starter Look at the hand-out.
Data Logging Day 1 ish Objectives:
Lecture 5 – Unit 1 – Chatbots Python – More on Conditional statements
True or False True or False
How to Create a New Absence
Year 8 Computer Science Digital Portfolio
Presentation transcript:

Virtual Program AI & Robotics Module 1 AI Chatbot Virtual Program AI & Robotics Module 1

Part 1 A customer has logged into the banking app and asked Eeba where their nearest branch is. You have been tasked with brainstorming the different ways a customer might type this into Eeba. Here is an example: “Hi Eeba, I want to speak with someone in person about my banking” What are some other ways a customer could ask this?

Part 2 Now that Eeba knows that the customer wants to know where their nearest branch is, Eeba asks, “Where do you live?” and the customer answers with the suburb they live in. Can you fill out what Eeba should say in each of these scenarios? There is a branch in their suburb. Eeba: “…” The suburb does not have a branch. The suburb does not exist.

Part 3 The simplest way to make a decision in programming is using an IF statement. An IF statement will allow Eeba to make a decision and perform a function, based on whether the statement was true or false. Download the template in the ‘additional resources’ section, which will guide you through coding this up. Template: if (suburb_name exists) & (suburb_name has a branch) then print ‘The nearest branch is in suburb_name’ else if (insert your code here) then print (insert your code here) else end if Enter answer below