16
BASIC PROGRAMMING

Lesson 3 - Just Basic Parts

Embed Size (px)

DESCRIPTION

Parts of Just Basic screen

Citation preview

Slide 1

BASIC PROGRAMMINGBASICStands for Beginners All-Purpose Symbolic Instruction Code. It was originally developed by John Kemeny and Thomas Kurtz.Its main aim was to aid in the teaching of computer programming with the main methods of input and output. PARTS OF THE BASIC WINDOW EDITOR

PROGRAM AREAMENU BARTOOL BARSCROLL BARTITLE BAR

TITLE BARShows the title of the program.

MENU BARCompose of different menus for giving commands in the programming language.

TOOL BARProvides shortcut commands buttonFor easy access.

PROGRAM AREAWhere you type in your codes to create just BASIC program.

SCROLL BARAppears both horizontally andvertically. View spaces for text thatcannot be seen on the screen.Creating a New FileClick the File MenuChoose New Basic Source File

Or press Ctrl + NSaving a Basic Program FileClick the File MenuChoose Save AsIn the Dialog Box, Type the Filename with an extension .bas (ex. Hello.bas)Click the Save ButtonOpening a Basic Program FileClick The File MenuChoose OpenIn the Dialog Box, Locate the basic program file you want to open.Click the Open button.

To Run Your ProgramClick the Run Button from the toolbar

Or press Shift + F5Or go to Run Menu then choose Run. Create a Program that will view your name and some short messages about your program.

Writing Simple ProgramPROGRAM CODE:

clsprint Hello World!!!Print I am Juan Dela Cruzprint This is my first Just Basic Programprint Thank you for Reading Have a Nice Day!!!end