Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C# Help! Implement a solution which will perform three primary functions: Retrieve a JSON file from a remote URL. Your solutions should pull this from

C# Help!

Implement a solution which will perform three primary functions:

  1. Retrieve a JSON file from a remote URL. Your solutions should pull this from a settings file (app.config, web.config. etc).

  2. Determine if a provided string is a palindrome. Alphanumeric chars will be considered when evaluating whether or not the string is a palindrome.

  3. Parse the retrieved JSON file, and pass each element in the "strings" array, into the function in step #2. You should print out the string and result.

The JSON file will contain the string to test, and its status as a palindrome. The file will be in this format:

 { "strings": [{ "str": "mom", "result": "true" }, { "str": "Taco Cat", "result": "true" }, { "str": "Kent State", "result": "false" }] }

Your solution is expected to handle reasonable exceptions (unanavailable JSON file, improperly formatted file, etc). In the case of an exception, simply outputting the exception message, or comparable message, will expected.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Management System MCQs Multiple Choice Questions And Answers

Authors: Arshad Iqbal

1st Edition

1073328554, 978-1073328550

More Books

Students also viewed these Databases questions

Question

Develop clear policy statements.

Answered: 1 week ago

Question

Draft a business plan.

Answered: 1 week ago

Question

Describe the guidelines for appropriate use of the direct plan.

Answered: 1 week ago