Bird
Raised Fist0
Blockchain / Solidityprogramming~15 mins

Short-circuiting in conditions in Blockchain / Solidity - Mini Project: Build & Apply

Choose your learning style10 modes available

Start learning this pattern below

Jump into concepts and practice - no test required

or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Short-circuiting in conditions
📖 Scenario: You are building a simple blockchain transaction validator. Each transaction has a sender balance and a requested amount to send. You want to check if the transaction is valid by ensuring the sender has enough balance and the amount is positive.
🎯 Goal: Learn how to use short-circuiting in conditions to efficiently check multiple requirements in one statement.
📋 What You'll Learn
Create a dictionary called transaction with keys 'balance' and 'amount' with exact values 100 and 50
Create a variable called is_valid that uses a short-circuiting and condition to check if transaction['balance'] is greater than or equal to transaction['amount'] and transaction['amount'] is greater than 0
Print the value of is_valid
💡 Why This Matters
🌍 Real World
Short-circuiting conditions help blockchain developers quickly validate transactions without unnecessary checks, improving performance and security.
💼 Career
Understanding short-circuiting is important for writing efficient smart contracts and blockchain validation logic.
Progress0 / 4 steps
1
Create the transaction data
Create a dictionary called transaction with these exact entries: 'balance': 100 and 'amount': 50.
Blockchain / Solidity
Hint

Use curly braces to create a dictionary with keys 'balance' and 'amount'.

2
Set up the validation variable
Create a variable called is_valid and set it to False as a starting point.
Blockchain / Solidity
Hint

Just assign False to is_valid for now.

3
Use short-circuiting to check conditions
Update the variable is_valid to use a short-circuiting and condition that checks if transaction['balance'] >= transaction['amount'] and transaction['amount'] > 0.
Blockchain / Solidity
Hint

Use the and operator to combine both conditions in one line.

4
Print the validation result
Write a print statement to display the value of is_valid.
Blockchain / Solidity
Hint

Use print(is_valid) to show the result.

Practice

(1/5)
1. What does short-circuiting mean in blockchain condition checks using && and ||?
easy
A. It stops checking further conditions once the result is decided.
B. It always checks all conditions regardless of the first result.
C. It reverses the order of condition checks.
D. It only works with numeric conditions.

Solution

  1. Step 1: Understand short-circuiting concept

    Short-circuiting means the program stops checking conditions as soon as the final result is known.
  2. Step 2: Apply to && and ||

    For &&, if the first condition is false, no need to check further. For ||, if the first condition is true, no need to check further.
  3. Final Answer:

    It stops checking further conditions once the result is decided. -> Option A
  4. Quick Check:

    Short-circuiting = Stops early [OK]
Hint: Stop checking when outcome is certain [OK]
Common Mistakes:
  • Thinking all conditions always run
  • Confusing && and || behavior
  • Assuming short-circuiting only applies to numbers
2. Which of the following is the correct syntax for short-circuit AND in a blockchain smart contract condition?
easy
A. if (condition1 | condition2) { execute(); }
B. if (condition1 & condition2) { execute(); }
C. if (condition1 || condition2) { execute(); }
D. if (condition1 && condition2) { execute(); }

Solution

  1. Step 1: Identify correct AND operator syntax

    The short-circuit AND operator is &&, which checks the second condition only if the first is true.
  2. Step 2: Compare options

    if (condition1 && condition2) { execute(); } uses &&, correct for short-circuit AND. Options B and D use single & or | which are bitwise operators, not short-circuit. if (condition1 || condition2) { execute(); } uses OR operator.
  3. Final Answer:

    if (condition1 && condition2) { execute(); } -> Option D
  4. Quick Check:

    Short-circuit AND = && [OK]
Hint: Use double ampersand for AND short-circuit [OK]
Common Mistakes:
  • Using single & instead of &&
  • Confusing AND (&&) with OR (||)
  • Using bitwise operators by mistake
3. Consider this blockchain code snippet:
bool a = false;
bool b = true;
if (a && (b = false)) { }
return b;

What is the returned value?
medium
A. false
B. Syntax error
C. true
D. Runtime error

Solution

  1. Step 1: Analyze short-circuit AND behavior

    Since a is false, the b = false part is not executed due to short-circuiting.
  2. Step 2: Determine final value of b

    b remains true because the assignment did not happen. So, return b; returns true.
  3. Final Answer:

    true -> Option C
  4. Quick Check:

    False && skips second = b stays true [OK]
Hint: False && skips right side, no assignment [OK]
Common Mistakes:
  • Assuming b becomes false anyway
  • Ignoring short-circuit effect
  • Thinking code throws error
4. Find the error in this blockchain condition:
if (isValid || checkStatus()) {
execute();
}

where checkStatus() is a function that must run always.
medium
A. Function checkStatus() may not run due to short-circuiting.
B. No error, code is correct.
C. Syntax error: missing semicolon.
D. Logical AND should be used instead of OR.

Solution

  1. Step 1: Understand short-circuit OR behavior

    If isValid is true, checkStatus() will not run because of short-circuiting.
  2. Step 2: Identify problem with function call

    Since checkStatus() must always run, using || causes it to sometimes skip, which is an error.
  3. Final Answer:

    Function checkStatus() may not run due to short-circuiting. -> Option A
  4. Quick Check:

    OR short-circuit skips right if left true [OK]
Hint: OR skips right if left true, function may not run [OK]
Common Mistakes:
  • Assuming function always runs
  • Confusing syntax error with logic error
  • Using AND instead of OR without reason
5. You want to check two blockchain conditions: isOwner and hasBalance. You must run logAccess() always, but only execute transfer() if both conditions are true. Which code correctly uses short-circuiting?
hard
A. if (isOwner && hasBalance) { logAccess(); transfer(); }
B. logAccess(); if (isOwner && hasBalance) { transfer(); }
C. if (isOwner & hasBalance) { logAccess(); transfer(); }
D. if (isOwner && hasBalance && logAccess()) { transfer(); }

Solution

  1. Step 1: Identify when logAccess() must run

    logAccess() must run always, so it should be called outside the condition.
  2. Step 2: Check condition for transfer()

    transfer() runs only if both isOwner and hasBalance are true, so use && inside the if.
  3. Step 3: Analyze options

    if (isOwner && hasBalance) { logAccess(); transfer(); } puts logAccess() inside the if, so it only runs if conditions true. if (isOwner && hasBalance && logAccess()) { transfer(); } calls logAccess() inside condition, so it may not run due to short-circuiting. if (isOwner & hasBalance) { logAccess(); transfer(); } uses single & which is bitwise, not short-circuit. logAccess(); if (isOwner && hasBalance) { transfer(); } calls logAccess() first always, then conditionally transfer().
  4. Final Answer:

    logAccess(); if (isOwner && hasBalance) { transfer(); } -> Option B
  5. Quick Check:

    Call always outside, conditionally inside [OK]
Hint: Call always-run functions outside conditions [OK]
Common Mistakes:
  • Putting always-run function inside condition
  • Using bitwise & instead of &&
  • Calling functions in wrong order