Section 1

Preview this deck

$

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

6 years ago

Date created

Mar 1, 2020

Cards (111)

Section 1

(50 cards)

$

Front

To refer to a single element of an array or hash in Perl, you use this symbol

Back

March 1993

Front

First implementation of Sol language

Back

Perl is loosely typed

Front

Perl is loosely typed

Back

until

Front

the explicit terminator for repeat (LUA)

Back

Break

Front

to finish a loop (LUA)

Back

Larry Wall

Front

He developed Perl

Back

lua

Front

Is a lightweight, multi-paradigm programming language designed for embedded systems and clients

Back

TecGraf Roberto Waldemar Celes Luiz Henrique

Front

Creators of Lua

Back

Perl 6

Front

the version of Perl which eventually evolved into a separate language

Back

nil

Front

used to differentiate the value from having some data or no data

Back

5.3

Front

latest version of Lua

Back

Perl

Front

a general-purpose Unix scripting language

Back

Void

Front

this context not only doesn't what the return value is, it doesn't even want a return value (PERL)

Back

Pontific Catholic University, Brazil

Front

The university where Lua was created

Back

io.read()

Front

read a line from the standard input (LUA)

Back

DEL and Sol was combined to a single and powerful language

Front

DEL and Sol was combined to a single and powerful language

Back

thread

Front

represents independent thread of execution

Back

.lua

Front

file extension of lua scripts

Back

Swiss Army chainsaw of scripting languages

Front

because of Perl's flexibility and power along with its ugliness, it was given this nickname

Back

Standard input (stdin)

Front

The library initializes the current input file in Lua

Back

userdata

Front

represents arbitrary C data in Lua

Back

break & return

Front

these statements allow us to jump out from an inner block. (LUA)

Back

Practical Extraction and Reporting Language

Front

PERL backronym meaning

Back

Hashes

Front

they are unordered sets of key/value pairs preceded by the % sign (PERL)

Back

ANSI C

Front

Lua was written in this language

Back

Array

Front

they are ordered lists of scalars preceded by the @ sign (PERL)

Back

Lua Has been used in various famous softwares and games

Front

Lua Has been used in various famous softwares and games

Back

. (period)

Front

concatenation operator in Perl

Back

moon

Front

meaning of Lua in Portuguese

Back

Scalar

Front

they are simple variables preceded by a dollar sign in Perl; a single unit of data (PERL)

Back

\l

Front

Forces next character to lower case (PERL)

Back

In Lua, OOP concepts can be faked using tables

Front

In Lua, OOP concepts can be faked using tables

Back

1993

Front

The year Lua was created

Back

return

Front

simply finishes a function (LUA)

Back

Io.write() & print()

Front

print a line from the standard input (LUA)

Back

\L

Front

forces all following characters to lower case (PERL)

Back

183kb

Front

the file size of Lua's interpreter

Back

\u

Front

Forces next character to uppercase (PERL)

Back

function

Front

keyword in declaring a function in Lua

Back

\U

Front

Forces all following characters to uppercase (PERL)

Back

table

Front

represent ordinary arrays, symbol tables, etc... EXCEPT nil

Back

Angry Birds Dota 2 Farcry 5 HON

Front

Lua scripted video games

Back

Functional Programming

Front

Views program with a mathematical approach and avoids mutable data

Back

duct tape

Front

Another nickname of Perl that holds the internet together

Back

Scripting Language

Front

Interpreted not compiled which makes it easier to debug

Back

\E

Front

the explicit terminator for \u, \U, \l, \L (PERL)

Back

Standard output (stdout)

Front

The library initializes the current output file in Lua

Back

Lua is cross-platform

Front

Lua is cross-platform

Back

end

Front

the explicit terminator for if, while, and for (LUA)

Back

push pop shift unshift

Front

adding and removing elements in array (PERL)

Back

Section 2

(50 cards)

Bourne shell

Front

the default shell for Version 7 Unix

Back

print()

Front

the simplest sort of print/outputting data (PERL)

Back

let

Front

keyword to declare constants in Swift

Back

STDOUT

Front

Perl uses this connection to write/print data

Back

January 10, 1988

Front

date of development for Bash

Back

last

Front

this statement terminates the loop (PERL)

Back

printf()

Front

this output function gives you a lot more control over your output (PERL)

Back

December 3, 2015

Front

the date when Swift was made open source

Back

tuple

Front

this is used to group multiple values in single compound value

Back

2015

Front

Swift won FIRST place for Most Loved Programming Language during this year

Back

var

Front

keyword to declare variables in Swift

Back

ver 2.2

Front

the version of Swift when it was made open-source

