Python
Statistics
Linux Commands
All about Rice
All about us!
100

What is printed by the following code?

x = 5
y = 3
print(x + y)

8

100

The data set is: 3, 7, 8, 12, 15, 18, 20. Find the median.


12

100

What is the command to make a directory?

mkdir

100

What animal is most commonly seen around campus?

squirrels

100

Who doesn't have brown eyes?

Nikita

200

What is the output of this code?

for i in range(3):
    print(i)


0
1
2

200

The data set is: 5, 8, 10, 12, 15. Find the mean

10

200
What is the command to make a file?

touch

200

What is Rice's mascot?

Sammy the Owl!

200

Who teaches on campus during the school year?

Maria

300

What is the output of this code?

def double(num):
    return num * 2

print(double(6))


12

300

The data set is: 2, 3, 4, 5, 30. Which measure of center is larger, the mean or the median?

mean

300

What is the name of the default text editor

nano

300

Who was Rice named after?

William Marsh Rice

300

Who is an only child?

Lizzie

400

How many total times is "Hi" printed?

for i in range(3):
    for j in range(2):
        print("Hi")


6

400

The data set is: 2, 4, 6, 8, 10, 12, 14, 16. Find the interquartile range.

8

400

What command is used to find the IP address of a website

ping

400

What is Rice's biggest tradition? Hint: it is a race

Beer Bike

400

What winter sport did Nikita play?

Figure Skater
500

What is printed?

a = [1, 2, 3]
b = a
b.append(4)

print(a)


[1, 2, 3, 4]

500

The data set is: 5, 7, 8, 9, 10, 12, 15, 30. Using the 1.5×IQR rule, determine whether 30 is an outlier.

Yes 30 is an outlier 

500

What's the command that lists every single file in the current directory

ls

500
What was the first residential college? 

Baker College

500

What is Filippo's secret talent?

Singing/Opera

M
e
n
u