Friday, February 24, 2023
Assignment # 5 due 3/2/23
Wednesday, February 15, 2023
Midterm Exam 2/22/23
Exam 2/22/23 20 short answers from chapters 1,3,8,9,11,12,4
1. What is the Cloud?
2. Describe what a data center is?
3.What is a virtual machine?
4.What is Google Cloud Storage?
5. Explain the difference between zones and regions?
11. What are the choices when selecting cloud storage classes?
12. Explain the concept of the Google app engine?
Adjunct Professor John Iacovacci
Thursday, February 9, 2023
Assignment #4 due Thursday 2/16/23
Assignment #4 due Thursday 2/16/23
sell and produce a total.
https://uconnstamfordslp.blogspot.com/p/python-invoicer.html
#!/usr/bin/python3
# DATA TYPE Examples
########## DICTIONARY #################
cust_name = input("Customer name: ")
cust_address = input(" Address: ")
cust_city = input(" City: ")
cust_state = input(" State: ")
cust_zip = input(" Zip: ")
print(cust_name)
print(cust_address)
items = {"plates" : 3, "cups" : 1, "glasses" : 2}
for x in items:
print(x, items[x])
no_plates = input("Number of Plates: ")
no_cups = input("Number of Cups: ")
no_glasses = input("Number of Glasses: ")
total_plates = int(no_plates) * int(items["plates"])
total_cups = int(no_cups) * int(items["cups"])
total_glasses = int(no_glasses) * int(items["glasses"])
total_charge = int(total_plates) + int(total_cups) + int(total_glasses)
print(cust_name)
print(cust_address)
print(cust_city)
print(cust_zip)
print(total_charge)
myplates = "You Bought {} number of plates at {} = {} dollars."
print(myplates.format(no_plates, items["plates"], total_plates))
mycups = " {} number of cups at {} = {} dollars."
print(mycups.format(no_cups, items["cups"], total_cups))
myglasses = " {} number of glasses at {} = {} dollars."
print(myglasses.format(no_glasses, items["glasses"], total_glasses))
mytotal = " Total Amount Due = {} dollars."
print(mytotal.format(total_charge))
john_iacovacci1@cloudshell:~/pyprojects/assign4 (uconn-engr)$ python3
invoicer.py
Customer name: John
Address: 55 daffodil Rd
City: Stamford
State: CT
Zip: 06903
John
55 daffodil Rd
plates 3
cups 1
glasses 2
Number of Plates: 5
Number of Cups: 5
Number of Glasses: 5
John
55 daffodil Rd
Stamford
06903
30
You Bought 5 number of plates at 3 = 15 dollars.
5 number of cups at 1 = 5 dollars.
5 number of glasses at 2 = 10 dollars.
Total Amount Due = 30 dollars.
john_iacovacci1@cloudshell:~/pyprojects/assign4 (uconn-engr)$
email me the code and the output from the code
Wednesday, February 1, 2023
Assignment #3 due 2/9/23
Wednesday, January 25, 2023
Assignment #2 due 2/2/23
Assignment #2
Assignment #2 Due 2/2/23
HTML
CSS
JavaScript
Images
Web form for collecting information
Use blog for reference
https://uconnstamfordslp.
Detailed directions
https://uconnstamfordslp.
My site can also be used as reference
https://www.uconnstamforddsc.
Right click and view page source to see code
Choose any topic you like.
Please send me a link to your main index page so I can review
Wednesday, January 18, 2023
Assignment #1 due 1/26/23
Assignment 1 due 1/26/23
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
Town
favorite subject growing up
What i am passionate about
Send both code and output via 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
Monday, November 7, 2022
Assignment #10 due 12/8/22
Please install python 3 to your cloud shell.
Build 4 python programs that will use Google Vision API to scan 4
separate images.
Note: need to use your own images and store them on your Google Storage Bucket
Download images from internet and store on your cloud storage bucket
image_uri = 'gs://cloud-samples-data/vision/using_curl/shanghai.jpeg'
image_uri = 'gs://dollarsforstuff/shanghai.jpg'
Send me the output from each run of the function in an email
Assignment 10 due before grading
Pick any stock and send me the linear regression chart for that stock. https://uconnstamfordslp.blogspot.com/p/machine-learning-exercise.h...
-
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 ...
-
https://uconnstamfordslp.blogspot.com/p/assignment-exercise-python-datastore.html Recreate the app engine project above and send me a wor...