Reserved word - traduzione in spagnolo
Diclib.com
Dizionario ChatGPT
Inserisci una parola o una frase in qualsiasi lingua 👆
Lingua:

Traduzione e analisi delle parole tramite l'intelligenza artificiale ChatGPT

In questa pagina puoi ottenere un'analisi dettagliata di una parola o frase, prodotta utilizzando la migliore tecnologia di intelligenza artificiale fino ad oggi:

  • come viene usata la parola
  • frequenza di utilizzo
  • è usato più spesso nel discorso orale o scritto
  • opzioni di traduzione delle parole
  • esempi di utilizzo (varie frasi con traduzione)
  • etimologia

Reserved word - traduzione in spagnolo

WORD IN A PROGRAMMING LANGUAGE THAT CANNOT BE USED AS AN IDENTIFIER
Reserved identifier; Keyword (computer programming); Keyword (computing); Reserved keyword; Reserved words; Keyword symbol; Keyword (programming); Kount; Keyword (computer languages); Keyword (programming languages)

Reserved word         
Palabra reservada
reserved word         
n. palabra reservada (palabra del ordenador que tiene un significado particular en el idioma y por tanto no se la debe emplear en otras formas - p.ej.: como denominación de una variable)
word-oriented         
BASE MEMORY UNIT HANDLED BY A COMPUTER
Computer word; Word size; Word length; Wordlength; 10-bit; Halfword; Dword (Computer); Qword; Machine word; DWORD; DWord; Dword; Data word; Double word; Word orientation; Word-oriented; Word oriented; Word (unit); Word (data type); Word width; Memory word; Bitness; Binary word; Variable word-length computer; Variable word-length architecture; Variable word-length machine; Variable word length architecture; Variable word length computer; Variable word length machine; Variable word architecture; Variable word-length (computer hardware); Variable word length (computer hardware); 32-bit word; 32bit word; Catena (unit); Catena (computing); Catenae (unit); Catenae (computing); Storage word; 16-bit word; 16 bit word; 32 bit word; 48-bit word; 48 bit word; 51 bit word; 51-bit word; 60-bit word; 60 bit word; 64 bit word; 64-bit word; 96 bit word; 96-bit word; Word size (computing); Quarterword; Variable word length; Fullword; Kiloword
(adj.) = de sólo palabras
Ex: As an alternative to word-oriented Boolean query language, Verity Inc.'s TOPIC software offers a concept-based retrieval system.

Definizione

reserved word
¦ noun Computing a word in a programming language which has a fixed meaning and cannot be redefined by the programmer.

Wikipedia

Reserved word

In a computer language, a reserved word (also known as a reserved identifier) is a word that cannot be used as an identifier, such as the name of a variable, function, or label – it is "reserved from use". This is a syntactic definition, and a reserved word may have no user-defined meaning.

A closely related and often conflated notion is a keyword, which is a word with special meaning in a particular context. This is a semantic definition. By contrast, names in a standard library but not built into the language are not considered reserved words or keywords. The terms "reserved word" and "keyword" are often used interchangeably – one may say that a reserved word is "reserved for use as a keyword" – and formal use varies from language to language; for this article we distinguish as above.

In general reserved words and keywords need not coincide, but in most modern languages keywords are a subset of reserved words, as this makes parsing easier, since keywords cannot be confused with identifiers. In some languages, like C or Python, reserved words and keywords coincide, while in other languages, like Java, all keywords are reserved words, but some reserved words are not keywords – these are "reserved for future use". In yet other languages, such as the older languages ALGOL, FORTRAN and PL/I, there are keywords but no reserved words, with keywords being distinguished from identifiers by other means.