the Product Owner
who is a member of the Scrum Team responsible for defining stories and prioritizing the backlog?
who is Epsilon?
Who made react?
Structured Query Language
what is SQL?
What does YAML stand for?
Yet another Markup Language
creating a releasable product increment
What is a sprint?
How many grace tokens do students get?
None
attaches to the component lifecycle and provides meaningful re-usable behavior to functional components
What is a hook?
Show all the values for employees data with column name preferred_name from the table employees
SELECT name AS preferred_name FROM employees;
the automated processes involved in building and deploying code. by monitoring the status of a pipeline, we can identify issues with the build.
pipelines
requirements
design
implementation
verification
maintenance
What are the 5 stages of waterfall?
Name the Teaching staff in alphabetical ordering
Chris, Ethan, Daniil, Ilir, Kyrel, Lance, Manav, Nivy, Ritvik
before:
const response = response;
console.log(response.data);
after:
const { data } = response;
console.log(data);
What is Object destructuring?
production.stocks
- store_id
- product_id
- quantity
Calculate the total stock by product id in all warehouses
SELECT product_id, SUM(quantity) stock_count
FROM production.stocks
GROUP BY
product_id
ORDER BY
stock_count DESC;
deployment scheme enabling changes to be pushed while having no downtime for users.
what is blue/green deployment?
Individuals and interactions over processes and tools
• Working software over comprehensive documentation • Customer collaboration over contract negotiation
• Responding to change over following a plan
What is the Agile Manifesto?
Name both of the lecture rooms
IB235/ IB335
A component that changes based on user interaction, without re-mounting itself
What is a stateful component?
a parameterized and reusable SQL query which forces the developer to write the SQL command and the user-provided data separately.
what are prepared statements?
what is the difference between a docker container and a virtual machine?
Virtual Machine:
- Has a separate OS
- Requires a hypervisor
Docker Container:
- Runs on the host OS through the engine
- Lightweight
The sequential activities from start to the end of the user story
What is the critical path?
Name 5 other CSC301 team names (not including your own, we know your names, we can tell who you are)
yea you're probably right
something in a React project you should NEVER EVER push
what are node_modules?
patchTODO from tutorial
Document doc = new Document();
doc.put("title", title);
doc.put("description", description);
doc.put("isChecked", isChecked);
this.collection.updateOne(Filters.eq("_id",id),new Document("$set", doc));
?
why use docker?
a consistent interface for services
lightweight, scalable platform
enables you to separate your applications from your infrastructure so you can deliver software quickly