CS103-chapter 3-4 Flashcards

(51 cards)

1
Q

Raises one operand to the power of another

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

Adds two operands

A

+

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

Substracts second operand from the first

A

-

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

Modulus operator and remainder of after an integer division

A

MOD

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

Divides one operand by another and returns a floating points results

A

/

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

Divides one operand by another and returns an integer results

A

\

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

Checks if the values of two operands are equal or not; if yes, then condition becomes true.

A

=

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

Checks if the values of two operands are equal or not; if values are not equal, then condition becomes true.

A

<>

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

Checks if the value of left operand is greater than the value of right operand; if yes, then condition becomes true.

A

>

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

Checks if the value of left operand is less than the value of right operand

A

<

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

Checks if the value of left operand is less than or equal to the value of right operand; if yes, then condition becomes true

A

<=

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

Checks if the value of left operand is greater than or equal to the value of right operand; if yes, then condition becomes true

A

> =

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

It is the logical as well as bitwise AND operator.

A

And

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

It is the logical as well as bitwise OR operator.

A

Or

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

It is the logical as well as bitwise NOT operator.

A

Not

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

It is the logical as well as bitwise Logical Exclusive OR operator.

A

Xor

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

It is the logical as well as bitwise Logical Exclusive OR operator.

A

Xor

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

It is the logical AND operator.

A

AndAlso

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

It is the logical OR operator.

A

OrElse

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

It determines whether an expression is False.

A

IsFalse

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

It determines whether an expression is True.

22
Q

Simple assignment operator, Assigns values from right side operands to left side operand

23
Q

Divide AND assignment operator, It divides left operand with the right operand and assigns the result to left operand (floating point division)

24
Q

Left shift AND assignment operator

25
Add AND assignment operator, It adds right operand to the left operand and assigns the result to left operand
+=
26
Subtract AND assignment operator, It subtracts right operand from the left operand and assigns the result to left operand
-=
27
It Multiply AND assignment operator, multiplies right operand with the left operand and assigns the result to left operand
*=
28
Divide AND assignment operator, It divides left operand with the right operand and assigns the result to left operand (Integer division)
\=
29
Exponentiation and assignment operator. It raises the left operand to the power of the right operand and assigns the result to left operand.
^=
30
Right shift AND assignment operator
>>=
31
Concatenates a String expression to a String variable or property and assigns the result to the variable or property.
&=
32
It require that the programmer specify one or more conditions to be evaluated or tested by the program
Decision making structures
33
consists of a boolean expression followed by one or more statements.
An If...Then statement
34
can be followed by an optional Else statement, which executes when the boolean expression is false.
If...Then...Else statement
35
You can use one If or Else if statement inside another If or Else if statement(s).
nested If statements
36
allows a variable to be tested for equality against a list of values.
Select Case statement
37
You can use one select case statement inside another select case statement(s).
nested Select Case statements
38
is an expression that must evaluate to any of the elementary data type
expression
39
List of expression clauses representing match values for expression.
expressionlist
40
statements following Case that run if the select expression matches any clause in expressionlist.
statements
41
statements following Case Else that run if the select expression does not match any clause in the expressionlist of any of the Case statements.
elsestatements
42
It is used to repeat the same process multiple times until it meets the specified condition in a program.
Loop
43
allows us to execute a statement or group of statements multiple times
loop statement
44
It is used to execute blocks of statements in the program, as long as the condition remains true.
Do While loop
45
It initially checks the defined condition, if the condition becomes true, the while loop's statement is executed.
 while loop 
46
it means that it executes the Do statements, and then it checks the condition.
Do loop
47
It repeats the enclosed block of statements while a Boolean condition is True or until the condition becomes True.
Do loop
48
In VB.NET, when we use one Do While loop inside the body of another Do While loop, it is called __
Nested Do While loop
49
It repeats a group of statements a specified number of times and a loop index counts the number of loop iterations as the loop executes.
For…Next Loop
50
It is the keyword that is present at the beginning of the definition.
For
51
the two important parameters representing the initial and final values of the variable_name.
start and end