syntax error - перевод на русский
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

syntax error - перевод на русский

ERROR IN THE SYNTAX OF A SEQUENCE OF CHARACTERS
Style error; Parse error; Syntax errors; SyntaxError: Invalid syntax; Syntax Error
  • Syntax error in a scientific calculator

syntax error         
синтаксическая ошибка
syntax error         

общая лексика

синтаксическая ошибка

последовательность символов в программе, нарушающая правила синтаксиса данного языка

антоним

semantic error

Смотрите также

logic error; syntax analyzer; syntax checking

observational error         
DIFFERENCE BETWEEN A MEASURED QUANTITY VALUE AND A REFERENCE QUANTITY VALUE
ObservationalError; Measurement error; Experimental error; Systematic bias; Random error; Systematic error; Systemic error; Alleged systemic bias; Random errors; Systematic errors; Measurement errors; Observational Error; Systematic effect; Chance error; Accidental error; Constant error; Stochastic error; Observation error; Systematic and random error; Systematic and random errors; Random and systematic errors; Measurement Error

общая лексика

ошибка наблюдения

Определение

ляпсус
м.
Ошибка, оговорка, досадный промах (обычно в устной речи и на письме).

Википедия

Syntax error

In computer science, a syntax error is an error in the syntax of a sequence of characters or tokens that is intended to be written in a particular programming language.

For compiled languages, syntax errors are detected at compile-time. A program will not compile until all syntax errors are corrected. For interpreted languages, however, a syntax error may be detected during program execution, and an interpreter's error messages might not differentiate syntax errors from errors of other kinds.

There is some disagreement as to just what errors are "syntax errors". For example, some would say that the use of an uninitialized variable's value in Java code is a syntax error, but many others would disagree and would classify this as a (static) semantic error.

In 8-bit home computers that used BASIC interpreter as their primary user interface, the SYNTAX ERROR error message became somewhat notorious, as this was the response to any command or user input the interpreter could not parse. A syntax error can occur or take place, when an invalid equation is being typed on a calculator. This can be caused, for instance, by opening brackets without closing them, or less commonly, entering several decimal points in one number.

In Java the following is a syntactically correct statement:

while the following is not:

System.out.println(Hello World);

The second example would theoretically print the variable Hello World instead of the words "Hello World". However, a variable in Java cannot have a space in between, so the syntactically correct line would be System.out.println(Hello_World).

A compiler will flag a syntax error when given source code that does not meet the requirements of the language's grammar.

Type errors (such as an attempt to apply the ++ increment operator to a boolean variable in Java) and undeclared variable errors are sometimes considered to be syntax errors when they are detected at compile-time. However, it is common to classify such errors as (static) semantic errors instead.

Как переводится syntax error на Русский язык