This is considered as the new oil in an organization which is more important that money.
What is data?
In programming, this is where you store values.
What is a variable?
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 lower case letters.
What is lower?
This is the field of study 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?
In Python, this is a type of looping statement where you can use the keywords range and in.
What is a for loop?
This is a function used for displaying texts in Python. This is the first function we used for showing "Hello World".
What is print?
This is the concantenation operator for Python
What is + sign?
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?
These are the two elements of objects - characteristics and what they can do.
What are attributes and methods?
This is a web-based interactive development environment for creating notebooks in Python. This is part also of Anaconda distribution.
What is JupyterLab?
This is a string function that is used for capitalizing the first letter of the string.
What is capitalize?
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%?
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?
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 returned object when a function does not return anything but you call it inside a print function.
None
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 Programming, Math and Domain?
This is the complete code for exchanging values of x and y.
What is
x=x+y
x=x-y
y=x-y
Jupyter stands for Python, R and this other programming language.
What is Julia?
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
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)