Visual Programming and OOP Programming Study Guide Flashcards
What makes a pascal case variable name unique?
The words in the variable name are all capital.
What makes a camel case variable name unique?
The first word is lower case, the rest are capitalized.
What makes a variable in hungarian notation unique?
The variable starts out with an abbreviation of the type of variable it is, then the rest of the variable is capitalized.
What are the stages of the software development life cycle?
RDDTRM
Requirements, Design, Development, Testing, Release, Maintenance.
What is Agile (Scrum)?
A framework that is used as the new software development life cycle that works around development cycles called Scrums.
What are the Three Tiers of a three-tier architecture?
The Presentation Tier,
Application Tier, and Data Tier.
Name the three types of backups.
Full Backup,
Differential backup,
Incremental Backup
List the six steps of troubleshooting.
IDDTID Investigate Symptoms Identify the Problem Design a Solution Test a Solution Implement a Solution Document the Solution
What does an oval represent in a flow chart?
It represents the beginning and end of a flowchart.
What does a parallelogram represent in a flow chart?
It represents getting an input from the user.
What does a rectangle represent in a flow chart?
It represents an action being carried out.
What does a diamond represent in a flow chart?
It represents a decision.
What does a rectangle with bars represent in a flow chart?
It represents a predefined process, or a method call.
What would this binary be in decimal form?
1100 1011
203
What would this decimal be in binary?
143
1000 1111