BADM 211- EXAM 1 CODING PRACTICE
EXAM QUESTIONS WITH 100%
CORRECT ANSWERS LATEST VERSION
2025/2026.
Business Analytics - ANS 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()) - ANS Converts string into upper case & converts it to new string
Import required packages:
pandas, numpy, matplotlib.pylab with aliases pd, np, plt, respectively - ANS import pandas as
pd
import numpy as mp
import matplotlib.pylab as plt
Create a list with 5 prime numbers - ANS 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] - ANS prime_numbers[2]
1 @COPYRIGHT 2025/2026 ALLRIGHTS RESERVED.
, 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] - ANS 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] - ANS sum(prime_numbers[0:5])
output: 18
Write a code to print the value responding to key, name - ANS my_profile["name"]
output: Breena
Define a dictionary with keys: name, password, birth_month, email, major. Name it my_profile.
- ANS 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"} -
ANS my_profile["password"]=13567
2 @COPYRIGHT 2025/2026 ALLRIGHTS RESERVED.
EXAM QUESTIONS WITH 100%
CORRECT ANSWERS LATEST VERSION
2025/2026.
Business Analytics - ANS 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()) - ANS Converts string into upper case & converts it to new string
Import required packages:
pandas, numpy, matplotlib.pylab with aliases pd, np, plt, respectively - ANS import pandas as
pd
import numpy as mp
import matplotlib.pylab as plt
Create a list with 5 prime numbers - ANS 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] - ANS prime_numbers[2]
1 @COPYRIGHT 2025/2026 ALLRIGHTS RESERVED.
, 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] - ANS 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] - ANS sum(prime_numbers[0:5])
output: 18
Write a code to print the value responding to key, name - ANS my_profile["name"]
output: Breena
Define a dictionary with keys: name, password, birth_month, email, major. Name it my_profile.
- ANS 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"} -
ANS my_profile["password"]=13567
2 @COPYRIGHT 2025/2026 ALLRIGHTS RESERVED.