Build 8 graphs using matplotlib.
Adjunct Professor John Iacovacci
Build 8 graphs using matplotlib.
Adjunct Professor John Iacovacci
Assignment # 4 due Friday 3/6/26
Midterm grades will reflect 4 assignments.
Adjunct Professor John Iacovacci
To all:
Adjunct Professor John Iacovacci
Create a web site with
It can take job seekers months just to get an employer's attention, while actually landing the job is even more challenging. To stand out, one career expert underscores the skill that employers value most right now.
Create a linux shell program to collect and save the following information.
Note validate major from this list
| Engineering - Engineering Physics |
| Engineering - Electrical Engineering |
| Engineering - Biomedical Engineering |
| Engineering - Mechanical Engineering |
| ACES - Exploratory |
| Engineering - Civil Engineering |
| Engineering - Computer Science & Engineering |
| Engineering - Computer Science |
Name
#!/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
Pick any stock and send me the linear regression chart for that stock. https://uconnstamfordslp.blogspot.com/p/machine-learning-exercise.h...