Intro to Erlang (L19) Flashcards
What is Erlang known for?
Erlang is the king / queen of concurrent languages.
Which concurrency framework is based directly upon the Erlang language?
Java’s Akka concurrency framework.
Like Clojure, Erlang is a direct mapping of the LISP language.
False.
Erlang runs on which virtual machine?
BEAM.
Name a language that run’s on Erlang’s virtual machine.
Elixir.
What’s the name of Erlang’s interactive command line?
Eshell.
What is the suffix of a compiled Erlang file?
.beam
What command is used to compile Erlang code?
erlc
What command is used to run compiled Erlang code?
erl
What is the suffix of a Erlang source file?
.erl
Are there type declarations in Erlang?
No - types are inferred from context.
What are Erlang’s simple types?
Integers, floating point values, strings.
What is the max size of Erlang’s integers?
Erlang’s integers are of arbitrary length.
Do Erlang strings use single or double quotes?
Double.
Is there a boolean type in Erlang?
No, but there are true/false constants that are returned by conditional checks.
Erlang uses prefix notation for its operations.
False.
Erlang variables can only be reassigned once.
False, they can only be assigned once - attempts to reassign generate errors.
Erlang variables must begin with what?
A capital letter.
When are commas used in Erlang?
Commas are used between function arguments and between expressions in a function body.
When are semi colons used in Erlang?
Semi-colons are used between alternate forms of a function.
When are periods used in Erlang?
A period (plus a whitespace char like a newline) is used to terminate a complete expression.
What are Erlang’s 4 composite data structures?
Tuple, list, record, map.
Erlang tuples are analogous to what data type in C?
structs
Define a tuple with 2 elements.
{1, 2}
In practice, what is the first element of an Erlang tuple?
An atom.
What are atoms?
Constant labels/strings.
What is the syntax restriction of Erlang atoms?
They must begin with a lowercase character.
What character is used for comments in Erlang?
%
Use pattern matching to save (only) the pig’s age to another variable.
P = {pig, “Jim”, 43}.
{pig, _ , Age} = P.
Define an Erlang list of two values.
List1 = [1, 2].
Can types be mixed in Erlang lists?
Yes.
What is stored in List2?
List1 = [1, 2].
List2 = [“x” | List1].
[“x”, 1, 2]
What do X and Y equal to?
List1 = [1, 2, 3].
[ X | Y ] = List1.
X = 1 (head), Y = [2, 3] (tail).
What function produces List3 from List1 and List2?
List1 = [1, 2, 3].
List2 = [4, 5, 6].
List3 = [1, 2, 3, 4, 5, 6].
List3= lists:append(List1, List2).
What function deletes all ocurences of an element from a list?
Result = lists:delete(Element, List).
What function sorts an Erlang list?
SortedList = lists:sort(UnsortedList).
Does Erlang’s sort function sort in increasing or decreasing order by default?
Increasing.
What function splits an Erlang list into two lists at a specified index?
{Prefix, Suffix} = lists:split(Position, List).
What function reverse an Erlang list?
Reversed = lists:reverse(List).
How do you define a record in Erlang?
-record(name, {
key1 = val1,
key2 = val2,
}).
Record keys and values may be of any type in Erlang.
False - keys must be atoms.
The name of a record must be an atom.
True.
In the below record definition, val1 and val2 are necessarily the values of key1 & key2 once this record is “instantiated”:
-record(name, {
key1 = val1,
key2 = val2,
}).
False, val1 & val2 are default values for key1 & key2, respectively.
Must a key be given a default value in an Erlang record definition?
No.
What is the value of R1’s age?
-record(person, {name = unknown, age}).
R1 = #person{}.
Age is undefined.
Create a record wherein age is defined explicitily, using the definition below.
-record(person, {name = unknown, age}).
R1 = #person{age = 99}.
Access the “age” field of a “person” record stored in variable R1.
Age = R1#person.age.
Where are record declarations generally declared?
In separate file(s), and then included in the current files.
Included files in Erlang are given what extension?
.hrl
Write the code to import declarations from an external file called “person.hrl”.
-include(“person.hrl”).
Define the same map using two different syntaxes.
M1 = #{man => “joe”, women => “sue”}.
M2 = #{man := “joe”, women := “sue”}.