Test your pseudocode knowledge with exam-style questions. Write your code, test it against hidden cases, and level up your skills.
Your Progress
Challenge
Write a program that takes a person's name as input and outputs a greeting in the exact format "Hello [name]".
Write a program that asks the user for an integer and outputs "Even" if the number is divisible by 2, and "Odd" otherwise.
Write a program that takes an integer `n` as input and prints its multiplication table from 1 to 5. Each line should just output the result of `n * i`.
Write a program that prompts the user to enter 5 positive numbers one by one. The program should evaluate them sequentially and output the largest number entered.
Assume an array `arr` holds 5 elements. Write a program that inputs 5 numbers sequentially to populate the array, and then inputs a final target number `T`. The program should output "Found" if `T` exists within the array, and "Not Found" otherwise.
Write a program that calculates the factorial of a given positive integer `N`. Output the final mathematical result.
Write a program that takes an integer `N` and outputs the `N`th number in the Fibonacci sequence. Assume the sequence starts with 1, 1, 2, 3, 5... so if N=4, output 3.
Write a program that asks for a lowercase string and outputs the integer number of vowels (a, e, i, o, u) it contains.
A library charges $0.50 per day for a book that is up to 7 days late, and $1.00 per day for every day after that (e.g. 8 days late = 7 * 0.50 + 1 * 1.00 = 4.50). Write a program that inputs the total number of days late and outputs the total fine.
Product
Company
Reach Out
Guides
© 2026 PseudoEditor. All rights reserved.