Introduction to Programming

Slides:



Advertisements
Similar presentations
Introduction to Computers Section 6A. home The Operating System (OS) The operating system (OS) is software that controls the interaction between hardware.
Advertisements

Microsoft® Small Basic
is actually done at your computer and it’s very simple to do
COMPUTER PROGRAMMING Task 1 LEVEL 6 PROGRAMMING: Be able to use a text based language like Python and JavaScript & correctly use procedures and functions.
Introduction to Visual Basic.NET Uploaded By: M.Sheraz anjum.
CS0004: Introduction to Programming Visual Studio 2010 and Controls.
Interfacing with Computer Associate Degree in Education (ADE) Lecture 04 Sajid Riaz.
6 th Grade Computers 1. ____________________ is the keyboard shortcut for undo. a) “Ctrl” + “C” b) “Ctrl” “Y” c) “Ctrl” + “B” d) “Ctrl” + “Z” 2.
Macros Tutorial Week 20. Objectives By the end of this tutorial you should understand how to: Create macros Assign macros to events Associate macros with.
A Visual Introduction to PC SAS. Start SAS by double-clicking on the SAS icon...
Computer Literacy PowerPoint Dustin Llanes Comm. 165.
Introduction to Visual Basic. What is Visual Basic? An environment for developing Windows applications Components –A GUI (Graphical User Interface - gooey)
Software Development. Chapter 3 – Your first Windows 8 app.
PYTHON: LESSON 1 Catherine and Annie. WHAT IS PYTHON ANYWAY?  Python is a programming language.  But what’s a programming language?  It’s a language.
®® Microsoft Windows 7 Windows Tutorial 1 Exploring the Basics of Microsoft Windows 7.
Microsoft® Small Basic
Hello! Keep watching … I’ll show you how to use a mouse.
Introduction to VBA MGMI Aug What is VBA? VBA = Visual Basic for Application Excel’s powerful built-in programming language An event-driven.
MICROSOFT WORD GETTING STARTED WITH WORD. CONTENTS 1.STARTING THE PROGRAMSTARTING THE PROGRAM 2.BASIC TEXT EDITINGBASIC TEXT EDITING 3.SAVING A DOCUMENTSAVING.
Important Information This presentation was created by Patrick Crispen. You are free to reuse this presentation provided that you –Not make any money from.
Exploring Your Desktop To run presentation, please click on bottom arrow to right to change to next frame.
Ch 101 Chapter 10 Introduction to Batch Files. Ch 102 Overview A batch file is a text file that contains an ordered series of commands.
Introduction To Microsoft Word C Apply intermediate skills in utilizing word processing software Word processing programs make the writing process.
Tutorial 11 Five windows included in the Visual Basic Startup Screen Main Form Toolbox Project Explorer (Project) Properties.
Visual Basic.NET BASICS Lesson 1 A First Look at Microsoft Visual Basic.NET.
Lab 1 : Introduction to LabView 1 Southern Methodist University Bryan Rodriguez.
Microsoft Visual Basic 2005 BASICS Lesson 1 A First Look at Microsoft Visual Basic.
1 Getting Started with C++. 2 Objective You will be able to create, compile, and run a very simple C++ program on Windows, using Visual Studio 2008.
I Power Higher Computing Software Development Development Languages and Environments.
Introduction to Python Lesson 1 First Program. Learning Outcomes In this lesson the student will: 1.Learn some important facts about PC’s 2.Learn how.
1 Visual Basic Part I - A tool for customizing your program Principles of GIS
MICROSOFT WORD THE SCREEN LAYOUT THE MICROSOFT OFFICE BUTTON.
TRUE or FALSE? PowerPoint is a presentation application software program.
PROGRAMMING IN PYTHON LETS LEARN SOME CODE TOGETHER!
This is how you invoke the Microsoft Visual Studio 2010 Software. All Programs >> Microsoft Visual Studio 2010.
Practical Kinetics Exercise 0: Getting Started Objectives: 1.Install Python and IPython Notebook 2.print “Hello World!”
Data-information stored in files on the disks and CDs in your computer system Why should we save a file when we create it on the computer?
Basic Navigation in Oracle R12 BY: Muhammad Irfan.
FIRST COURSE Exploring the Basics of Microsoft Windows Vista.
Fundamentals of Windows Mouse n 4 Basic Operations: –Pointing –Clicking –Double Clicking –Dragging.
 There are three things to get Trend Micro software for your PC. They are Download, Installation and Activation of the software license. Trend Micro.
First Day in Lab Making a C++ program
Windows Basics Computers 1.
Development Environment
Online Registration Step by Step
Customizing the Quick Access Toolbar in Microsoft Office
1. Introduction to Visual Basic
Data Representation ASCII.
Microsoft Excel 2003 Illustrated Complete
Microsoft® Small Basic
Learning to program with Logo
Introduction to Microsoft Windows
Module 1: Getting Started with Windows 95
Hints on Delivering PowerPoint Presentations Well
Week 1 Computer Programming Year 9 – Unit 9.04
HOW TO CREATE A CLASS Steps:
Task 1 Computer Programming LEVEL 6 PROGRAMMING:
A look at Small basic The Text Window 2017.
Epic Reports.
Epic Reports This material contains confidential and copyrighted information of Epic Systems Corporation - Confidential.
Microsoft Word Documents
More to Learn Creating a shortcut
Introduction to Python
Chapter 1 Introducing Small Basic
University of Warith AL-Anbiya’a
PowerPoint Lesson 1 Microsoft Word Basics
Starter Which of these inventions is: Used most by people in Britain
“Captured screen” appears.
An Introduction to the Windows Operating System
Photo Story 3 for Windows
Presentation transcript:

Introduction to Programming Using “Small Basic”

Computer Languages Computer Programming is the process of creating software (programs) using programming languages. Just like we speak and understand English or Spanish or French, computers can understand programs written in certain languages. These are called programming languages. The language we are going to use is called “Small Basic”

Small Basic Environment Let us start with a quick introduction to the Small Basic Environment. When you first open SmallBasic, you will see a window that looks like this… (2) The Toolbar is where we access the command butons (1) The Editor, is where we will write our Small Basic programs. (3) The Surface is where all the editor windows go.

Your First Program TextWindow.WriteLine("Hello World") The traditional first program that people learn in any programming language is called “Hello World”. This will simple print the words “Hello World” to the screen. TextWindow.WriteLine("Hello World")

Your First Program Once you have typed the line of code then press the ‘Run’ button on the toolbar If you typed the code correctly you should see the window below… Congratulations! You have just written and run your first Small Basic program. A very small and simple program, but nevertheless a big step towards becoming a real computer programmer!

Saving Your Program If you want to close Small Basic and come back later, you can save the program. It is good practice to save programs from time to time, so that you don’t lose information in the event of an accidental shutdown or a power failure. You can save the current program by either clicking on the “save” icon on the toolbar or by using the shortcut “Ctrl+S” (press the S key while holding down the Ctrl key).