TI-BASIC:SK:Summary Basics: Difference between revisions
From Learn @ Cemetech
				
				
				Jump to navigationJump to search
				
				
 Automated internal link correction  | 
				 Automated internal link correction  | 
				||
| Line 21: | Line 21: | ||
|tocpage = TI-BASIC:Starter_Kit  | |tocpage = TI-BASIC:Starter_Kit  | ||
|toctitle = Table of Contents  | |toctitle = Table of Contents  | ||
|nextpage = TI-BASIC:SK:  | |nextpage = TI-BASIC:SK:Exercises_Basics  | ||
|nexttitle = Chapter Exercises}}[[Category:TI-BASIC]]  | |nexttitle = Chapter Exercises}}[[Category:TI-BASIC]]  | ||
[[Category:TIBD]]  | [[Category:TIBD]]  | ||
Latest revision as of 00:56, 25 February 2016
- TI-Basic is the built-in programming language on all of TI's graphing calculators.
 - When making programs, there is a general order that you follow: you create the program, then you edit the program, and finally you execute the program.
 - A variable is a place where a number can be stored. Each of the letters A through Z (as well as the funky θ symbol, which is Greek and pronounced "theta") is a variable that can hold a number.
 - Input happens when a program lets the person running it press a key or type something in, so that it can do something with that. Output happens when a program displays results on the screen.
 - Control structures are instructions that explain which steps the calculator should follow, and in which order.
 - The Goto command tells the calculator to go to another point (more specifically, a corresponding Lbl) in the program, and continue running it from there.
 - Loops are a type of control structure used to repeat a block of code several times. There are two kinds of loops: a loop that repeats until a condition is satisfied and a loop that repeats a fixed number of times.
 
Commands Introduced
| << Loops | Table of Contents | Chapter Exercises >> |