Basics and Introduction

View Code

Making

Program
a file that gives instructions to the hardware of a computer
Source File
the file containing the programming language code
Compile
to translate source file into machine language
Executable File
a file that is a computer program

Language

Machine
ones and zeroes that the computer understands for instruction
Assembly
a programming language that strongly resembles machine language
Low Level
a programming language that computer jargon and English
High Level
a programming language that greatly resembles English

Errors

Syntax Error
an actual error in the written program
Logical Error
the program run but has a logical error and does not do what you want
Compile Time Error
the program will shut down during compilation error
Run Time Error
the program will shut down (or never stop) when it is working and running

Value and Memory Change

Typecast
surrounding a variable with a variable type and parenthesis to promote it to the desired type
Promotion
a variable will be treated as another with more memory for operation, passing as parameters, and type casting
Truncation
the cutting off of decimal values due to type casting or passing as parameters

Operation

Integer Division
arithmetic division between two numbers in which only the whole number part of the quotient is the answer
Modulus Division
arithmetic division between two numbers in which only the remainder is the answer

First Writings

Comments
lines of code which are not translated
Hello World
a program in which displays the message "Hello World!"

Prev -- Back to Portal -- Next