Sahaj

Details

Job Status

Full Time (Employment + Internship Mandatory)

Criteria

StudyCutoff
X%
XII%
UGGPA

Round 1

24/08/23

Online test based on fundamentals - CN, OS, DBMS, OOPS. A total of 20 questions.


Round 2 - Building in-memory DB for backend server.

Problem statement

We need a system to be able to manage data for employees. Requests will be accepted over HTTP (API contract). No databases/libraries can be used to store/maintain data.

Fastest applications win.


Technical details

  1. Your repository needs to have a Dockerfile that starts your HTTP web app
  2. Your HTTP app need to expose APIs (API contract) on port 8080
  3. No existing databases, libraries and services can be used to store the data
  4. Application needs to persist data across restarts
  5. No limitation on the programming language
  6. Do not touch the GitHub actions code. It is used to test your code automatically and score it. Any modifications will lead to immediate disqualification.
  7. Maximum time a single request can take is 10 seconds
  8. Data should be persisted in /home/

FAQ

  1. Do not run a development webserver with watch enabled in your app. Your tests will fail.
  2. If your greeting end point test is not passing, please check the output you produce. It needs to be exactly what is requested.
  3. When in doubt, please check the Github Actions logs for details
  4. Logs for the performance tests will not be shared

Data to be stored

{
    employeeId: string,
    name: string,
    city: string
}

API contract


GET /greeting

Checks whether the service is available.

Response
  • Code: 200
  • Content: Hello world!

POST /employee

Creates a new Employee and returns the employeeId

Request & Response headers

Content-Type: application/json

Body
{
    name: string,
    city: string
}
Success Response
  • Status code: 201
  • Content: { "employeeId": "<employee_id>" } (Note: Employee ID is a string)

GET /employee/:id

Returns the specified employee.

URL Params

id=[string] Required

Success Response
  • Status code: 200
  • Content: { <employee_object> }
Error Response
  • Status code: 404
  • Content: { message : "Employee with <employee_id> was not found" }

GET /employees/all

Returns list of all employees.

Success Response
  • Status code: 200
  • Content: [{ <employee_object> }]

PUT /employee/:id

Updates fields of the existing employee and returns the new object.

URL Params

id=[string] Required

Headers

Content-Type: application/json

Body
{
    name: string,
    city: string
}
Success Response
  • Code: 201
  • Content: { <employee_object> }
Error Response
  • Code: 404
  • Content: { message : "Employee with <employee_id> was not found" }

DELETE /employee/:id

Deletes existing employee record.

URL Params

id=[string] Required

Success Response
  • Status code: 200
  • Content: { <employee_object> }
Error Response
  • Status code: 404
  • Content: { message : "Employee with <employee_id> was not found" }

Competition rules

Check rules and scoring pages for details. When in doubt, ask the organizers and we will add clarifications to the page.

Sample Instructions for coding/committing

  • git clone git repository url (Skip this step if using github codespaces)
  • cd repository name (Skip this step if using github codespaces)
  • Goto server.js
  • Begin coding
  • Code needs to be tested via github? Execute following commands in the terminal location of your repository
    • git add .
    • git commit -m ‘any message regarding your changes’
    • git push
  • Wait for build to complete in github actions logs.
  • If build is green, you should see the score on the leader board, else check with actions logs.

Sample Instructions for Codespaces installation

  • On your browser after accepting the github invitation,
    • Celect “Code” dropdown
    • Select the “Codespaces” tab.
    • Select “Create codespace on main”
  • Continue from step 3 of Sample Instructions for coding/commit