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.
Write a program that inputs a string and outputs the exact string backwards (in reverse).
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.
Product
Company
Reach Out
Guides
© 2026 PseudoEditor. All rights reserved.