e-Learning
Visualization
Python
KYC
Riddles
100

This should not be left in your car.

What is a laptop?

100

The chart to use when you want to show the relationship between two variables.

What is a scatterplot?

100

The method to convert a string to all uppercase.

What is upper?

100

Joyce rates this animal 5/10.

What is a cat?

100

Adam can mow a field in 1 hour, Bob can mow 2 fields in the same time. How long does it take them to mow a field together?

20 minutes.

200

Whether or not it is appropriate to come to work in a Mickey Mouse costume.

What is no?

200

The chart to use when you want to show the distribution of a single variable with few data points.

What is a histogram?

200

The method used to add an element to the end of a list.

What is append?

200

Sravanthi's last name.

What is Budamagunta?

200

Suppose there are four cards on the table, showing:
A, D, 3, 6. Every card has a letter on one side and a number on the other. 

Rule: A card with a vowel always has an even number on the other side.

Which cards to turn over to prove the rule true?

A and 3.

300

The maximum value of a gift you are allowed to accept.

What is €100?

300

The chart to use when you want to show a non-cyclical comparison of many periods over time.

What is a line chart?

300

What lists are and tuples are not.

What is mutable?

300

Jos's daughter's name.

What is Daphne?

300

What is the square root of 12345678987654321?

111,111,111.

400

The person to telephone on the day you become ill.

Who is your immediate superior?

400

The chart to use when you want to show the distribution of two variables.

What is a scatterplot?

400

The code inside one block is attempted, and if an error occurs, the code inside the other block is executed.

What is a try-except block?

400

Ingeborg's mother lives in this European capital city.

What is Paris?

400

You have 50 red and 50 blue marbles and 2 identical jars. A marble will be selected at random from a random jar. How do you apportion the marbles in the jars to maximize the chance of a red marble being selected?

One red marble in one jar, the rest in the other.

500

Deloitte's core values (name one).

What are:

Lead the way.

Serve with integrity.

Take care of each other.

Foster inclusion.

Collaborate for measurable impact.

500

The chart to use when you want to show a static composition representing a simple share of the total.

What is a pie chart?

500

"Hello World"[::-1]

How to reverse the string "Hello World"?

500

Carsten's middle name.

What is Carsten?

500

How can you use a biased coin to make an unbiased decision? (P[H] =/= P[T])

How to ensure that decisions made with the coin have a 50:50 chance?

Throw twice, P[HT] = P[TH]. If both are heads/tails, start over.