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

Welcome Agenda

DEMO-OOP-33 โ€ข Object Oriented Programming

Browser-only practice

Problem Statement

Read three course names and print them as a simple welcome agenda.

Input Format

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

  1. first course
  2. second course
  3. third course

Output Format

Print the exact report in this order:

  1. Session 1
  2. Session 2
  3. Session 3

Sample Testcases

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

Sample #1
Public sample
Java
Math
Physics
Session 1: Java
Session 2: Math
Session 3: Physics
Input: first course = "Java", second course = "Math", third course = "Physics".
Key calculation(s): "Session 1: " + "Java" = "Session 1: Java" | "Session 2: " + "Math" = "Session 2: Math".
Output:
Session 1: Java
Session 2: Math
Session 3: Physics
Sample #2
Public sample
OOP
DB
AI
Session 1: OOP
Session 2: DB
Session 3: AI
Input: first course = "OOP", second course = "DB", third course = "AI".
Key calculation(s): "Session 1: " + "OOP" = "Session 1: OOP" | "Session 2: " + "DB" = "Session 2: DB".
Output:
Session 1: OOP
Session 2: DB
Session 3: AI

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