Answer:
720 Ways
Explanation:
The answer for arranging n items is in n! ways...
In this case, you can have any of six CDs first, then any of five second, and so on...
The answer is 6! = 6*5*4*3*2*1 = 720 ways.
Answer:
The Code:
def month(x):
if (x==1):
print ("January")
if (x==2):
print("February")
if (x==3):
print("March")
if (x==4):
print("April")
if (x==5):
print("May")
if (x==6):
print("June")
if (x==7):
print("July")
if (x==8):
print("August")
if(x==9):
print("September")
if(x==10):
print("October")
if(x==11):
print("November")
if(x==12):
print("December")
if(x<1 or x>12):
print("Wrong Input! Try again")
month = int(input("Enter the month number: "))
month(month)
Explanation:
The above program is written in the PYTHON programming language.
In this program, the user inputs the number of any month, showing the month name in the output. For example,
if user enters 1, month name = JANUARY
if user enters 5, month name = MAY
and if the user enters 13, then output = Wrong Input! try again
#SPJ2
Answer:
i think (first name last name id Num)
Answer: alternative C
Explanation: Frank Lloyd Wright was the architect who designed Guggenheim Museum. He was asked to project a museum that was different from any other museum that had already existed, since the art exhibitions that were going to be held in it would be a radical kind of art, completely different from the current styles.