Edited, memorised or added to reading queue

on 01-Jun-2015 (Mon)

Do you want BuboFlash to help you learning these things? Click here to log in or create user.

Flashcard 149631870

Tags
#currying #functions #scala
Question

Curried functions are defined with multiple parameter lists, as follows:

def strcat(s1: String)(s2: String) = s1 + s2

Alternatively, you can also use the following syntax to define a curried function:

[...]
Answer
def strcat(s1: String) = (s2: String) => s1 + s2

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
Curried functions are defined with multiple parameter lists, as follows: def strcat(s1: String)(s2: String) = s1 + s2 Alternatively, you can also use the following syntax to define a curried function: def strcat(s1: String) = (s2: String) => s1 + s2

Original toplevel document

Scala Currying Functions
esume WritingComputer GlossaryWho is Who Scala Currying Functions Advertisements Previous Page Next Page Currying transforms a function that takes multiple parameters into a chain of functions, each taking a single parameter. <span>Curried functions are defined with multiple parameter lists, as follows: def strcat(s1: String)(s2: String) = s1 + s2 Alternatively, you can also use the following syntax to define a curried function: def strcat(s1: String) = (s2: String) => s1 + s2 Following is the syntax to call a curried function: strcat("foo")("bar") You can define more than two parameters on a curried function based on your requirement. Let







Flashcard 150891523

Tags
#cardiovascular #medicine
Question
What is Atrial Fibrillation ?
Answer
A chaotic, irregular atrial rhythm at 300 – 600 bpm

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

pdf

cannot see any pdfs







Flashcard 150892928

Question
multidimensional arrays (also known as [...] because they comprise one or more arrays nested inside another)
Answer
nested arrays

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Open it
multidimensional arrays (also known as nested arrays because they comprise one or more arrays nested inside another)







Flashcard 150892934

Question
how do you loop through multidimensional arrays?
Answer
you can loop through them using nested loops

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill






Flashcard 150892941

Question
sort()
Answer
sorts the values of the array in ascending order (alphabetically for letters, numerically for numbers, letters before numbers)

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill






Flashcard 150892948

Question
rsort()
Answer
sorts the values in descending order.

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill






Flashcard 150892960

Question
sort() and rsort(), but they [...] the association between each element's key and its value
Answer
preserve

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Open it
sort() and rsort(), but they preserve the association between each element's key and its value







Flashcard 150892966

Question
can you use asort() and arsort() on indexed arrays?
Answer
you can use asort() and arsort() on indexed arrays, they're commonly used with associative arrays

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill






Flashcard 150892973

Question
ksort()
Answer
sorts associative array by their key assending

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill






Flashcard 150892983

Question
krsort()
Answer
sorts associative array by their key descending

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill






Flashcard 150892990

Question
array_multisort()
Answer
sorts the array by the first element of each nested array, then by the second element of each nested array, and so on. The order of the elements in the nested array is untouched.

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill






Flashcard 150892997

Question
array_unshift()
Answer
Adds one or more new elements to the start of an array

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill






Flashcard 150893004

Question
array_shift()
Answer
Removes the first element from the start of an array

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill






Flashcard 150893011

Question
array_push()
Answer
Adds one or more new elements to the end of an array

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill






Flashcard 150893018

Question
array_pop()
Answer
Removes the last element from the end of an array

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill






Flashcard 150893025

Question
array_splice()
Answer
Removes element(s) from and/or adds element(s) to any point in an array

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill






Flashcard 150893325

Tags
#english #polish
Question
a short story indented to make people laugh
Answer
joke

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill






#artificial-intelligence #language-processing #logic #pease-celt
The Controlled English to Logic (CELT) system translates a restricted English grammar to expressions in formal logic. The logic statements use terms from a large formal ontology, the Suggested Upper Merged Ontology (SUMO), giving each resulting statement a wealth of deep meaning, similar in kind if not in degree to capturing the meaning a human associates with words in context.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




Flashcard 150893378

Tags
#artificial-intelligence #language-processing #logic #pease-celt
Question
The [...] (CELT) system translates a restricted uuuuuuuu English grammar to expressions in formal logic. The logic statements use terms from a large formal ontology, the Suggested Upper Merged Ontology (SUMO), giving each resulting statement a wealth of deep meaning, similar in kind if not in degree to capturing the meaning a human associates with words in context.
Answer
Controlled English to Logic

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
The Controlled English to Logic (CELT) system translates a restricted English grammar to expressions in formal logic. The logic statements use terms from a large formal ontology, the Suggested Upper Merged Ontology (S

Original toplevel document (pdf)

cannot see any pdfs







Flashcard 150893384

Tags
#artificial-intelligence #language-processing #logic #pease-celt
Question
The Controlled English to Logic (CELT) system translates a restricted English grammar to expressions in [...]. The logic statements use terms from a large formal ontology, the Suggested Upper Merged Ontology (SUMO), giving each resulting statement a wealth of deep meaning, similar in kind if not in degree to capturing the meaning a human associates with words in context.
Answer
formal logic

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
The Controlled English to Logic (CELT) system translates a restricted English grammar to expressions in formal logic. The logic statements use terms from a large formal ontology, the Suggested Upper Merged Ontology (SUMO), giving each resulting statement a wealth of deep meaning, similar in kind if n

Original toplevel document (pdf)

cannot see any pdfs







Flashcard 150893390

Tags
#artificial-intelligence #language-processing #logic #pease-celt
Question
The Controlled English to Logic (CELT) system translates a restricted English grammar to expressions in formal logic. The logic statements use terms from a large formal ontology, the [...] (SUMO), giving each resulting statement a wealth of deep meaning, similar in kind if not in degree to capturing the meaning a human associates with words in context.
Answer
Suggested Upper Merged Ontology

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
The Controlled English to Logic (CELT) system translates a restricted English grammar to expressions in formal logic. The logic statements use terms from a large formal ontology, the Suggested Upper Merged Ontology (SUMO), giving each resulting statement a wealth of deep meaning, similar in kind if not in degree to capturing the meaning a human associates with words in context.</bod

Original toplevel document (pdf)

cannot see any pdfs







Flashcard 150893404

Tags
#artificial-intelligence #language-processing #logic #pease-celt
Question
It has long been a goal in computer science for users to...
Answer
communicate verbally

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

pdf

cannot see any pdfs







#artificial-intelligence #language-processing #logic #pease-celt
We have developed a program which takes a restricted form of natural language and automatically translates it to logic.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




Flashcard 150893417

Tags
#artificial-intelligence #language-processing #logic #pease-celt
Question
We have developed a [...] which takes a restricted form of natural language and automatically translates it to logic.
Answer
program

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
We have developed a program which takes a restricted form of natural language and automatically translates it to logic.

Original toplevel document (pdf)

cannot see any pdfs







Flashcard 150893423

Tags
#artificial-intelligence #language-processing #logic #pease-celt
Question
We have developed a program which takes a [...] form of natural language and automatically translates it to logic.
Answer
restricted

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
We have developed a program which takes a restricted form of natural language and automatically translates it to logic.

Original toplevel document (pdf)

cannot see any pdfs







Flashcard 150893429

Tags
#artificial-intelligence #language-processing #logic #pease-celt
Question
We have developed a program which takes a restricted form of natural language and automatically translates it to [...].
Answer
logic

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Parent (intermediate) annotation

Open it
We have developed a program which takes a restricted form of natural language and automatically translates it to logic.

Original toplevel document (pdf)

cannot see any pdfs