Find a deleted user

Report a typo

In a server database, there is a table that contains all the user data:

id name
1 Kate
2 Michael
3 Kim

Which user will be deleted after executing the following code (write the user id in your answer):

String url = "https://api.example.com/users/{name}";

Map<String, String> params = new HashMap<>();

params.put("name", "Kim");

restTemplate.delete(url, params);
Enter a number
___

Create a free account to access the full topic