This is considered as the new oil in an organization which is more important that money.
What is data?
This is a mutable data structure in Python that works like an array of objects and enclosed by brackets.
What is list?
Aside from R Programming, this is one of the more popular programming language used for data analytics.
This is the function used for making all the letters as capital letters.
What is upper?
This is the field that provides value added insights from Data
What is Data Science?
This is one of the programs of SM where customers earn points by shopping.
What is SM Advantage Card?
This is a data structure that is immutable and enclosed by parenthesis
What is tuple?
This is a function used for displaying texts in Python. This is the first function we used for showing "Hello World".
What is print?
BONUS
+ 200 points
This is a small subprogram that is created to avoid duplicity of codes and enforce reusability
What is function
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?
This is a data structure that is used to store key-value pairs.
What is dictionary?
This is a web-based interactive development environment for creating notebooks in Python. This is part also of Anaconda distribution.
What is JupyterLab?
LOSE TURN
Sorry!
This is the keyword used for creating a function
What is def?
This is the percentage of world's data that is generated for the last 2 years as of 2019.
What is 90%?
This is the function in Python used to return the size of a list.
What is len?
This is a feature in JupyterLab notebook that allows you to include texts as documentation, aside from the actual Python code.
What is markdown?
This is the concatenation operator in Python.
What is +?
This is a software package used in our class where JupyterLab, Python and other tools are included.
What is Anaconda?
These are the 3 key areas of Data Science in terms of skillset.
What are Coding, Stats and Domain?
This is a feature in Python that allows you to create a list using loop.
What is list comprehension?
Jupyter stands for Python, R and this other programming language.
What is Julia?
This is a string function that is used for omitting leading and trailing characters in Python.
What is strip?
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)