Do the following exercises.
4.04'Four'sCoReremaining_classesUNIT1stNameWhich of these are legal assignment statements?
33 = af(x) = x*3 + 7a = 33a == 33astr = hello, world!a = a + 1a = -aWrite a program that prompts for and receives from the user a diameter in inches and prints the circumference and area in square centimeters. First, design an algorithm, then write the code.
Write a program that prompts for and receives from the user a number of days and print the equivalent number of weeks and days. First, design an algorithm, then write the code.