0
0
No-Codeknowledge~20 mins

Filtering and conditional logic in No-Code - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Filtering and Logic Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Conditional Filtering

Imagine you have a list of numbers from 1 to 10. You want to select only the numbers that are greater than 5. Which description best explains this filtering process?

ASelecting numbers that are less than or equal to 5.
BSelecting numbers that are greater than 5.
CSelecting numbers that are exactly 5.
DSelecting all numbers regardless of their value.
Attempts:
2 left
💡 Hint

Think about the condition that decides which numbers to keep.

📋 Factual
intermediate
2:00remaining
Identifying Conditional Statements

Which of the following is an example of a conditional statement used for filtering data?

A"Sort the items alphabetically."
B"Show all items in the list."
C"Add all items to the basket."
D"If the item is red, include it in the selection."
Attempts:
2 left
💡 Hint

Look for a statement that decides based on a condition.

🚀 Application
advanced
2:00remaining
Applying Multiple Conditions

You have a list of fruits with their colors: apple (red), banana (yellow), grape (purple), lemon (yellow). You want to filter fruits that are yellow and start with the letter 'b'. Which fruits will you get?

ABanana
BApple and Grape
CBanana and Lemon
DLemon
Attempts:
2 left
💡 Hint

Check both color and first letter conditions carefully.

🔍 Analysis
advanced
2:00remaining
Analyzing Filtering Outcomes

Consider a list of numbers: [2, 4, 6, 8, 10]. You apply a filter to select numbers that are even and less than 7. What is the resulting list?

A[2, 4, 6, 8, 10]
B[4, 6, 8]
C[2, 4, 6]
D[6, 8, 10]
Attempts:
2 left
💡 Hint

Check which numbers are even and also less than 7.

Reasoning
expert
2:00remaining
Reasoning About Conditional Logic in Decision Making

A store offers a discount only if a customer buys more than 3 items and the total price exceeds $50. If a customer buys 4 items costing $12 each, will they get the discount?

ANo, because total price is less than $50.
BYes, because they bought more than 3 items and total price is $48.
CYes, because buying 4 items always qualifies for discount.
DNo, because the number of items does not matter.
Attempts:
2 left
💡 Hint

Calculate total price and check both conditions carefully.