Previous Next
0 / 13
Module DEMO-33-61DEMO-OOP-33

Lab Session Notice

DEMO-OOP-33 โ€ข Object Oriented Programming

Browser-only practice

Problem Statement

Read a course name, day, and room code, then print a short lab-session notice.

Input Format

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

  1. course name
  2. day name
  3. room code

Output Format

Print the exact report in this order:

  1. Notice
  2. Room
  3. Ready

Sample Testcases

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

Sample #1
Public sample
Java
Monday
R1
Notice: Java on Monday
Room: R1
Ready: YES
Input: course name = "Java", day name = "Monday", room code = "R1".
Key calculation(s): notice = "Java" + " on " + "Monday" | "Notice: " + notice = "Notice: Java on Monday" | "Room: " + "R1" = "Room: R1".
Output:
Notice: Java on Monday
Room: R1
Ready: YES
Sample #2
Public sample
Math
Tuesday
L2
Notice: Math on Tuesday
Room: L2
Ready: YES
Input: course name = "Math", day name = "Tuesday", room code = "L2".
Key calculation(s): notice = "Math" + " on " + "Tuesday" | "Notice: " + notice = "Notice: Math on Tuesday" | "Room: " + "L2" = "Room: L2".
Output:
Notice: Math on Tuesday
Room: L2
Ready: YES

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