Data-Driven
Data Structures
JupyterLab
Python
Anything
100

This is considered as the new oil in an organization which is more important that money.

What is data?

100

This is a mutable data structure in Python that works like an array of objects and enclosed by brackets.

What is list?

100

Aside from R Programming, this is one of the more popular programming language used for data analytics.

What is Python?
100

This is the function used for making all the letters as capital letters.

What is upper?

100

This is the field that provides value added insights from Data

What is Data Science?

200

This is one of the programs of SM where customers earn points by shopping.

What is SM Advantage Card?

200

This is a data structure that is immutable and enclosed by parenthesis

What is tuple?

200

This is a function used for displaying texts in Python. This is the first function we used for showing "Hello World".

What is print?

200

BONUS

+ 200 points

200

This is a small subprogram that is created to avoid duplicity of codes and enforce reusability

What is function

300

These are facts collected together which is later analyzed to bring value-adding insights. These may be stored in a log book, Excel spreadsheet or computer system.

What is data?

300

This is a data structure that is used to store key-value pairs.

What is dictionary?

300

This is a web-based interactive development environment for creating notebooks in Python. This is part also of Anaconda distribution.

What is JupyterLab?

300

LOSE TURN

Sorry!

300

This is the keyword used for creating a function

What is def?

400

This is the percentage of world's data that is generated for the last 2 years as of 2019.

What is 90%?

400

This is the function in Python used to return the size of a list.

What is len?

400

This is a feature in JupyterLab notebook that allows you to include texts as documentation, aside from the actual Python code.

What is markdown?

400

This is the concatenation operator in Python.

What is +?

400

This is a software package used in our class where JupyterLab, Python and other tools are included.

What is Anaconda?

500

These are the 3 key areas of Data Science in terms of skillset.

What are Coding, Stats and Domain?

500

This is a feature in Python that allows you to create a list using loop.

What is list comprehension?

500

Jupyter stands for Python, R and this other programming language.

What is Julia?

500

This is a string function that is used for omitting leading and trailing characters in Python.

What is strip?

500

This the exact code for displaying numbers 1 to 5 using a for loop in Python.

What is 

for x in range(1,6):
     print(x)