UCONN

UCONN
UCONN

Thursday, January 23, 2025

Assignment #1 due 1/31/25

https://uconnstamfordslp.blogspot.com/p/linux-explained.html

Create a linux shell program to state


Name
Major
Graduation Year
What you want to do?
High school you went to?
Town you live in?
Favorite subject growing up?
What are you passionate about?
Favorite band or musician?
Favorite song?
What company or organization would you like to for for?

Send both code and output attachment via email

Attach the my_info.txt file to your email


List all lines of code

Program
#!/bin/bash
# My First scripts
echo "Enter your full name : "
read my_name
echo "Enter your major : "
read my_major
echo "Enter the year you will graduate : "
read my_graduation
echo "My Name is : " $my_name
echo "My major is : " $my_major
echo "I will graduate in the year : " $my_graduation

Output
output

john_iacovacci1@cloudshell:~/scripts (uconn-engr)$ ./my_profile
Enter your full name :
John Iacovacci
Enter your major :
Computer Science
Enter the year you will graduate :
2026
My Name is :  John Iacovacci
My major is :  Computer Science
I will graduate in the year :  2026



Assignment # 6 due 3/7/25

  Assignment # 6 due 3/7/25  https://uconnstamfordslp.blogspot.com/p/assignment-exercise-python-datastore.html  Recreate the app engine proj...