Build 8 graphs using matplotlib.
UCONN Stamford Google Cloud Development Platform
Monday, October 20, 2025
Assignment #7 due 10/31/25
Saturday, October 11, 2025
Assignment # 6 due Friday 10/24/25
https://uconnstamfordslp.blogspot.com/p/assignment-exercise-python-datastore.html
Adjunct Professor John Iacovacci
Sunday, October 5, 2025
Assignment #5 due Friday, October 17th
Assignment #5 due Friday, October 17th
Thursday, September 25, 2025
Assignment #4 due Wednesday October 8th
Assignment #4 due Wednesday October 8th
Monday, September 22, 2025
Assignment #3 due 10/1/25
Assignment #3 due 10/1/25
Thursday, September 11, 2025
Assignment #2 due Wednesday 9/24/25
Assignment #2 due Wednesday 9/24/25
Create a web site with
HTML FORM to collect
Web Assignment First select Cloud Storage then Buckets Next hit +CREATE BUCKET Select a unique name for the bucket Select Region for wh... uconnstamfordslp.blogspot.com |
Adjunct Professor John Iacovacci
Adjunct Professor John Iacovacci
Wednesday, August 27, 2025
Assignment#1 due 9/10/25
Assignment#1 due 9/10/25
https://uconnstamfordslp.blogspot.com/p/linux-explained.html
Note validate major for this list - make sure you select your major
Engineering - Biomedical Engineering
ACES - Exploratory
Engineering - Mechanical Engineering
Engineering - Civil Engineering
Business - Stamford-Business-Undecided
Engineering - Electrical Engineering
Engineering - Computer Engineering
Engineering - Engineering Physics
Liberal Arts & Sciences - Physiology & Neurobiology
Engineering - Multidisciplinary Engineering
Liberal Arts & Sciences - Economics/Mathematics
Engineering - Environmental Engineering
Liberal Arts & Sciences - Communication
#!/bin/bash
# My First scripts
echo "Enter your full name : "
read my_name
echo "Enter your major : "
read my_major
gradyear=2025
cyear=1
while true; do
echo -n "Enter your class standing (Freshman, Sophomore, Junior, Senior): "
read standing
case "$standing" in
[Ff]reshman)
echo "✅ You entered: Freshman"
cyear=4
break
;;
[Ss]ophomore)
echo "✅ You entered: Sophomore"
cyear=3
break
;;
[Jj]unior)
echo "✅ You entered: Junior"
cyear=2
break
;;
[Ss]enior)
echo "✅ You entered: Senior"
cyear=1
break
;;
*)
echo "❌ Invalid entry. Please try again."
;;
esac
done
# Perform addition
sum=$((gradyear + cyear))
# Display result
echo "Your Graduation year is $sum"
echo "My Name is : " $my_name > my_profile.txt
echo "My major is : " $my_major >> my_profile.txt
echo "My grade is : " $standing >> my_profile.txt
echo "I will graduate in the year : " $sum >> my_profile.txt
Assignment #7 due 10/31/25
Build 8 graphs using matplotlib. I want two separate publicly traded companies e.g. AAPL & AMZN Volume and price graphs for a 1 year p...
-
Assignment #2 due Friday 2/7/25 Create a web site with main page of index.html and 2 other linked original content html pages At least 2...
-
https://uconnstamfordslp.blogspot.com/p/linux-explained.html Create a linux shell program to state Name Major Graduation Year What you want ...
-
Turn on IAP for the project that you created for assignment 6 (Python CRUD) Add the email john.iacovacci1@gmail.com as a PRINCIPAL. Set a ...