BCIS 5110 Assignment 1 - AshaKilaru - Jupyter Notebook
BCIS 5110 Assignment 1 - AshaKilaru - Jupyter Notebook
http://localhost:8889/notebooks/BCIS%205110%20Assignment%201_AshaKilaru.ipynb Page 1 of 4
BCIS 5110 Assignment 1_AshaKilaru - Jupyter Notebook 9/3/21, 2:35 PM
2. Describe the data you might need to make a reasonable prediction. (5 points)
Recall our discussion about the data sources for the Verizon case. Assume that we do not
have limitations on how we can get the data.
3. During data exploration, we use statistics and graphs to tell the stories about the
data. (5 points)
We can answer questions like: what is the average number of downloads for an App in
Google Play Store? Who is the best salesman in the Northeast region? How does the price
change over the years? How is housing price changing over time? Ask three such
explorative questions about your data.
Questions
http://localhost:8889/notebooks/BCIS%205110%20Assignment%201_AshaKilaru.ipynb Page 2 of 4
BCIS 5110 Assignment 1_AshaKilaru - Jupyter Notebook 9/3/21, 2:35 PM
*
'hello'
-88.8
-
/
+
5
Sample answer
Operators: *, -, /, +
Values: 'hello', -88.8, 5
Answer:1)improved productivity
2)Learning Ease and Support Available
3)User-friendly Data Structures
4)vast libraries
spam
'spam'
In [2]: num=input()
print(type(num))
hu
<class 'str'>
In [ ]: Answer: string
http://localhost:8889/notebooks/BCIS%205110%20Assignment%201_AshaKilaru.ipynb Page 3 of 4
BCIS 5110 Assignment 1_AshaKilaru - Jupyter Notebook 9/3/21, 2:35 PM
In [4]: userAge = 20
userAge + 1
Out[4]: 21
Answer:21
5. Why does this expression cause an error? How can you fix it? (3 points)
Answer:
1)String concatenation does not allow integers.Strings can take
numbers only when we use function string.
2)I have adden the 99 as string so that the equation work.
'I have eaten 99 burritos.'
http://localhost:8889/notebooks/BCIS%205110%20Assignment%201_AshaKilaru.ipynb Page 4 of 4