Operators in Programming Languages - Part I

Operators in Programming Languages - Part I

memorize.aimemorize.ai (lvl 286)
Section 1

Preview this deck

Could you apply mathematical operators on Text/String?

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

6 years ago

Date created

Mar 1, 2020

Cards (24)

Section 1

(24 cards)

Could you apply mathematical operators on Text/String?

Front

No

Back

Yes

Front

Quiz Question 3, are a>b and b<a same?

Back

Which operator is this (<>)?

Front

Not equal to operator

Back

Which operator is this (>=)?

Front

Greater than equal to

Back

An operator in a programming language is a symbol that tells the compiler to perform specific mathematical, relational, or logical operation and they produce results.

Front

What are operators in programming languages?

Back

== (equal to)

Front

Quiz Question 1, what is the symbol for equal to operator?

Back

What is PEMDAS or Please Excuse My Dear Aunt Sally?

Front

Parenthesis, Exponents, Multiplication, Division, Addition, Subtraction. The steps that a computer follows in math.

Back

What do the symbols of AND,OR and NOT operators mean?

Front

AND = && OR = || NOT = !

Back

What are types of mathematical operators in programming languages?

Front

Addition = + Substraction = - Multiplication = * Division = / Percentage = %

Back

Yes

Front

Quiz Question 5, are !(p>m) and (p<m) same?

Back

What are the types of logical operators in programming languages?

Front

AND, OR, NOT

Back

&& example (if (m >= n && !(p > m)))

Front

Which symbol should I use for AND operator in C Sharp?

Back

|| example (if (!(m >= n || m >= p)))

Front

Which symbol should I use for OR operator in C Sharp?

Back

Which operator is this (!=)?

Front

Not equal to

Back

There are mathematical and logical operators.

Front

What are the different kinds of commonly used operators?

Back

For an AND operation to be true, two or more than two conditions in a statement have to be true. Result is false, even if one condition is false. For an OR operation to be true, any one condition has to be true. Result is false, only if all conditions in the statement is false.

Front

What is the difference between logical operator AND and OR?

Back

Basic math operators include addition subtraction division and multiplication.

Front

What are mathematical operators?

Back

OR operator on keyboard is two '|' signs, '||' , pipe key

Front

What does an OR operator look like?

Back

|=, <> (not equal to)

Front

Quiz Question 2, what is not equal to symbol?

Back

* (asterik, star)

Front

Quiz Question 4, what is multiplication operator?

Back

Which operator is this (>)?

Front

Greater than

Back

4 <= 14, also 4<=4 If a = 4 and b = 14 ; operation a<=b , result = true If a = 4 and b = 4; operation a<=b , result = true If a = 4 and b = 3; operation a<=b , result = false

Front

Example of Less than or Equal to <=

Back

What's the difference between 10 and '10'?

Front

10 = number '10' = is a string/text/chars/alphabets

Back

AND OR true true true true true true true false false true false true false true false false true true false false false false false false

Front

AND and OR table

Back