1.0 Software Development and Design Flashcards
1.5 Explain the benefits of organizing code into: functions
This help with the D.R.Y principle (Don’t Repeat Yourself). Functions are actions that you can call (use the function with provided inputs). Instead of writing 10 lines of code each time to do the same thing(ex: filter/sort/change) on 5 objects you can just make a function and then call it in one line of code.
1.5 Explain the benefits of organizing code into: classes/objects
These help with the D.R.Y principle (Don’t Repeat Yourself). Example: A class could be a car, meaning you define the make, model, color, type, etc…
an object would be a specific instance of a class. example: a White Toyota Camry
1.5 Explain the benefits of organizing code into: modules
This help with the D.R.Y principle (Don’t Repeat Yourself). A module is a library that you can import, allowing use of prebuilt functions otherwise unavailabe.
1.6 Identify the advantages of common design patterns: Observer
It allows observers (objects or subscribers) to receive events when there are changes to a object that is being observed.
The benefit is that observers get real time data from the subject when any change happens. This is going to provide better performance than polling. A pattern where dependent objects are updated or notified by one or more subject objects.
1.6 Identify the advantages of common design patterns: MVC
Model – The model is the data structure of the application. It gets input from the controller.
View – The visual representation of the data. It gets input from the model.
Controller – Takes user input and changes it to the format for the model.
The benefit is that the components can be built in parallel and the components to not need to be aware of the implementation within the other components.
1.7 Explain the advantages of version control
Maintains a history of changes for reference or rollback.
1.8a Utilize common version control operations with Git: Add/remove
Add/Remove a file to/from staging Git for version controlling.
1.8c Utilize common version control operations with Git: Commit
This will take all staged files and snapshot them into Git for version control. This will not update non-staged(added) files.
1.8g Utilize common version control operations with Git: diff
This command will show any changes that have been made since the last commit. It will list every file that has been changed and display what have been modified inside said files.
1.8a Utilize common version control operations with Git: clone
This command creates a local copy of a remote directory. Additionally it synchronizes it with the remote repository. Allowing for push/pull.
1.8d Utilize common version control operations with Git: push/pull
Push: Forces your changes to a repository to the synchronized remote server.
Pull: Updates your repository from a synchronized remote server.
1.8e Utilize common version control operations with Git: branch
Branches are parralel working enviroments to your master branch. Once you make a second branch everything you do on that branch will not affect the original one, and visa versa. You can still work on both, but the will not affect each other.
1.8f Utilize common version control operations with Git: Merge
Merging combines two branches
1. recieving branch: where the changes are being pulled into
2. target branch: where the changes are being pulled from.
1.8f Utilize common version control operations with Git: handling conflicts
Conflicts occur when two merging branches both have changes to the same code in the same file and need to figure out which ones to keep. The way to fix this is after you use the merge command an error will appear and give you the option to choose which you would like to keep, choose one and the conflict is resolved.
1.1 Compare data formats: YAML
YAML is highly human readable, compact and is ideal for configurations. It uses dashes (-) and seperate lines.
1.1 Compare data formats: XML
XML is best used for legacy systems and SOAP (API web based protocol). It looks similar to html, using <>, </>
1.1 Compare data formats: JSON
JSON is native to JavaScript making it the defacto language for webpages. It uses brackes [], {}
1.2 What does load() do?
This allows you to import native json and convert it to a Python dictionary from a file
1.2 What does loads() do?
This imports JSON data from a string for parsing and manipulating within your program.
1.2 What does dump() do?
This is used to write JSON data from Python objects to a file.
1.2 Describe parsing of common data format (XML, JSON, and YAML) to Python data
structures: XML (lxml)
- from lxml import etree (optionally as ET)
- with open(xml_file, ‘r’) as xml:
open_file = etree.parse(xml.read())
1.2 What does dumps() do?
This allows you to take JSON dictionary data and convert it into a serialized string for parsing and manipulating within Python.
1.2 Describe parsing of common data format (XML, JSON, and YAML) to Python data
structures: XML (xmltodict)
- import xmltodict
- with open(xml_file, ‘r’) as xml:
open_file = xmltodict.parse(xml.read())
1.2: “yaml.” what takes yaml and converts it to python
yml.load
1.2: “yaml.” what takes python and converts it to yaml
yml.dump
1.2 When parsing a JSON file what does an Array translate into?
List
1.4 Compare software development methods (agile, lean, and waterfall): Waterfall
Do the four basic steps in order: Requirements, Design, Implementation, and Verification then at the end release and get customer feed back. No additional steps. Example: develop a product over a year and release it to get feedback.
1.4 Compare software development methods (agile, lean, and waterfall): Lean
This method heavily focuses on cutting out excess in the product such as: Unpopular features, partially done work, extra tasks, etc…
1.4 Compare software development methods (agile, lean, and waterfall): Agile
Method where teams are broken up to smaller units called scrums. Scrums develop smaller features on shorter timelines called sprints. The team has short meetings every day.
1.3 Describe the concepts of test-driven development
TDD is centered around the idea of constantly testing as your are developing the application.
1. Create a new test: This test should capture a requirement of the application code we are going to write.
2. Run tests: If there are any failures, correct the tests. Failures here are acceptable.
3. Write code to pass the new test: Add nothing more to the application code except what is required to pass the test.
4. Run tests: If any tests fail, fix the application code and re-run tests.
5. Refactor and improve code: Re-run tests each time the application code is improved and fix the code for each failure.
1.3: What is Pythons built-in test module?
unittest
1.3: functional test
Validates software against its original design to verify that it operates as expected.
1.3: integration test
Tests a combination of individual units of software as a group.
1.3: unit test
A test that ensures an individual piece of code works as its supposed to.
1.2 When parsing a JSON file what does an Object translate into?
Dictionary