Get help from the best in academic writing.

Wolfgang Amadeus Mozart research essay help annotated bibliography format

A short report on his life, from his birth, to his death. Ay squall_Leonard_WI Knolling Amadeus Mozart was born January 27th, 1756 in Salisbury, Austria. At the age of three, he could imitate his sister, Manner, on the clavier. From age four to five, he studied music with his father and started composing his own music. At age six, he taught himself to play the violin and the organ and also played for the Emperor of Austria. When he was seven and eight, he traveled to many different cities and performed in front of many royalties.

While he was eleven and twelve, he wrote his first piece of choir music and two operas. Mozart could not manage his money. Although he was born into a rich family, he was buried in a pauper’s grave. As an adult, Mozart lived in Austria. His good friend Frank losses Hayden learned and worked on music with him. Mozart called Hayden “Pa Pa Hayden,” like many others of their time. In 1782, he married Constance Weber, and in 1791, had his first son.

He died the same year at the age of 35. It was said Antonio Saltier, who was Mozart rival, poisoned him.Mozart composed more than 600 pieces of music in his short lifetime. All of these pieces are In different forms such as symphonies, operas, concertos, oratorios, songs, and chamber music. His last completed piece of music was “The Magic Flute”. He was still working on “The Requiem,” when he died so his close friend, Summary, completed it for him based on Mozart notes. It’s a shame he died at such a young age.

However, we should all be grateful for all the gifts that he gave to the world of music that we can still take pleasure In listening to today.

React Front-End Site

or this assignment, you are required to modify the fake-proptypes React project in our class repository to make it work with data obtained from https://jsonplaceholder.typicode.com/. In it, you need to include everything I need to simply run npm install and npm start to open your page in a browser once I clone the repository to my system. Begin by using create-react-app, then install bootstrap, react-bootstrap, and axios using npm so you have the freshest starting point. Your README.md file must include your name, the assignment (i.e. Assignment 3), and data due.
To turn in this assignment, you are to complete the same process you followed with your previous assignments, using the link at:
You must meet these requirements:
In your repository, after using npm to install the above libraries, delete the src directory and copythe src directory and all of its contents from the fake-proptypes project.
Modify this code so that the App.js file has the line to indicate that your program will produce 3 entries. Note that I should be able to change this to any number between 1 and 10 and it will work with that number of entries. Your modified Entries.js program will take the props (a single number) from App.js and create an array of numbers for it (e.g. for 3, create [1, 2, 3], and for 8, create [1, 2, 3, 4, 5, 6, 7, 8]). The map in the Container in Entries.js should loop over those numbers, passing the number into Entry.js.
From here, you need to modify the program to work correctly by having useEffect code in the Entry.js file access data from the placeholder site. In particular, you are to use the /users endpoint, with the number passed into Entry.js indicating which entry from the site to use. YourEntry.js program should display any data from the /users endpoint you wish, but at least one of the fields must be a nested property (e.g. address.street or company.name). For the field I call animals, you may use a hardcoded link to any image, e.g. https://via.placeholder.com/600/ 771796 or some other image of your choice.
You must use PropTypes to enforce strong types. When I run your code, I will open the console in Chrome. There cannot be ANY warnings or errors when I run it!