Back

Ted Kremenek

Front

Chris Lattner's replacement after leaving Apple

Back

goto LABEL

Front

The goto LABEL form jumps to the statement labeled with LABEL and resumes execution from there (PERL)

Back

chop()

Front

it removes the last character from a string (PERL)

Back

Worldwide Developers Conference

Front

WWDC

Back

Swift 4 is a type-safe language

Front

Swift 4 is a type-safe language

Back

chomp()

Front

it removes the suffix of the string only if it matches the input record separator $/ which is by default the newline character(
) (PERL)

Back

Semicolon is optional and not-required (Swift)

Front

Semi-colon is optional and not-required (Swift)

Back

July 2010

Front

date when development for Swift began

Back

Chris Lattner

Front

developer of Swift

Back

continue

Front

a block of code rarely used in looping structures (PERL)

Back

Interpolative

Front

this context only happens inside quotes, or things that work like quotes (PERL)

Back

next

Front

this statement starts the next iteration of the loop (PERL)

Back

local

Front

local variables can be created using this keyword (BASH)

Back

optional

Front

this represents a variable that can hold a value or no value (SWIFT)

Back

Bourne shell (sh)

Front

is a shell, or command-line interpreter, for computer operating systems.

Back

Type inference

Front

enables a compiler to deduce the type of a particular expression automatically when it compiles your code, simply by examining the values you provide.

Back

Wordpress Firefox youtube Soundcloud

Front

Apps written in Swift

Back

2016

Front

Swift won SECOND place for Most Loved Programming Language during this year

Back

Associative array

Front

a new kind of array introduced to Bash 4.0

Back

Stéphane Chazelas

Front

She discovered the Shellshock/Bashdoor security hole (BASH)

Back

There cannot be a space before and after the equal sign (BASH)

Front

There cannot be a space before and after the equal sign (BASH)

Back

goto EXPR

Front

The goto EXPR form is just a generalization of goto LABEL (PERL)

Back

Constant and variable names can contain almost any character, including Unicode characters (SWIFT)

Front

Constant and variable names can contain almost any character, including Unicode characters (SWIFT)

Back

Bash

Front

is a Unix shell and command language written by Brian Fox for the GNU Project as a free software

Back

for

Front

this looping structure can act as a 3-part C-style for loop (PERL)

Back

2017

Front

Swift won 11th place for Most Loved Programming Language during this year

Back

redo

Front

this command restarts the loop block without evaluating the conditional again (PERL)

Back

$ (dollar)

Front

you use this symbol to retrieve the value from a variable (BASH)

Back

<STDIN> / <>

Front

taking input from the keyboard (PERL)

Back

Swift

Front

is a general-purpose, multi paradigm, compiled programming language developed by Apple Inc. for iOS, macOS, watchOS, tvOS, and Linux

Back

type annotation

Front

to be clear about the kind of values the constant or variable can store.

Back

goto &NAME

Front

It substitutes a call to the named subroutine for the currently running subroutine (PERL)

Back

do, done

Front

the keywords to start and end a block of loop (BASH)

Back

Shellshock

Front

A security hole in Bash dating from version 1.03 (August 1989), was discovered in early September 2014 and quickly led to a range of attacks across the Internet.

Back

Bashdoor

Front

Shellshock is also known as ___

Back

Ctrl + C

Front

hotkey for terminating infinite loops (PERL)

Back

By convention, types in Swift are named using camel case notation

Front

By convention, types in Swift are named using camel case notation

Back

Brian Fox

Front

developer of Bash

Back

Section 3

(11 cards)

continue

Front

statement tells a loop to stop what it is doing and start again at the beginning of the next iteration through the loop. (SWIFT)

Back

break

Front

ends execution of an entire control flow statement immediately. (SWIFT)

Back

terminator

Front

is the string that is printed after all items has been printed. (SWIFT)

Back

switch

Front

this control structure is considerably more powerful than its counterpart in many C-like languages. (SWIFT)

Back

print

Front

keyword for outputting values in Swift

Back

guard

Front

is used to transfer program control out of a scope if one or more conditions aren't met. (SWIFT)

Back

Control transfer

Front

these statements change the order in which your code is executed, by transferring control from one piece of code to another (SWIFT)

Back

repeat-while

Front

this evaluates its condition at the end of each pass through the loop (SWIFT)

Back

Fallthrough

Front

causes code execution to move directly to the statements inside the next case (SWIFT)

Back

while loop

Front

this evaluates its condition at the start of each pass through the loop (SWIFT)

Back

terminator: ""

Front

add this keyword at the end of a print command to print without a line break (SWIFT)

Back