Glossary

The format used for writing dates. For example, 12/3/08 in the USA means December 3rd, 2008 – whereas in Israel it means March 12th, 2008.

X

Abbreviation for "Double Byte Character Set". In contrast to ANSI character sets, DBCS uses two bytes to code a character. This leads to 65,536 possible characters.

X

A software development environment created by Borland Inc. (now renamed to CodeGear).  It supports the Delphi programming language (Object Pascal), C++ and C#. 

X

An assembly is a code library used with the Microsoft .NET framework. On the Windows platform it is stored in portable executable files. For .NET there are two types on the Windows platform: process assemblies (EXE) and library assemblies (DLL).

X

.NET is an umbrella term used for Microsoft software-development products.  Programming languages, like C#, VB.NET, Delphi for .NET, use the .NET framework as a runtime library.

X

Changing the code of a software application so it can recognize characters that are encoded in two subsequent bytes rather than a single byte.  Most Asian languages, some of which consist of thousands of characters, are double- or multi-byte languages. Most languages that use the Roman writing system can encode all required characters in a single byte. Correct character processing is essential for many software operations, including presentation, sorting and editing of text or numbers.

X

A web site in which part of the content presented to the user is dynamically generated by the web server upon demand. Unlike static HTML pages, dynamic pages do not exist as files on the server, but are generated as soon as they are requested. The request may include variables such as user name, date and time, context etc. The server makes use of these variables in order to generate an HTML page customized for them. Thus, for example, two different users may browse the same website, but see two different HTML pages. Some of the technologies used to create dynamic web sites include: Sun Java Server Pages, Microsoft Active Server Pages (ASP), PHP and Perl.

X