[Solved]1 Write Program Contains Array Array Contain Titles Favorite Books Games Shows Movies May Q37282043
1.
Write a program that contains an array. The array will containthe titles of your favorite books,
games, shows, or movies. You may make it as large as you desire,but only enter the titles
through user input.
Sample output:
“Dragon Wing”, “Doom Patrol”, “Pokemon”, “Star Wars”
2.
Write a program that creates a class to represent what you spendyour time on every week.
Inside of that class, you will need a 2D array that representseach day of the week and how
much time you spend on any given activity (the size should be 7by whatever the number of
activities you perform in a week). You may enter the valueshowever you like, but you will need
to display the array so that you understand your time managementskills in a more concrete
manner.
Sample output:
0 2 4 2 4 0 0
This row could represent your hours spent
reading books.
0 5 4 1 1 0 2
This row could represent your hours spent going to
class
IN PYTHON
Expert Answer
Answer to 1. Write a program that contains an array. The array will contain the titles of your favorite books, games, shows, or mo… . . .
OR

