Expressions_Quiz.md - brainchildservices/curriculum GitHub Wiki
What is Operator?
Operators are used to perform operations on variables and values.
What is a C# expressions?
An expression in C# is a combination of operands (variables, literals, method calls) and operators that can be evaluated to a single value. c=a+b;
a,b,c are the operands.
What are Unary operators?
_ the unary operators operates on a single operand. C# unary operators Operator Operator Name Description_
What are Arithmetic operators?
_ Arithmetic operators are used to perform arithmetic operations such as addition, subtraction, multiplication, division, Modulo._
What are Logical operators?
Logical operators are used to perform logical operation such as and, or. Logical operators operates on boolean expressions (true and false) and
returns boolean values. Logical operators are used in decision making and loops.
What is a ternary Operator?
C# includes a decision-making operator ?: which is called the conditional operator or ternary operator. It is the short form of the if else
conditions