Just Basic Lessons 9 Mr. Kalmes.

Slides:



Advertisements
Similar presentations
True BASIC Ch. 6 Practice Questions. What is the output? PRINT X LET X = -1 PRINT X FOR X = 4 TO 5 STEP 2 PRINT X NEXT X PRINT X END.
Advertisements

Computing Theory: BBC Basic Coding Year 11. Lesson Objective You will: Be able to define what BBC basic is Be able to annotate BBC basic code Be able.
An Introduction to Textual Programming
07/10/ Strings ASCII& Processing Strings with the Functions - Locate (Instr), Mid, Length (Len), Char (ChrW) & ASCII (Asc)
While Loops Indefinite Iteration. Last lesson we looked at definite loops using the ‘For’ statement. The while loop keeps going while some condition is.
End of unit assessment Challenge 1 & 2. Course summary So far in this course you have learnt about and used: Syntax Output to screen (PRINT) Variables.
Introduction to Video Game Programming (VGP) Mr. Shultz.
Introduction to BASIC Programming Ken R. Hall, Ph.D. Ken R. Hall Consultants Portland, Oregon.
Python Mini-Course University of Oklahoma Department of Psychology Day 3 – Lesson 11 Using strings and sequences 5/02/09 Python Mini-Course: Day 3 – Lesson.
JUST BASIC Lessons 6 – 9 Mr. Kalmes.
what is computer programming?
Fundamentals of Python: First Programs
Python Lesson 12 Mr. Kalmes.
Tuples and Lists.
Implementation of Convolution using C++
Think What will be the output?
Unit 2 Smarter Programming.
Python Lesson 12 Mr. Kalmes.
Starter Write a program that asks the user if it is raining today.
String Manipulation.
Python Lesson 6 Mr. Kalmes.
Python Lesson 3 Mr. Kalmes.
Learning to Program in Python
Use proper case (ie Caps for the beginnings of words)
Introduction to TouchDevelop
Introduction to Programming
Python Lessons 9 & 10 Mr. Kalmes.
For -G7 programing language Teacher / Shamsa Hassan Alhassouni.
Learning to Program in Python
Python Lessons 13 & 14 Mr. Kalmes.
Just Basic lesson 16 Mr. Kalmes.
4.1 Strings ASCII & Processing Strings with the Functions
Java Lesson 36 Mr. Kalmes.
Python Lesson 21 Mr. Kalmes.
Java Lessons 17 – 20 Mr. Kalmes.
Java Lessons 28 – 32 Mr. Kalmes.
Java Lesson 35 Mr. Kalmes.
Just Basic Lessons Mr. Kalmes.
Text / Serial / Sequential Files
Basic Lessons 7&8 Mr. Husch.
Just Basic Lesson 17 Part 1 Mr. Kalmes.
Just Basic Lessons 14 Mr. Kalmes.
Python Lesson’S 1 & 2 Mr. Kalmes.
Python Basics with Jupyter Notebook
Just Basic Lessons 7&8 Mr. Kalmes.
Just Basic Lesson 15 Mr. Kalmes.
PYTHON LESSON 5 Mr. Kalmes.
Python Programming Mr Scicluna.
Basic Lessons 5 & 6 Mr. Kalmes.
Just Basic Lesson 12 Mr. Kalmes.
Just Basic Lesson 19 Mr. Kalmes.
Lesson 02: Introduction to Python
Python Lessons 7 & 8 Mr. Kalmes.
Do it now – PAGE 7 You will find your do it now task in your workbook – look for the start button! Sunday, 19 May 2019.
Python Inputs Mr. Husch.
Java Lessons Mr. Kalmes.
Basic Mr. Husch.
Do it now – PAGE 3 You will find your do it now task in your workbook – look for the start button! Thursday, 23 May 2019.
Python Lessons 7 & 8 Mr. Husch.
Python 10 Mr. Husch.
Just Basic Lesson 13 Mr. Kalmes.
Just Basic Lessons Mr. Kalmes.
Hint idea 2 Split into shorter tasks like this.
Python 8 Mr. Husch.
Basic 9 Mr. Husch.
BASIC 17 Mr. Husch.
Text / Serial / Sequential Files
Just Basic Lessons 7 Mr. Kalmes.
Just Basic Lessons 8 Mr. Kalmes.
Getting Started in Python
Presentation transcript:

Just Basic Lessons 9 Mr. Kalmes

Lesson 9 Objectives Define and use functions in BASIC How to comment on code in BASIC

Previous Learned Input Data Display with print Store data using strings Using If-Then statements to control programs

What’s new

LEN ( ) The LEN ( ) function is a command that gives the number of characters in a string You can also loop functions

Looping

What happened What did the program do and why?

Commenting In order to make comments in BASIC use the REM tag on a separate line

Lesson assignment Your assignment is to write a program that will loop numbers 1-100 and count how many total numbers that is. You need to include rem into this as a reminder of what you built.

Please complete your journal & exit slip

Basic games Please download and play the games on BASIC to get an idea of what is possible to create