7 Understanding Types Flashcards

1
Q

Julia as a Second Language

All objects in Julia have a particular ________ ?

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

Julia as a Second Language

What does a type do?

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

Julia as a Second Language

What function can be used to indentify if a type is a primitive type?

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

Julia as a Second Language

What is a primitive type?

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

Julia as a Second Language

What is a composite type?

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

Julia as a Second Language

What are composite types made of?

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

Julia as a Second Language

What is the keyword for creating a composite type?

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

Julia as a Second Language

What are the objects made from a type called?

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

Julia as a Second Language

What is it called when you specify a type for specific field?

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

Julia as a Second Language

What symbol is used to create a type annotation?

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

Julia as a Second Language

Why should you annotate types in a Struct?

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

Julia as a Second Language

What two functions are good for exploring a functions’ type hierarchy?

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

Julia as a Second Language

What does subtype() do?

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

Julia as a Second Language

What does supertype() do?

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

Julia as a Second Language

What is the supertype of all types?

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

Julia as a Second Language

What can you do with a first-class object?

17
Q

Julia as a Second Language

How can you check programmatically if a type is a subtype of another type?