Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Language – c#

Objective:

Access a RESTful resource and build a small database of quotes

1.Investigate a method for accessing a RESTful online – these methods are language specific. Do NOT
build a method yourself, but properly document where the code is from.

2.Query 10 quotes from the following resource: https://type.fit/api/quotes

3. Process the JSON and store the quote and its author in memory using a structure of your choice.

(Note: any collection can be used like string list etc.)

4. Sort the quotes associated information from quote shortest to longest.

5. Write the quotes to a file in the format. Include the file with your submission.

“<quote>” -- <author>\n\n

You might also like