You are on page 1of 2

Web Development Problem Statements

Problem Statement 1 (Online Compiler)

Create a online compiler in which user should input the code from an code editor of any
programming language and the code should be compiled on the server compiler accordingly and
return back the compiled output to the client.

Frontend:
● You need to create a code editor where user can write the code by choosing any
programming language (minimum 3 programming language it should support ex. Java,
Python, C++, etc.).
● A terminal to view the code output

Backend:
● Create any programming language compiler (minimum 3 programming language ex. Java,
Python, C++, etc.)
● Dockerise compiler server and host on any cloud services (ex. AWS, Heroku, Azure, etc.)

NOTE: Don’t use any third party APIs nor any open source project for compiler.

Problem Statement 2 (Meeting Scheduler)

Create a meeting scheduler where any user can schedule a meeting with another using an unique
link according to their time slots available.

Public User:
● User can schedule a meeting from admin user link on available time slots.
● User should input his full name, email and notes for the scheduled meeting.

Admin User:
● Admin user can create a link for meeting with desired time slots.
● Display the list of all the meetings created under the link.

While scheduling the meeting, the details should be saved in Google Calender of public and admin
user. Integrate any video conferencing platform (ex. Google Meet, Zoom.us, etc.) where the meeting
would take place.
Problem Statement 3 (Blog Portal)

Create a blog portal where user can write any kind of blog, while others can like and share the blog
via a unique link.

● Add rich text editor (with images) to write the blog.


● Public users can search blogs available on the platform.
● Public users can share the blog via a unique link.
● Sort top performing blogs based on popularity by likes.

You might also like