• Stars
    star
    1
  • Language
    JavaScript
  • Created over 4 years ago
  • Updated almost 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A simple login application using spring boot

More Repositories

1

Programming-Interview-Questions

Data structures and algorithm questions are an important part of any programming job interview, be it a Java interview, C++ interview or any other programming language. Since data structures are core programming concept, it’s mandatory for all programmers, to know basic data structures like stack, linked list, queue, array, tree, and graph. Though tree and graph are on the tough side, I still see programmers get familiar will all these. Any list of programming job interview questions isincomplete without questions from data structures and algorithms. Similarly, while going on questions from data structure you may get some programming exercise as well e.g. swapping numbers without temp variable. The linked list and array are favorite topics in any data structure interview, questions like reversing linked list, traversing linked list or deleting nodes from linked list, which involves algorithm and data structures are quite common. Similarly, finding duplicates in an array, finding missing numbers, sorting arrays are very popular. You can also expect questions from the stack, queue, array, linked list, tree, graph and hash table are most common in any data structure interview. In this tutorial, we will see a couple of data structure questions answers from these topics. Let us know, if you have any interesting questions from data structures and algorithm, which you faced during any Java interviews. I also suggest to look on data structure and algorithm questions on “Cracking the Coding Interview book”, as this book contains some good questions with proper explanation. That will certainly help you to do better on programming job interviews. One more suggestion I have to make is whenever you get some time, just read the “Introduction to Algorithm by Thomas Cormen”, if you have not read already. This book is the bible of algorithm and IMHO every programmer should read this book.
C++
5
star
2

busticketing

Bus Reservation System_ and tried to implement an Admin portal which can be operated over browsers and a series of REST APIs to interact with the system using mobile applications or frontend applications written for the browsers. The complete systems has two important actors : 1. Admin user 2. End user The _Admin user_ can access this application on browser (laptop or mobile/tablet, doesn't really matter as this is built using bootstrap, material design and is completely responsive) and can perform the following actions : 1. Signup 2. Login (Spring sessions) 3. Update their profile 4. Create an agency 5. Add buses to the agency 6. Add trips consisting of predefined stops and buses The _End user_ can use their mobile application (yet to be built, however the REST APIs are ready and could be used via Postman or Swagger) to perform the following actions : 1. Signup 2. Login (and get a JWT token) 3. List all available stops 4. Search a trip between any two stops 5. Filter search results with a date option 6. Book a ticket for a given trip schedule Admin interface and REST APIs both have their independent authentication mechanisms, the web application uses the cookie based authentication (provided by default by Spring security) and the REST API uses the JWT authentication for access. This application assumes the availability of 'MongoDB' installation on the localhost where the server will run or the use of docker-compose to boot up a mysqldb container and link the application with it within the realm of docker. Any changes that the admin users will do on the web portal will impact the search results of the end users, there will be certain use cases which you may find missing here, I hope you will appreciate that the overall idea was to present a way to create such an application completely inside the realm of Spring Boot and not to actually building a fully functional reservation system. The admin user interface is completely written in material design using Bootstrap v4 and is responsive to suite a variety of devices. The template engine used to render the admin views is Thymeleaf since the library is extremely extensible and its natural templating capability ensures templates can be prototyped without a back-end – which makes development very fast when compared with other popular template engines such as JSP.
CSS
2
star
3

Java-Coding-Arena-

Practicing all types of Java coding
Java
1
star
4

Customer-Data-Processor

Java assignment projects for processing 1M customer data
Java
1
star
5

Vehicle-showroom

A command line system for vehicle showroom - a. add any type of vehicle b. remove a vehicle c. vehicle has following description - 1. model number 2. engine type a. oil b. gas c. diesel 3. engine power 4. tire size d. vehicle has 3 type 1. normal - no extra property 2. sports - a. turbo b. engine type oil only 3. heavy - a. weight b. engine type diesel only e. expected visitor of show room is 30 f. when a new sports vehicle arrive expected visitor increase by 20 and vice versa e. show list of vehicles with current expected visitor count f. show list of vehicles with details Language: Java
Java
1
star
6

bloggingapp

We are going to build a Blogging app with following functionalities. 1. There will be two types of user. Admin & Blogger. 2. One Admin type user’s account will be system generated when the application bootstrap for the first time (No Admin type user exists in app). 3. Admin will have following functionalities: a. Log in with username/password b. Create other Admin account c. Approve / Deactivate Blogger type user’s account d. Approve and publish Blog post e. Delete any blog post 4. Blogger will have following functionality before his/her account is approved by Admin: a. Create own account and send for Admin’s approval. 5. Blogger will have following functionalities after his/her account is approved by Admin: a. Log in with username / password b. Create blog post and send for admin’s approval c. Delete own blog post d. View other blogger’s approved blog post e. Comment on other blogger’s approved blog post f. (​Extra Feature for bonus points​) Like / Dislike other blogger’s approved blog post
JavaScript
1
star