2 - Data structures Flashcards

1
Q

Introduction to Julia

Name three Julia data structures?

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

Introduction to Julia

Which data structures are ordered sequences?

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

Introduction to Julia

Which data sequences are mutable?

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

Introduction to Julia

How is a tuple created?

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

Introduction to Julia

How is a tuple indexed?

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

Introduction to Julia

Can a tuple be updated?

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

Introduction to Julia

What is a named tuple?

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

Introduction to Julia

What are two ways an element in a named tuple can be retrieved?

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

Introduction to Julia

What is a dictionary?

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

Introduction to Julia

How is a dictionary created?

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

Introduction to Julia

How can an item from a dictionary be retrieved and deleted at the same time?

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

Introduction to Julia

Can dictionaries be indexed?

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

Introduction to Julia

What is an array?

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

Introduction to Julia

How is an array created?

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

Introduction to Julia

Can only one type be storied in a single array?

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

Introduction to Julia

How can elements be pulled from an array?

A
17
Q

Introduction to Julia

What kind of indexing does Julia use?

A
17
Q

Introduction to Julia

How can an array be edited?

A
18
Q

Introduction to Julia

How many dimensions can an array have?

A
19
Q

Introduction to Julia

How can an array of random numbers with four rows and three columns be created?

A