Data-Driven
Programming
JupyterLab
Python
Anything
100

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

What is data?

100

In programming, this is where you store values.

What is a variable?

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 lower case letters.

What is lower?

100

This is the field of study 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

In Python, this is a type of looping statement where you can use the keywords range and in.

What is a for loop?

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

This is the concantenation operator for Python

What is + sign?

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

These are the two elements of objects - characteristics and what they can do.

What are attributes and methods?

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

This is a string function that is used for capitalizing the first letter of the string.

What is capitalize?

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

In function, this is the keyword used so that it will provide an output. This is usually placed at the end of the function.

What is return?

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 returned object when a function does not return anything but you call it inside a print function.

None

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 Programming, Math and Domain?

500

This is the complete code for exchanging values of x and y.

What is

x=x+y

x=x-y

y=x-y

500

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

What is Julia?

500

This is exact code for creating a function named sum that will return the sum of 2 numbers (x and y)

What is 

def sum(x,y):

   return x+y

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)