Language - Literal Value

Card Puncher Data Processing

About

A literal value stands alone without being stored in a variable.

Values that are included directly in the source code are called literals

string literals are surrounded by double quotes (“…”) or single quotes ('…').

Example

2 in the below statement is a literal value

x = y + 2;





Discover More
Card Puncher Data Processing
Character set

Character Set in PHP
Compiler
Concrete Syntax Tree - What is that ?

A concrete syntax tree is a tree representation of a grammar that contains the whole parsed document
Java Conceptuel Diagram
Java - Character (char)

character in java. There is two type: char which is a primitive type java/lang/CharacterCharacter which is a primitive wrapper around a char primitive and adds functionalities such as the possibility...
Java Conceptuel Diagram
Java - Integer

integer data type in Java. int (or Integer) is the 32 bit implementation of an integer. Java can also store an integer on 64 bit with a long. An integer in java is a sub-class of number They are...
Java Conceptuel Diagram
Java - long - Long (integer 64 bit)

In Java, the long data type stores integer on 64 bit while the integer data type stores integer on 32bit. The primitive wrapper java/lang/LongLong is a subclass of java/lang/NumberNumber in java ...
Javascript - Character

This article is the character representation and manipulation in Javascript (ie code point). They: are all unicode UTF-16 character are an element in a string starting at the index 0. may have...
Javascript - Strict Mode

strict mode makes some operations more strict such as: the definition of this the variable must be created implicitly the data type Reference/Strict_modestrict mode ES5 introduced the strict...
Card Puncher Data Processing
Language - Expression

An Expression is a suite of special token that: are contained in statements and produce value (evaluate) They are a value specifications that specify values resulting from a computation. The expression...
Card Puncher Data Processing
Language - Value

in code A variable hold a value (Primitive, Object, ...) An expression produces a value In a dynamic language, only the value has a type (not the variable) Every value has a type. Variable are...
Compiler
Lexical Analysis - (Token|Lexical unit|Lexeme|Symbol|Word)

A token is symbols of the vocabulary of the language. Each token is a single atomic unit of the language. The token syntax is typically a regular language, so a finite state automaton constructed from...



Share this page:
Follow us:
Task Runner