About 36,600 results
Open links in new tab
  1. what is an operand? - Codecademy

    Subtraction (-) Addition (+) Examples of Arithmetic operator usage on operands: 5 (Operand) + 7 (Operand) 7 (Operand) * 3 (Operand) There are Arithmetic Operators, Logical Operators, …

  2. General Question - What does "missing operand" mean?

    General Question - What does "missing operand" mean? I keep coming across this and although im able to resolve the issue I still havnt figured out what it means. all responses are appreciated.

  3. C# (C Sharp) | Operators | Codecademy

    Nov 3, 2022 · Increment, ++, which increments its single operand by one. Decrement, --, which decrements its single operand by one. Unlike the other arithmetic operators, the increment and …

  4. C | Operators | Unary operators | Codecademy

    Feb 6, 2025 · Unary operators in C operate on a single operand to perform various operations such as incrementing, decrementing, negating, or manipulating bits. They are frequently used …

  5. C | Operators - Codecademy

    Jun 10, 2022 · Operators are used to perform operations on variables and values. They are symbols that tell the compiler to perform specific mathematical or logical functions. The C …

  6. 7/9 TypeError: unsupported operand type (s) for -: 'float' and 'list'

    Here: variance += ((average - scores) ** 2) You substract “scores” which is a list, so you shoud substract ‘i’ which is a float number from list.

  7. [resolved] why this error : unsupported operand type(s) for +: 'int ...

    get_average (alice) raised the following error: unsupported operand type (s) for +: ‘int’ and ‘str’ I suspect something with the 85.3333333 result for alice’s quizzes.

  8. PowerShell | Operators | Codecademy

    May 16, 2023 · Arithmetic operators are binary operators, which means they act on two operands. Their syntax in PowerShell is <Operand_1> <Arithmetic Operator> <Operand_2>.

  9. JavaScript | Operators | Codecademy

    May 5, 2021 · Other Assignment Operators An assignment operator assigns a value to its left operand based on the value of its right operand: +=: Adds and assigns a new value to a …

  10. JavaScript | Nullish Coalescing | Codecademy

    Jan 8, 2025 · In JavaScript, the nullish coalescing (??) operator is a logical operator that evaluates the left-hand operand and returns it if it is not nullish (i.e., not null or undefined). …