subject

Build a user management functionality for a web application. You must be able to cover the below functionalities:
1: create a new user on Signup with a unique user id which will be the primary key. This user id should bot be their email or any other personal details.
2: Delete a specific user.
3: Update the email-id of the user.
4: Get information of a specific user using their unique user id.
5: Get all the users living in Dan Francisco.
6. Update the password of a specific user using their unique user id.
7: Get all users that have logged in at least once since this week.
Note: A user would have the following details:
- First name
- Last name
- Emial id
- Phone number
- Location
a) Write API endpoints for each of the following functionalities in the given blanks. You are free to use your own conventions. For example: GET .../api name?[parameters
b) What mechanisms would you put in place to prevent denial-of-service attack?

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 19:00
If your accelerator suddenly gets stuck what should you do
Answers: 2
question
Computers and Technology, 23.06.2019 10:50
The volume v and paper surface area a of a conical paper cup are given by where r is the radius of the base of the cone and h is the height of the cone. a. by eliminating h, obtain the expression for a as a function of r and v. b. create a user-de ned function that accepts r as the only argument and computes a for a given value of v. declare v to be global within the function. c. for v ! 10 in.3 , use the function with the fminbnd function to compute the value of r that minimizes the area a. what is the corresponding value of the height h? investigate the sensitivity of the solution by plotting v versus r. how much can r vary about its optimal value before the area increases 10 percent above its minimum value?
Answers: 1
question
Computers and Technology, 24.06.2019 01:10
Create a program that will take in a single x and y coordinate as the origin. after the input is provided, the output should be all of the coordinates (all 26 coordinates read from the “coordinates.json” file), in order of closest-to-farthest from the origin.
Answers: 1
question
Computers and Technology, 24.06.2019 11:20
Print "censored" if userinput contains the word "darn", else print userinput. end with newline. ex: if userinput is "that darn cat.", then output is: censoredex: if userinput is "dang, that was scary! ", then output is: dang, that was scary! note: if the submitted code has an out-of-range access, the system will stop running the code after a few seconds, and report "program end never reached." the system doesn't print the test case that caused the reported message.#include #include using namespace std; int main() {string userinput; getline(cin, userinput); int ispresent = userinput.find("darn"); if (ispresent > 0){cout < < "censored" < < endl; /* your solution goes here */return 0; }
Answers: 3
You know the right answer?
Build a user management functionality for a web application. You must be able to cover the below fu...
Questions
question
Mathematics, 17.03.2022 07:30
Questions on the website: 13722367