Week 7 Flashcards

1
Q

What are the attributes of a set?

A
  1. they’re mutable.
  2. they’re unordered.
  3. they’re unique; cannot contain duplicate items.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do you declare a set?

A

With curly brackets.

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

How do you declare an empty set?

A

With normal brackets and the word “set”() because empty curly brackets would be declaring a dictionary.

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

How do you add and remove items from a set?

A

.add() and .remove()

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

What is this? [“bobothy”, “jimrick”, “billiam”]

A

A list.

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

How do you delete an item from a dictionary?

A

using the del() keyword, then the dictionary’s name and then the key of the item you want to remove. Like this:

del item[“thingo”]

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

How do you declare a dictionary?

A

With curly brackets.

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

What is the default mode for opening a file in Python?

A

Read (“r”).

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

What is boundary-value analysis in Python?

A

It is used to identify defects and errors in software by testing input values on the boundaries of the allowable ranges.

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

What is black-box testing?

A

Black box testing involves testing a system with no prior knowledge of its internal workings. A tester provides an input, and observes the output generated by the system under test.

The focus is on what the program does, not how it does it. You test the program by providing various inputs and comparing the outputs with the expected results.

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

What is equivalence partitioning in Python?

A

Equivalence partitioning is a black-box testing technique that divides input domains into classes of data so that test cases can be derived.

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

What are try and except blocks?

A

“Try” contains code that might raise an exception, and the except block tells the program what to do if that happens.

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

What does EAFP (Easier to Ask for Forgiveness than Permission) mean in coding?

A

Where you try to perform an operation and catch any exceptions if they occur.

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

What does LBYL (Look Before You Leap) mean in coding?

A

That you check conditions before attempting an operation, so you avoid triggering exceptions.

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

When it comes to EAFP and LBYL, which is more encouraged in Python?

A

Python encourages the EAFP approach because it focuses on trying to execute and handle errors, rather than pre-checking for every possible issue.

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

Why would you use the raise keyword?

A

Whenever the programmer decides something so exceptional happens that the control flow should be stopped, like for incorrect user input or an unexpected calculation result.

17
Q

What does __init__ stand for?

A

It stands for initialisation or instantiation. It’s needed for classes.