From 270322b0af905dd14475a07f181b449849c71c0e Mon Sep 17 00:00:00 2001 From: Sourabh Kheraliya <55895224+SK02K1@users.noreply.github.com> Date: Mon, 30 Aug 2021 19:15:50 +0530 Subject: [PATCH 1/3] docs : add mock url for ques08 --- neog interview sample questions/interview-questions.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/neog interview sample questions/interview-questions.md b/neog interview sample questions/interview-questions.md index a8d41b1..0fbc277 100644 --- a/neog interview sample questions/interview-questions.md +++ b/neog interview sample questions/interview-questions.md @@ -16,6 +16,9 @@ 1. Here's an API. Create a web app to call this API with your full name and print the response. This could be extended where we ask you to do something with the response. Like add a text, or capitalise etc. + API link - https://lessonfourapi.tanaypratap.repl.co/translate/yoda.json + + 1. Here's an API. It will give an error. Write a web app, call this API and read the error message. Show user the error message. 1. Here's an API, it can give two errors. Either 404, or 401. If the error is 404, show the user `'page not found'` and if the error is 401, show the user `'you are not logged in'`. From aff4b35fb3d0e313ecee3685efce2a8167afeb09 Mon Sep 17 00:00:00 2001 From: Sourabh Kheraliya <55895224+SK02K1@users.noreply.github.com> Date: Mon, 30 Aug 2021 19:23:44 +0530 Subject: [PATCH 2/3] docs : add mock url for ques09 add mock URL which gives failed to fetch error. --- neog interview sample questions/interview-questions.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/neog interview sample questions/interview-questions.md b/neog interview sample questions/interview-questions.md index 0fbc277..09be1d7 100644 --- a/neog interview sample questions/interview-questions.md +++ b/neog interview sample questions/interview-questions.md @@ -21,6 +21,8 @@ 1. Here's an API. It will give an error. Write a web app, call this API and read the error message. Show user the error message. + API link - https://BROKENlessonfourapi.tanaypratap.repl.co/translate/yoda.json + 1. Here's an API, it can give two errors. Either 404, or 401. If the error is 404, show the user `'page not found'` and if the error is 401, show the user `'you are not logged in'`. 1. Open your Github repo. Make a small change. And create a PR. Explain what you understand by Git, what's PR etc. From d330190b6a0a65b1f954188d9a43c3f82205366e Mon Sep 17 00:00:00 2001 From: Sourabh Kheraliya <55895224+SK02K1@users.noreply.github.com> Date: Mon, 30 Aug 2021 19:26:34 +0530 Subject: [PATCH 3/3] docs : add mock url for ques10 add mock URL which returns 404 status code. --- neog interview sample questions/interview-questions.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/neog interview sample questions/interview-questions.md b/neog interview sample questions/interview-questions.md index 09be1d7..151a8d0 100644 --- a/neog interview sample questions/interview-questions.md +++ b/neog interview sample questions/interview-questions.md @@ -25,6 +25,8 @@ 1. Here's an API, it can give two errors. Either 404, or 401. If the error is 404, show the user `'page not found'` and if the error is 401, show the user `'you are not logged in'`. + API link - https://reqres.in/api/users/23 + 1. Open your Github repo. Make a small change. And create a PR. Explain what you understand by Git, what's PR etc. 1. Create a password checker web app. If password is lesser than 10 characters then show an error to user otherwise show success.