Business Analytics - correct answer ✔✔The science of transforming data into insights and
models that lead to better decisions and add value to individuals, companies and societies.
print(my_name.upper()) - correct answer ✔✔Converts string into upper case & converts it to
new string
Import required packages:
pandas, numpy, matplotlib.pylab with aliases pd, np, plt, respectively - correct answer
✔✔import pandas as pd
import numpy as mp
import matplotlib.pylab as plt
Create a list with 5 prime numbers - correct answer ✔✔prime_numbers[2, 3, 5, 7, 11]
The code to print the third prime number in a list
prime_numbers=[2, 3, 5, 7, 11] - correct answer ✔✔prime_numbers[2]
output: 5
Write the code to print the sum of the 2nd and 4th prime number in a list
prime_numbers=[2, 3, 5, 7, 11] - correct answer ✔✔prime_numbers[1] + prime_numbers[3]
output: 10
, Write the code that outputs the sum of the first 5 prime numbers
prime_numbers=[2, 3, 5, 7, 11] - correct answer ✔✔sum(prime_numbers[0:5])
output: 18
Write a code to print the value responding to key, name - correct answer
✔✔my_profile["name"]
output: Breena
Define a dictionary with keys: name, password, birth_month, email, major. Name it my_profile.
- correct answer ✔✔my_profile={"name":"Breena ", "password":"jimmyjohns",
"birth_month":"march", "email":"", "major":"information systems"}
modify the value corresponding to key, password
my_profile={"name":"Breena ", "password":"jimmyjohns", "birth_month":"march",
"email":"", "major":"information systems"} - correct answer
✔✔my_profile["password"]=13567
my_profile["password"]
Output: 13567
Write a code that combines values corresponding to keys: name and major
my_profile={"name":"Breena ", "password":"jimmyjohns", "birth_month":"march",
"email":"", "major":"information systems"} - correct answer
✔✔my_profile["name"] +