programming (2.0) Flashcards

1
Q

How do you assign a variable and a constant ?

pseudocode

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

What are the standard arithmatic operations (6)?

pseudocode

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

what are the relational operators ?

pseudocode

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

what are the boolean operators (3)?

pseudocode

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

What are the 2 types of condition controlled iteration (indefinite) ?

pseudocode

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

what are the count controlled iteration (definite)?

pseudocode

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

what are the selections ?

pseudocode

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

How do you assign , access and assign 1D arrays?

pseudocode

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

How do you assign , access and assign 2D arrays?

pseudocode

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

How do you find the arrays length?

pseudocode

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

How do you assign subroutines and call?

pseudocode

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

How do you find the length of a string?

pseudocode

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

How do you find the position of a string?

pseudocode

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

How do you substring?

pseudocode

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

How do you Concatenate?

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

How do you convert data types?

A
17
Q

How do you convert ascii to code?

pseudocode

A
18
Q

what are the input and output proceedures?

pseudocode

A
19
Q

how do you randomly generate a number ?

pseudocode

A
20
Q

How do you convert a character into an ASCII value ?

A

ord()

print (ord(65))
= 65

21
Q

How do you convert an ACII value into a character?

A

chr()
print(chr(97))

=a