lesson 3 EVENT DRIVEN PROG

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/9

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

10 Terms

1
New cards

OPERATORS

e used for building expressions in C#. Expressions perform operations on variables or values.

2
New cards

ASSIGNMENT OPERATOR

assigns the result of an expression to a variable.

3
New cards

UNARY OPERATORS

Used for incrementing or decrementing a variable’s value by 1. Commonly used in loops

4
New cards

COMPARISON OPERATORS

Used to compare two operands.
Returns: true or false based on the condition.

5
New cards

LOGICAL OPERATORS

Evaluate expressions and return true or false. They allow programs to make decisions dynamically.

6
New cards

AND OPERATOR

  • Returns true if both conditions are true.

  • Returns false if any condition is false.

7
New cards

OR OPERATOR

  • Returns true if at least one condition is true.

  • Returns false only if all conditions are false.

8
New cards

NOT OPERATOR

Returns true if the expression is false, and vice ve

9
New cards

XOR OPERATOR

  • Returns true only if one of the expressions is true.

  • Returns false if both expressions are true or both are false.

10
New cards

INCREMENT AND DECREMENT OPERATORS

WHAT ARE THE TWO TYPES OF UNARY OPERATORS