C OPERATORS Flashcards

Lecture 7

1
Q

Arithmetic Operators

A

An operator is a symbol that tells the compiler to perform specific mathematical
or logical functions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Prefix and postfix

A

If the operator is placed in front, it
is prefix but if it is placed behind, it
is postfix.

Prefix means, increment before
any operations are performed,
postfix is increment afterwards.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Addition, subtraction , multiplication, division,

A

*
/

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

%

A

modulus operator and remainder of integer division

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

++

A

increment increase by 1 integer value

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

A

Decrement :decrease by 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

=

A

Assignment not equal

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

*=
/=
%=

A

Add and Assignment
Subtracts and Assign
Multiply and Assign
Divide and Assign
Modulus and Assign

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

«=
»=

A

Left shift and Assignment
ex) C»=2 is same as C=C»2

Right shift and Assignment

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

&=

A

Bitwise and assignment
ex) C&=2 is C=C&2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

^=

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Rational operators

A

Used for
comparing two objects

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

== Rational Operator

A

Checks if 2 operands are equal

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

!= rational operator

A

Checks if operands are not equal

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

> or < operands

A

Checks greater than or less than

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

> =
<=
Rational operands

A

Checks if greater/less than OR if equal

17
Q

Logical Operators

A

Simulate Boolean algebra upon comparison.
Expressions involving logical operators undergo Short-Circuit Evaluation.

18
Q

&&

A

Logical AND operator
Both must meet condition

19
Q

!!

A

Logical OR Operator
Atleast one must meet the condition

20
Q

ll

A

Logical NOT operator
Reverse logical state-gives opposite of outcome.