{"id":19965842,"url":"https://github.com/himu143/json-quiz-project-on-java","last_synced_at":"2026-05-08T15:16:20.537Z","repository":{"id":167477101,"uuid":"608236572","full_name":"Himu143/JSON-Quiz-project-on-Java","owner":"Himu143","description":"This Java project is made for a quiz exam, enabling the addition of quiz questions and the start of the quiz-taking procedure. It offers a thorough method that displays the right and wrong responses while also calculating the marks obtained from five randomly selected questions from a certain module, like testing.","archived":false,"fork":false,"pushed_at":"2023-03-01T16:57:07.000Z","size":13,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-01T17:17:21.692Z","etag":null,"topics":["intellij","java","json"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Himu143.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-03-01T15:49:04.000Z","updated_at":"2023-03-05T06:10:17.000Z","dependencies_parsed_at":null,"dependency_job_id":"cbc6abc3-4620-40d5-aedd-a34a9fbf4ae1","html_url":"https://github.com/Himu143/JSON-Quiz-project-on-Java","commit_stats":null,"previous_names":["himu143/json-quiz-project-on-java"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Himu143/JSON-Quiz-project-on-Java","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Himu143%2FJSON-Quiz-project-on-Java","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Himu143%2FJSON-Quiz-project-on-Java/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Himu143%2FJSON-Quiz-project-on-Java/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Himu143%2FJSON-Quiz-project-on-Java/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Himu143","download_url":"https://codeload.github.com/Himu143/JSON-Quiz-project-on-Java/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Himu143%2FJSON-Quiz-project-on-Java/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32785612,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"ssl_error","status_checked_at":"2026-05-08T08:22:45.650Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["intellij","java","json"],"created_at":"2024-11-13T02:31:41.079Z","updated_at":"2026-05-08T15:16:20.514Z","avatar_url":"https://github.com/Himu143.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Quiz-project-on-Java (Adding question and participating quiz exam)\n## Technology \u0026 Tools Used\n- Java\n- Intellij IDEA\n## Project Scenario: \n#### Create a quiz program that will take questions, option and answer from admin user and save it to the question bank. Then if any user want to give the quiz, random 5 questions will be shown to the user from the question bank.\n\nProgram output:\n1. Add Quiz\n2. Start Quiz\n\n#### if user select option 1, then system will tell user to input a question, 4 options and correct ans to save data in a quiz bank. The quiz bank will be a json file. For an example,\n\nSystem\u003ePlease add a ques here:\n\nUser\u003eWhich testing is done by developer?\n\nSystem\u003eInput options.\nOption a:\n\nUser\u003e Unit Testing\nOption b:\n\nUser\u003e Integration Testing\n\nOption c:\n\nUser\u003e Sanity Testing\nOption d:\n\nUser\u003e Regression Testing\n\nSystem\u003e Please input the correct ans\n\nUser\u003e a\n\nSystem: Quiz saved at the database. Do you want to add more? (y/n)\n\nif user press y, then the previous scenario will happen again otherwise the program will be closed.\n\nIf user select option 2,  then,\nSystem\u003e You will be asked 5 questions, each questions has 1 marks\n\n1. Which testing is done by developer?\n\n  - a. Unit Testing\n\n  - b. Integration Testing\n\n  - c. Sanity Testing\n\n  - d. Regression Testing\n\nUser\u003e a\n\nSystem\u003e Correct!\n\nelse not correct,\n\nSystem: Not correct\n\n\n#### Finally 5 different random questions will appear from your question database. At least add 15 questions from any category from testing.\nResult: You got [correct_marks] out of 5\n\n\nJSON Format:\n[\n{\n\n\"Question\":\"Which testing is done by developer?\",\n\n\"option a\":\"Unit Testing\",\n\n\"Option b\":\"Integration Testing\",\n\n\"Sanity Testing\":\"Sanity Testing\",\n\n\"Option d\":\"Regression Testing\",\n\n\"answer\":\"a\"\n\n},\n\n{\n\n\"Question\":\"Which is functional testing?\",\n\n\"option a\":\"Load Testing\",\n\n\"Option b\":\"Security Testing\",\n\n\"Sanity Testing\":\"Gorilla Testing\",\n\n\"Option d\":\"Benchmark Testing\",\n\n\"answer\":\"c\"\n\n}\n]\n\n## Video Output: \n\n\nhttps://user-images.githubusercontent.com/78273243/222193212-b3588b51-9a7a-4f3a-b324-a1cf0ec8df47.mp4\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhimu143%2Fjson-quiz-project-on-java","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhimu143%2Fjson-quiz-project-on-java","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhimu143%2Fjson-quiz-project-on-java/lists"}