Question 1
Correct all of the syntax errors In the function below so that we determine whether or not the input
word is an anagram. An Anagram is a word that has the same value, even when it is reversed. Examples
of anagrams are:
aba
civic
dad
Question 2
Complete the function below to return the temperature feel for a given list of temperatures. The
function takes in a list of temperatures for the month as integer values, and should return the following
value:
• If the average temperature is between 60 and 75 degrees, it should return perfectl”.
• If the average temperature Is below 60 degrees, It should return “colder”
. If the average temperature is greater than 75, it should return “hotter”
Testcases:
Temperatures Feel
(70, 65, 70, 68j perfect!
[87, 90, 99, 88, 92, 94) hotter
130, 29, 311 colder
Question 3
Given a string of characters, return a dictionary of each character’s frequency in the string.
Testcases:
String Frequency
“aa” {‘a’: 2)
“abba” (‘a’: 2, ‘b’: 2}
“xyz {‘x’: 1, ‘y’: 1, ‘z’: 1)
CS 340 Milestone One Guidelines and Rubric
Overview: For this assignment, you will implement the fundamental operations of create, read, update,
Retail Transaction Programming Project
Project Requirements:
Develop a program to emulate a purchase transaction at a retail store. This
Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip
CS 340 Final Project Guidelines and Rubric
Overview The final project will encompass developing a web service using a software stack and impleme