Difference between revisions of "Category:Programming Language Concepts"

esse quam videri
Jump to: navigation, search
(Created page with "{ } braces [ ] brackets ( ) parentheses < less than > greater than argument data that is needed to perform a given task array a list or ordered collection of elements b...")
 
Line 9: Line 9:
 
> greater than
 
> greater than
  
argument data that is needed to perform a given task
 
  
array a list or ordered collection of elements
+
Preprocessor Directive:
  
block a section of code defined by some reserved symbol.
+
Block:
  
boolean a datatype that can hold either a 1 or a 0, true or false
+
Comments:
  
byte 8 bits
+
Whitespace:
  
case sensitive a condition wherein whether a character is upper or lower case has significance
+
Case Sensitivity: Some languages are case sensitive - a ROSE is NOT a Rose, and is NOT a rose.
  
char a datatype that holds a character
+
argument d
  
class a derived C++ datatype that represents a collection of related members and functions.
+
array
  
condition a relational expression that evaluates to true or false
+
block
  
constant a location in memory whose value does not change
+
boolean
  
counter a variable used to keep count
+
byte
  
datatype a term used to declare the kind of value a variable will hold or a function will return
+
case sensitive
  
define to assign a value to a variable or to write the code that holds the instructions for a function
+
char
  
double a datatype for a floating point (decimal) variable
+
class
  
editor a program that is used to create source code
+
condition
  
encapsulation to enclose in a block using braces
+
constant
  
error codes values that are returned to indicate why a process failed
+
counter
  
executable code the end result of the compiling/linking process, stand alone code that can be run on a computer
+
datatype
  
float a datatype that can hold floating point or decimal value
+
define
  
function a block of code that encapsulates a given process
+
double
  
global the scope of a variable that allows it to be used by all blocks of a program
+
editor
  
IDE integrated development environment
+
encapsulation
  
identifier the name assigned to a variable or function
+
error codes
  
initialization the process of assigning an initial or beginning value to a variable
+
executable code
  
instance the occurrence of an object of a class
+
float
  
int the datatype that holds a whole number or integer
+
function
  
keyword a reserved word reserved in a programming language that is assigned a special meaning
+
global
  
main a keyword used to define the principle block of code. This is the name of the function where the program begins
+
IDE
  
member a variable or function in a class
+
identifier
  
object something created when a variable is declared. An instantiation of a class
+
initialization
  
object oriented programming a type of programming that used classes to create objects.
+
instance
  
operator word or symbol that causes some kind of computation or action
+
int
  
pixel a picture element, the smallest bit of data on a screen
+
keyword
  
pseudocode English text that describes the flow or steps of a program
+
main
  
public a member of a class that can be accessed by objects of any class
+
member
  
relational operator a word or symbol that tests whether an expression is true or false
+
object
  
return value a value sent back to the calling function when a function ends
+
object oriented programming
  
scope the block in which a value can be accessed
+
operator
  
source code the instructions of a program written in a programming language
+
pixel
 +
pseudocode
  
statement a line of instruction terminated by a semicolon
+
public
  
trace to follow the sequence of a program
+
relational operator
  
variable an object, a location in memory whose value can change
+
return value
  
void a datatype that holds no value
+
scope
 +
 
 +
source code
 +
 
 +
statement
 +
 
 +
trace
 +
 
 +
variable
 +
 
 +
void

Revision as of 16:53, 7 June 2019

{ } braces

[ ] brackets

( ) parentheses

< less than

> greater than


Preprocessor Directive:

Block:

Comments:

Whitespace:

Case Sensitivity: Some languages are case sensitive - a ROSE is NOT a Rose, and is NOT a rose.

argument d

array

block

boolean

byte

case sensitive

char

class

condition

constant

counter

datatype

define

double

editor

encapsulation

error codes

executable code

float

function

global

IDE

identifier

initialization

instance

int

keyword

main

member

object

object oriented programming

operator

pixel pseudocode

public

relational operator

return value

scope

source code

statement

trace

variable

void