5 Working with text Flashcards

1
Q

Julia as a Second Language

What function can you use to color your text in REPL?

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

Julia as a Second Language

What function can you use to format the spacing on the left and right of the text in REPL?

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

Julia as a Second Language

What three functions are good for writing text to files?

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

Julia as a Second Language

What are three functions good for inputting and processing text?

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

Julia as a Second Language

How are print() and println() related?

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 seven escape sequences to write common control characters used in Unix terminals?

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

Julia as a Second Language

How does printsyled() work?

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 symbols and how do you create and write one?

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

Julia as a Second Language

How is string() simular to print()?

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

Julia as a Second Language

What happens to a number or boolean when passed to print() as an argument?

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

Julia as a Second Language

How do you align text at the beginning and ending of a line?

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

Julia as a Second Language

How can you add a separator to a line of text?

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

Julia as a Second Language

What are the two way of creating a separator for text using its hexadecimal value?

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

Julia as a Second Language

How do you repeat a character of text?

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

Julia as a Second Language

How can you align decimal numbers when printing them as text?

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

Julia as a Second Language

When writing println(“hello”), what is the default argument coming before the “hello”?

17
Q

Julia as a Second Language

Using println() how do you print to a file?

18
Q

Julia as a Second Language

How can you open a file and read the data?

19
Q

Julia as a Second Language

How can you read data typed into the terminal?