Previous
0 / 10
Module DEMO-33-64DEMO-OOP-33

Release Checklist Helper

DEMO-OOP-33 โ€ข Object Oriented Programming

Browser-only practice

Problem Statement

Create Main.java and ReleaseChecklist.java. Read feature name, reviewer, and remaining bug count, then print the release decision.

Input Format

Input is given as whitespace-separated tokens in this order:

  1. feature name
  2. reviewer name
  3. remaining bugs

Output Format

Print the exact report in this order:

  1. Feature
  2. Reviewer
  3. Status

Sample Testcases

Submit runs every public testcase in this browser. Results and code never leave this device.

Sample #1
Public sample
Login
Lina
0
Feature: Login
Reviewer: Lina
Status: READY
Input: feature name = "Login", reviewer name = "Lina", remaining bugs = 0.
Key calculation(s): ready = 0 == 0 ? "READY" : "HOLD" | "Feature: " + "Login" = "Feature: Login" | "Reviewer: " + "Lina" = "Reviewer: Lina".
Output:
Feature: Login
Reviewer: Lina
Status: READY
Sample #2
Public sample
Profile
Omar
2
Feature: Profile
Reviewer: Omar
Status: HOLD
Input: feature name = "Profile", reviewer name = "Omar", remaining bugs = 2.
Key calculation(s): ready = 2 == 0 ? "READY" : "HOLD" | "Feature: " + "Profile" = "Feature: Profile" | "Reviewer: " + "Omar" = "Reviewer: Omar".
Output:
Feature: Profile
Reviewer: Omar
Status: HOLD

Web terminal

C, C++, Java, and Python run locally in a browser VM. No worker or visualizer is used.

Saved in this browser
Editor settings