Blinux
Random
Internet Languages
More Random
Just Give up
100
What command allows you to combine the contents of multiple files?
What is cat
100
What is the probability that given roughly 8 people and poorly formulated trivia questions fun will be had?
What is 0%
100
What is the name of a popular javascript library that uses the dollar sign notation as short hand for it’s main object?
What is JQuery
100
______ keyword causes the life of the variable to be from the first time the function is used until the program is ended
What is static
100
How do you determine the number of parameters passed to a script in bash? [$#]
$#
200
At a bash terminal, how would you print something to the screen?
What is echo
200
What is the name of the man that co-founded Microsoft
What is Paul Allen
200
In PHP what type of data structure allows for the access of items using an arbitrary key
What is associative arrays
200
_______ objects can be created from an abstract class
What is zero
200
What language besides C is Objective C related to?
what is smalltalk
300
How would you compile two .cpp files that are dependent on each other?
g++ file_name_1.cpp file_name_2.cpp –c ; g++ file_name_1.o file_name_2.o –o exec
300
Who was the first computer programmer?
What is Ada
300
What is memory that is no longer able to be accessed by the program?
What is memory leak
300
What is the hamming distance of two strings?
Number of different characters between two strings
300
How does two's complement work?
flip bits and add one
400
Which command is used to modify a file’s permissions
What is chmod
400
What is the name of the method for representing negative numbers in a computer?
What is two's complement
400
What is the name for an anonymous function
What is lambda function
400
______type of processors use CISC architectures
What is intel
400
The cult of _____
What is emacs
500
How do you access a list of all of the parameters passed to a bash script?
What is $@
500
According to the popular 90’s series Battle of the Nerds what type of people do not belong in computer science?
What is women
500
______ keyword tells the compiler to copy the code directly where the function is called.
What is inline
500
CISC stands for
What is Complex Instuction Set Computing
500
What is the name for a language that is considered to be able to compute everything that is computable?
What is Turing complete