MySQL
Agile Manifesto
Programming Principles
SDLC
Implementation & Development
100

This statement starts almost every SQL Query

What is SELECT?

100

This role is not the boss, but acts more like a coach in that they remove obsticles from the group.

What is the scrum master?

100

This programming principle states that you should keep a comprehensive written form for how code works.

What is "document your code"?

100

How many steps are in the SDLC?

7

100

This website hosts repositories for users to reference. 

What is GitHub?

200

This character allows you to choose all columns from a database

What is *?

200

This way of doing agile includes sprints, stand-ups, and retrospectives.

What is scrum?
200

This programming design principle states how designs should be created such that chunks can be swapped in and out as needed.

What is modularity?

200

This SDLC phase is the first phase, where we ask "What are we even trying to accomplish?"

What is planning?
200

This acronym is equivalent to Ocram's Razor, where the easiest solution is the best.

What is KISS (Keep it simple stupid)?

300

This is part of every table, is unique for each row, cannot be null, and cannot be duplicated

What is the primary key?

300

This is a period of about 2 weeks where one specific thing is achieved by the group.

What is a sprint?

300

What does CRUD stand for?

Create, read, update, delete.

300

This architecture pattern involves many smaller apps communicating with each other to create the final product.

What are microservices?

300

This Git command takes changes from the GitHub repo and downloads them to your local repo.

What is pull?

400

This statement combines two tables together, table A and table B, so that all items from table A are showing, but only items that match in table B will show.

What is LEFT JOIN?

400

This principle is considered the agile value that is more important than "following the original plan".

What is responding to change?

400

This programming phase is when code is cleaned up without any changes to functionality.

What is refactoring?

400

This type of testing involves ensuring two functions work properly when implemented together.

What is integration testing?

400

What are the 4 pillars of OOP?

Inheritance, polymorphism, encapsulation, and abstraction.