Developing Software Flashcards

1
Q

What are variables in code?

A

Containers for storing pieces of data that may change during a program’s execution.

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

What do variables let you do?

A

Associate a unique name with a piece of data.

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

How can variables be declared?

A

var $x = 10;
let name = “john smith”.

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

Describe the Waterfall software development lifecycle.

A

A linear, sequential approach where each phase (e.g., requirements, design, coding, testing) is completed before moving on to the next.

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

What are the pros and cons of the Waterfall lifecycle?

A

Pros: Simple to manage; clear milestones.
Cons: Inflexible; changes are costly and difficult to implement later.

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

Describe the Agile software development lifecycle.

A

Iterative and incremental, focusing on delivering small, functional pieces of software in short cycles (called sprints).

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

What are the pros and cons of the Agile lifecycle?

A

Pros: Flexible; promotes collaboration; delivers value quickly.
Cons: Requires strong communication; can be challenging to manage for large teams.

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

Describe the Spiral software development lifecycle.

A

Combines iterative development with risk management, focusing on early identification and mitigation of risks.

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

What are the pros and cons of the Spiral lifecycle?

A

Pros: Reduces project risks; incorporates flexibility.
Cons: Can be complex and costly.

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

What is iteration in programming?

A

Where a block of code can be run repeatedly until a condition is met.

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

What are two methods of iteration in JavaScript?

A

While loop and for loop.
Do while loop and for in loop.

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

What are functions?

A

Named blocks of code that can take inputs and return output.

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

What do functions let you do?

A

Re-use code, cutting down on code repetition.

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

What is an argument in programming?

A

A piece of data that is passed into a function as input when it is called.

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

How can you define a function?

A

Using the word “function” followed by the name of the function.

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

What is concatenation?

A

The act of joining two strings together in a piece of code.

17
Q

What are code comments?

A

Statements that are ignored by the interpreter used to document code.

18
Q

What is a good practice when writing code in regards to naming?

A

A consistent naming convention where variables and functions follow a defined and predictable format.

19
Q

What is code indentation?

A

Where blocks of code are pushed further to the right using tabs or spaces.