CS103-chapter 3-4 Flashcards

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.

A

IsTrue

22
Q

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

A

=

23
Q

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

A

/=

24
Q

Left shift AND assignment operator

A

«=

25
Q

Add AND assignment operator, It adds right operand to the left operand and assigns the result to left operand

A

+=

26
Q

Subtract AND assignment operator, It subtracts right operand from the left operand and assigns the result to left operand

A

-=

27
Q

It
Multiply AND assignment operator, multiplies right operand with the left operand and assigns the result to left operand

A

*=

28
Q

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

A

=

29
Q

Exponentiation and assignment operator. It raises the left operand to the power of the right operand and assigns the result to left operand.

A

^=

30
Q

Right shift AND assignment operator

A

> > =

31
Q

Concatenates a String expression to a String variable or property and assigns the result to the variable or property.

A

&=

32
Q

It require that the programmer specify one or more conditions to be evaluated or tested by the program

A

Decision making structures

33
Q

consists of a boolean expression followed by one or more statements.

A

An If…Then statement

34
Q

can be followed by an optional Else statement, which executes when the boolean expression is false.

A

If…Then…Else statement

35
Q

You can use one If or Else if statement inside another If or Else if statement(s).

A

nested If statements

36
Q

allows a variable to be tested for equality against a list of values.

A

Select Case statement

37
Q

You can use one select case statement inside another select case statement(s).

A

nested Select Case statements

38
Q

is an expression that must evaluate to any of the elementary data type

A

expression

39
Q

List of expression clauses representing match values for expression.

A

expressionlist

40
Q

statements following Case that run if the select expression matches any clause in expressionlist.

A

statements

41
Q

statements following Case Else that run if the select expression does not match any clause in the expressionlist of any of the Case statements.

A

elsestatements

42
Q

Itis used to repeat the same process multiple times until it meets the specified condition in a program.

A

Loop

43
Q

allows us to execute a statement or group of statements multiple times

A

loop statement

44
Q

It is used to execute blocks of statements in the program, as long as the condition remains true.

A

Do While loop

45
Q

Itinitially checksthe defined condition, if the condition becomes true, the while loop’s statement is executed.

A

whileloop

46
Q

it means that it executes the Do statements, and then it checks the condition.

A

Do loop

47
Q

It repeats the enclosed block of statements while a Boolean condition is True or until the condition becomes True.

A

Do loop

48
Q

In VB.NET, when we use one Do While loop inside the body of another Do While loop, it is called __

A

Nested Do While loop

49
Q

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.

A

For…Next Loop

50
Q

It is the keyword that is present at the beginning of the definition.

A

For

51
Q

the two important parameters representing the initial and final values of thevariable_name.

A

startandend