0
0
No-Codeknowledge~10 mins

Stripe integration basics in No-Code - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the sentence to describe Stripe's main purpose.

No-Code
Stripe is a platform that helps businesses [1] payments online.
Drag options to blanks, or click blank then click option'
Aignore
Bdelay
Cprocess
Dcancel
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing words that mean stopping or ignoring payments.
Confusing Stripe with a marketing tool.
2fill in blank
medium

Complete the sentence to identify the type of Stripe account needed for live transactions.

No-Code
To accept real payments, you need a [1] Stripe account.
Drag options to blanks, or click blank then click option'
Atest
Blive
Cdemo
Dsandbox
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing test accounts with live accounts.
Thinking demo or sandbox accounts can process real payments.
3fill in blank
hard

Fix the error in this statement about Stripe API keys.

No-Code
Use your [1] API key to test payments safely without charging real cards.
Drag options to blanks, or click blank then click option'
Alive
Bpublic
Csecret
Dtest
Attempts:
3 left
💡 Hint
Common Mistakes
Using the live key during testing, which can charge real cards.
Confusing public and secret keys.
4fill in blank
hard

Fill both blanks to describe the two main Stripe API key types.

No-Code
Stripe provides [1] keys for public use and [2] keys for secure server use.
Drag options to blanks, or click blank then click option'
Apublishable
Bprivate
Csecret
Dpublic
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up which key is public and which is secret.
Using private instead of secret key terminology.
5fill in blank
hard

Fill all three blanks to complete the dictionary comprehension that filters Stripe charges over $50.

No-Code
high_charges = [1]: [2] for [3] in charges if charge['amount'] > 5000
Drag options to blanks, or click blank then click option'
Acharge['id']
Bcharge['amount']
Ccharge
Dcharges
Attempts:
3 left
💡 Hint
Common Mistakes
Using the whole list instead of individual charge in the loop.
Mixing keys and values in the dictionary comprehension.