Lab 1.1 – Hello, World!
Score: 1.0
Task: Write a program that prints "Hello, World!" to the screen.
📌 Algorithm
- Call the built‑in
print()function. - Pass the string
"Hello, World!"as an argument. - The string is displayed on the screen when the program runs.
💻 Solution Code
print("Hello, World!")
📤 Expected Output
Hello, World!
📖 Step‑by‑Step Explanation
print()is a built‑in function that displays output.- The text inside quotes
"Hello, World!"is a string. - When you run the program, the text appears on the screen.