Visual Programming and OOP Programming Study Guide Flashcards

1
Q

What makes a pascal case variable name unique?

A

The words in the variable name are all capital.

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

What makes a camel case variable name unique?

A

The first word is lower case, the rest are capitalized.

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

What makes a variable in hungarian notation unique?

A

The variable starts out with an abbreviation of the type of variable it is, then the rest of the variable is capitalized.

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

What are the stages of the software development life cycle?

A

RDDTRM

Requirements, Design, Development, Testing, Release, Maintenance.

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

What is Agile (Scrum)?

A

A framework that is used as the new software development life cycle that works around development cycles called Scrums.

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

What are the Three Tiers of a three-tier architecture?

A

The Presentation Tier,

Application Tier, and Data Tier.

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

Name the three types of backups.

A

Full Backup,
Differential backup,
Incremental Backup

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

List the six steps of troubleshooting.

A
IDDTID
Investigate Symptoms
Identify the Problem
Design a Solution
Test a Solution
Implement a Solution
Document the Solution
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What does an oval represent in a flow chart?

A

It represents the beginning and end of a flowchart.

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

What does a parallelogram represent in a flow chart?

A

It represents getting an input from the user.

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

What does a rectangle represent in a flow chart?

A

It represents an action being carried out.

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

What does a diamond represent in a flow chart?

A

It represents a decision.

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

What does a rectangle with bars represent in a flow chart?

A

It represents a predefined process, or a method call.

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

What would this binary be in decimal form?

1100 1011

A

203

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

What would this decimal be in binary?

143

A

1000 1111

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

What would this binary be in hexadecimal form?

1100 1100

A

0xCC

17
Q

What would this decimal be in hexadecimal form?

121

A

0x79