Skip to Content

Design a Dating App (Tinder) Interview Question

Home | Coding Interviews | System Design | Design a Dating App (Tinder) Interview Question

Outline how you would create a tinder style dating app. The functional requirements are the ability to create user profiles, location based recommendations as well as the ability for a user to change their location (passport mode), preference settings, and matching algorithms. You can ignore chat functionality because that is often covered in other system design problems. The nonfunctional requirements are the ability for the application to scale to a large number of users as well as spikes in usage at different times. Availability and low latency are also a concern.

Posted by grwgreg a month ago

Related Problems

Design a url shortener service (similar to tinyurl).

1. Generate expiring unique short URL from provided URL

2. Redirect users to the correct website when they navigate to the short URL

Functional Requirements

1. As users type text in a search box, show the top 10 auto complete results with very low latency

2. Analytics will be collected on what the user types

Design a service with the following functional requirements

1. Users should be able to upload and download files

2. The files should be able to be shared with other users

3. Changes to the files should be pushed to other users with the content on their machine

4. There must be no risk of file corruption

5. Keep track of different versions of the files so they may be rolled back

6. Users should be able to edit files without an internet connection and the changes sync up when a connection becomes available

Design a social network website with the following functional requirements

1. Users should be able to post content with text, images or video 2. Users should be able to follow other users 3. Each user will have a relatively low latency feed which shows content posted by users they follow