Excel Practice Test

โ–ถ

Excel is the most flexible calculator you'll ever own. Type =2+2 into any cell and press Enter. Boom โ€” the answer's right there. No app to launch. No buttons to hunt for. Just a worksheet that remembers every keystroke and lets you change one number to instantly recalculate the rest. That's what makes the Excel calculator so powerful for everything from a quick tip split to a 30-year mortgage amortization schedule with monthly principal and interest broken out across every payment.

Here's the thing: most people who open excel formulas for the first time don't realize the formula bar itself is a fully functional scientific calculator. You don't even need to reference cells. Type =(75+85+92)/3 and the average appears. Wrap it in parentheses, add exponents with the caret symbol, throw in a SQRT or ABS, and Excel handles math that would otherwise require a graphing calculator. The catch? You have to know which keys do what โ€” and which functions speed things up.

This guide walks you through three layers. First, the quick stuff: direct entry into the formula bar, the status-bar Quick Calculator, and order of operations. Second, the function-based layer using excel sum formula, AVERAGE, MIN, MAX, ROUND, and ABS to do calculations that scale across hundreds of rows. Third โ€” and where Excel really shines โ€” building reusable calculator templates for mortgages, loans, BMI, calories, ROI, grades, and tips that you can save once and reuse forever.

Worth knowing before you start: Excel uses standard PEMDAS order of operations, just like you learned in school. Parentheses first, then exponents, then multiplication and division left-to-right, then addition and subtraction. Forget this and your loan payment calculator will be off by thousands of dollars. The other gotcha? Cell references. When you copy a formula down a column, Excel adjusts cell references automatically โ€” unless you lock them with the dollar sign. That's where absolute reference excel becomes the most important skill for any template builder.

By the end of this guide you'll have working mortgage, loan amortization, BMI, ROI, tip, and weighted grade calculators saved as .xlsx templates. You'll know which built-in functions handle which kinds of math. And you'll understand why a $5 calculator app on your phone will never match what a five-minute Excel template can do for serious financial planning, school work, or business analysis. Ready? Open a blank workbook. Let's build.

Fair warning before you dive in: building reusable Excel calculator templates takes a different mindset than just doing one-off math. You're designing for future-you and possibly future-coworkers who'll plug different numbers into the same template months from now. That means clean labels in column A, color-coded input cells, locked formulas, and protection on cells that shouldn't be edited. Spend ten extra minutes on layout and naming and you'll save hours of confusion later when someone (probably you) returns to the file six months down the road.

Worth noting that if function excel is the single most useful function for calculator templates beyond the basics. IF lets your calculator make decisions: if BMI is under 18.5 show "Underweight", if loan payment exceeds 30% of income show a warning, if grade is below 70 highlight in red. Combined with AND, OR, and nested IFs, the IF family turns dumb arithmetic into intelligent decision tools that actually guide users to the right answer rather than just spitting out raw numbers.

Excel Calculator by the Numbers

๐Ÿงฎ
=
Starts Every Formula
๐Ÿ”ข
7
Core Math Functions
๐Ÿ’ฐ
PMT
Loan Payment Function
๐Ÿ“‹
$A$1
Absolute Lock Syntax
โญ
6
Status Bar Metrics
๐Ÿ’ป
.xlsx
Template File Extension
Practice Excel Calculator Skills With FREE Excel Questions

Three Ways to Use Excel as a Calculator

๐Ÿงฎ Direct Formula Bar Entry

Click any cell, type =2+2 or =(75+85+92)/3 and press Enter. The cell stores your formula and shows the result. Great for one-off math without saving anything.

๐Ÿ“Š Cell-Based Calculations

Put numbers into separate cells, then write =A1+B1 or =(A1+B1)*C1 in a result cell. Change A1 and everything recalculates instantly. This is where Excel beats every calculator app.

โšก Quick Calculator Status Bar

Select any range and look at the bottom-right of the Excel window. The status bar shows Sum, Average, and Count without writing any formula. Right-click to add Min, Max, and Numerical Count.

๐Ÿ”ข Function-Based Math

Use built-in functions like SUM, AVERAGE, MIN, MAX, ROUND, ABS, and PMT for math that would otherwise need a scientific or financial calculator. Functions scale across thousands of rows.

๐Ÿ’พ Reusable Template Files

Save a workbook as .xlsx Template and you've got a permanent calculator file. Open it, plug in numbers, get answers, close without saving. Mortgage, loan, BMI, tip, and grade templates work this way.

Open Excel right now and click cell A1. Type =15*4+27 and hit Enter. The cell shows 87. That's it. You just used Excel as a calculator without referencing anything. The formula bar across the top of the window still shows =15*4+27 if you click back on A1, which means you can edit the formula later โ€” something a phone calculator can't do.

Now try this. Type 10 into A1, 20 into B1, and 5 into C1. In D1, type =(A1+B1)*C1. You'll see 150. Change A1 to 50. D1 instantly becomes 350. This is the entire reason Excel exists. Numbers in one place, math in another, instant recalculation. No retyping the whole equation.

Look at the bottom-right corner of the Excel window. After selecting cells A1:C1, the status bar shows Sum: 35, Average: 11.67, Count: 3. That's the Quick Calculator panel. It's free real-time math without writing a single formula. Right-click that area and you can enable Min, Max, and Numerical Count too โ€” giving you six instant calculations on any selection.

For more complex math, Excel handles parentheses, exponents (use the caret ^), and standard operators. =2^10 equals 1024. =SQRT(144) returns 12. =ABS(-50) returns 50. The excel math functions library covers logarithms, trigonometry, rounding, and statistics. Most people never touch those โ€” but knowing they exist means you'll never need another math app.

One trick separates beginners from power users: the F2 key. Click a cell with a formula, press F2, and Excel highlights every cell that formula references in a different color. Press Escape to cancel any edit. F9 evaluates the selected portion of a formula in-place โ€” incredibly useful when debugging complex nested formulas that aren't returning what you expect on the first try.

What about negative numbers? Excel handles them like any calculator. =-50+25 returns -25. But watch out: if you type -50+25 into a cell WITHOUT the leading equals sign, Excel reads it as a label and stores the literal text. Always start formulas with =. That single character is what flips Excel from a spreadsheet into a calculator. Forget it and nothing works.

Worth knowing about the Quick Analysis tool. Select a range of numbers and a small icon appears at the bottom-right of the selection. Click it. Excel suggests sum, average, count, percent of total, and running total โ€” all without typing any formulas. Great for one-off analysis. For permanent templates you'll still want to write formulas yourself so you control exactly what each cell does.

Keyboard shortcuts make calculator work dramatically faster in Excel. Press Alt + = below a column of numbers and Excel auto-inserts a SUM formula. Press Ctrl + ; to insert today's date. Press Ctrl + Shift + % to format as percentage. Press Ctrl + Shift + $ to format as currency. These four shortcuts alone save hours over the course of building serious financial templates from scratch and feel natural within a week.

FREE Excel Formulas Questions and Answers
Drill SUM, AVERAGE, IF, MIN, MAX, ROUND, ABS, and PMT formulas through real-world calculator practice.
FREE Excel Functions Questions and Answers
Master the function library that powers every Excel calculator template from mortgages to grade averages.

Order of Operations: PEMDAS in Excel

๐Ÿ“‹ Parentheses

Parentheses always execute first. =(2+3)*4 equals 20, but =2+3*4 equals 14. That single set of parens completely changes the result. When building any calculator template, wrap every logical group in parens even when you think they're unnecessary. It costs nothing and prevents math errors that compound across hundreds of rows in a mortgage amortization or grade calculator.

Nested parentheses execute innermost first, exactly like algebra class. =((10+5)*2)-3 evaluates 10+5 first, then multiplies by 2, then subtracts 3, giving 27. Excel color-codes matching parens as you type โ€” green for outer, then through a rainbow of colors for deeper nesting levels.

๐Ÿ“‹ Exponents

Use the caret ^ symbol for exponents. =5^2 returns 25. =2^10 returns 1024. For square roots, use the SQRT function: =SQRT(64) returns 8. For more general roots, raise to a fractional power: =125^(1/3) returns 5, the cube root of 125.

Exponents are critical for compound interest calculations. The formula =Principal*(1+Rate)^Years gives the future value of an investment compounded annually. Drop the parens around (1+Rate) and you'll get garbage results because exponents execute before addition. Always parenthesize the base of an exponent when it contains math.

๐Ÿ“‹ Multiplication & Division

Multiplication uses the asterisk * and division uses the forward slash /. Both execute left-to-right at the same priority level. =20/4*2 equals 10, not 2.5 โ€” because Excel reads it as (20/4)*2. If you wanted 20/(4*2), wrap the multiplication in parens.

Percentages work too. =100*15% returns 15. Excel automatically reads the % sign as divide-by-100. This makes tip calculators, sales tax math, and percentage-off discounts trivial. Just multiply the base amount by the percentage cell and Excel handles the conversion behind the scenes without any extra steps.

๐Ÿ“‹ Addition & Subtraction

Addition (+) and subtraction (-) execute last, also left-to-right. Standard =10-5+3 equals 8, not 2. Most calculator errors come from forgetting this order and assuming subtraction happens before addition. It doesn't. They're equal priority and run in order.

For long addition chains across many cells, skip the plus signs entirely and use =SUM(A1:A100). It's cleaner, harder to mistype, and updates automatically if you insert new rows in the middle of the range. SUM is one of the most-used functions in any Excel calculator template.

Time to build something real. Open a new workbook and label cells A1 through A4: Loan Amount, Annual Rate, Term (Years), Monthly Payment. Type sample data into B1:B3 โ€” say 250000 for loan, 0.065 for rate (6.5%), and 30 for years. In B4, type =PMT(B2/12, B3*12, -B1). The PMT function returns the monthly payment for a fixed-rate loan. You should see roughly $1,580.17.

What just happened? PMT takes three required arguments: rate per period (annual rate divided by 12 months), number of periods (years times 12 months), and present value (the loan amount, entered negative because it's money you receive). The result is what you pay each month. Change B1 to 300000 and B4 instantly updates to roughly $1,896. That's the magic of a cell-based Excel calculator.

For a full mortgage amortization schedule, you'll need three more functions. IPMT calculates the interest portion of any specific payment: =IPMT(B2/12, A8, B3*12, -B1) where A8 contains the payment number (1, 2, 3...). PPMT calculates the principal portion the same way. Add IPMT and PPMT together for any row and you'll get back the monthly payment from B4. This is how banks build amortization tables โ€” and now you can too. See pmt function excel for a deeper walkthrough with downloadable examples.

Here's where absolute references become essential. When you copy the IPMT formula down 360 rows for a 30-year mortgage, you need B2, B3, and B1 to STAY pointing at the same input cells. But A8 should change to A9, A10, A11 as it goes down. Press F4 after clicking on B2 to add dollar signs: $B$2. Now copy the formula down. The locked references stay put while A8 increments. Forget this and your amortization table will be junk.

For an ROI calculator, you only need two inputs and one formula. Label A1 "Initial Investment", A2 "Final Value". Put numbers in B1 and B2. In B3, type =(B2-B1)/B1 and format the cell as percentage. That's the simple ROI. For annualized ROI over multiple years, add a Years cell in B3 and use =((B2/B1)^(1/B3))-1. This uses the exponent operator from earlier โ€” and it's why understanding PEMDAS matters for real money math.

Want to save this as a template? File โ†’ Save As โ†’ choose Excel Template (.xltx) as the file type. Now anyone in your household or office can open the template, fill in their loan amount, and get instant payment calculations without overwriting your original. Build it once, use it forever. That's the workflow that makes Excel the calculator of choice for accountants, real estate agents, and financial planners across the US.

One more pro tip: use Form Controls for cleaner input. Go to Developer tab โ†’ Insert โ†’ Spin Button. Link it to a cell, set min/max values, and now users can click up/down arrows instead of typing numbers. For loan amounts, link a spinner to B1 with min 50000, max 1000000, increment 5000. Suddenly your excel multiple if conditions template feels like a real app. Excel's developer tools turn spreadsheets into interactive calculators with surprisingly little effort.

One final touch separates great calculator templates from merely functional ones: data validation. Click your input cell, go to Data โ†’ Data Validation, and set rules. For a loan amount, set type to Decimal, minimum 1000, maximum 10000000. Excel now rejects any entry outside that range and shows a helpful error message you can customize. Combined with cell protection and color-coding, validation creates calculator templates that practically can't be broken โ€” exactly what you want when sharing the file with family, coworkers, or clients who'll use it for important real-world decisions.

Calculator Templates You Can Build in Excel

๐Ÿ 
Mortgage Calculator
Full amortization table with monthly principal and interest breakdown across the entire loan term.
๐Ÿ’ฐ
Loan Amortization
Standard 30-year mortgage shows every payment from month 1 to month 360 with running balance.
๐ŸŽ“
Grade Calculator
Weighted average across assignments, midterms, and finals. Adjust weights and watch the final grade update.
๐Ÿฅ
BMI Calculator
Weight in kg divided by height in meters squared. Add IF statements for health categories.
๐Ÿฝ๏ธ
Tip Calculator
Bill amount times tip percent, plus optional split-by-people. Quick template for restaurant nights out.
๐Ÿ“ˆ
ROI Calculator
Simple and annualized return on investment. Add Years for compound annual growth rate (CAGR).

Build Your First Calculator Template: 10-Step Process

Open a blank workbook and decide which inputs the user will type
Label your input cells clearly in column A (Loan Amount, Rate, Term, etc.)
Type sample data into column B so you can test as you build
Identify which built-in function handles your math (PMT, SUM, AVERAGE, IF)
Write the formula in a result cell starting with an equals sign
Press F4 on any cell that should NOT change when copied (input cells, constants)
Test by changing inputs and verifying the result updates correctly
Apply cell formatting โ€” currency, percentage, decimal places โ€” for clarity
Add data validation to input cells to prevent invalid entries (Data โ†’ Data Validation)
Save the file as Excel Template (.xltx) so users can reuse without overwriting your master
Protect your formulas with one click

Once your calculator template works, lock the formula cells so users can only edit inputs. Select the input cells (B1:B3 for a loan calculator). Right-click โ†’ Format Cells โ†’ Protection tab โ†’ uncheck Locked. Then go to Review tab โ†’ Protect Sheet โ†’ enter a password. Now users can only type into B1:B3 โ€” every formula cell is protected. This single step transforms a fragile worksheet into a bulletproof Excel calculator that survives years of use without anyone accidentally deleting the PMT formula in B4.

Grade calculators reveal where Excel truly outperforms hand math. Most school grading uses weighted categories โ€” homework 20%, quizzes 20%, midterm 25%, final 35% โ€” and a weighted average is painful to compute manually each time grades change. In Excel? Trivial. Put category names in A1:A4, your scores in B1:B4, and weights in C1:C4. In B5, type =SUMPRODUCT(B1:B4,C1:C4)/SUM(C1:C4). That's the entire formula. Change any score and B5 updates instantly.

If you'd rather use plain AVERAGE for unweighted classes, how to calculate average in excel covers AVERAGE, AVERAGEIF, and AVERAGEIFS. Use AVERAGEIF when you only want to average grades above a threshold, like =AVERAGEIF(B1:B20, ">=70") to drop failing grades from your GPA estimation. The conditional version turns a static calculator into something that filters on the fly.

BMI calculators are even simpler. One formula. Label A1 "Weight (kg)" and A2 "Height (cm)". In B3, type =B1/(B2/100)^2. Done. The division by 100 converts cm to meters, and the caret squares that value. Add an IF chain in B4 to classify the result: =IF(B3<18.5,"Underweight",IF(B3<25,"Normal",IF(B3<30,"Overweight","Obese"))). Now you've got a BMI calculator with category labels โ€” better than what most fitness apps provide, and you built it in two minutes.

Tip calculators are the fastest template anyone can build. Label A1 "Bill Amount", A2 "Tip %", A3 "Number of People". In B4 type =B1*B2 for tip amount. In B5 type =B1+B4 for total. In B6 type =B5/B3 for per-person split. Format B2 as percentage. Now you've got a restaurant-night-out template that handles any split. Save it. Email it to friends. They'll never need a tip calculator app again.

Calorie calculators get more interesting because they combine multiple inputs. The Mifflin-St Jeor equation for BMR (basal metabolic rate) is: =10*Weight + 6.25*Height - 5*Age + 5 for men, with -161 instead of +5 for women. Multiply BMR by an activity factor (1.2 sedentary, 1.55 moderate, 1.9 very active) to get TDEE โ€” total daily energy expenditure. Use an IF function on a sex input cell and a VLOOKUP on activity level and you've got a calorie calculator that rivals dedicated apps.

For ROI calculations, you can extend the basic formula significantly. CAGR (compound annual growth rate) is =(FinalValue/InitialValue)^(1/Years)-1. Format as percentage. For real estate ROI, factor in mortgage interest, taxes, maintenance, and rental income across multiple years. Each becomes a row, each year a column, and the bottom row uses SUM to total cash flows. The excel pv formula can then compute net present value of all cash flows for sophisticated investment analysis.

The MAX, MIN, and ROUND functions polish any calculator template. MAX(B1:B10) returns the highest value in a range โ€” useful for showing the best test score. MIN does the opposite. ROUND limits decimals: =ROUND(B5, 2) rounds to 2 decimal places, perfect for currency display. For absolute values (always positive), use ABS: =ABS(B2-B1) shows the difference between two numbers regardless of which is larger. Combine these with your core formulas for production-quality calculator templates.

Conditional formatting takes calculator templates from functional to genuinely useful. Select your result cells, click Home โ†’ Conditional Formatting โ†’ Color Scales. Pick a red-to-green gradient. Now low values appear red and high values green automatically. For a grade calculator, this instantly shows which categories drag your average down. For a budget calculator, overspending categories light up red without anyone having to scan the numbers. Visual feedback is the secret sauce that turns spreadsheets into genuinely usable tools rather than dense walls of digits that nobody actually reads.

IFERROR is the function that polishes any calculator for public use. Wrap divisions in it: =IFERROR(B1/B2, 0) returns zero instead of #DIV/0! when B2 is empty. Wrap VLOOKUPs in it to handle missing reference data gracefully. The function takes two arguments โ€” the formula to try, and what to show if there's an error. Templates without IFERROR display ugly error codes whenever inputs are blank. Templates with IFERROR display clean zeros or friendly messages. That single touch makes the difference between amateur and professional calculator templates.

Excel Calculator vs Phone Calculator App

Pros

  • Reusable templates save hours over repeated manual math
  • Cell references mean one change updates dozens of dependent calculations
  • Built-in PMT, IPMT, and PPMT handle real financial math out of the box
  • Save as .xltx template and share with family or coworkers instantly
  • Form controls (spinners, drop-downs) make spreadsheets feel like apps
  • Conditional formatting visually highlights pass/fail or high/low values
  • Works offline, no subscription needed for basic math and templates

Cons

  • Requires Excel installed or browser version with Microsoft account
  • Learning curve for absolute references and order of operations
  • Formula errors silently produce wrong answers โ€” testing is essential
  • Mobile Excel can be awkward for entering complex formulas on phones
  • Templates need protection or users can accidentally delete formula cells
  • Some advanced functions only work in Microsoft 365, not Office 2024

From Blank Sheet to Working Calculator: The Build Order

โœ๏ธ

Write inputs in column A, values in column B. Decide upfront which cells the user types into and which cells display results. Sketch on paper if it helps.

๐Ÿ”ข

Put realistic sample values in your input cells before writing any formulas. This lets you sanity-check results against known-good answers as you build the math.

๐Ÿงฎ

Build the main calculation. Use PMT for loans, SUMPRODUCT for weighted averages, simple arithmetic for BMI and tips. Always start with the equals sign.

๐Ÿ”’

Press F4 on cells that shouldn't change when copied. Input cells and constants usually get locked with dollar signs. Loop-iterating cells stay relative.

๐Ÿงช

Try zero, negative numbers, very large numbers, and percentages. Wrap any divisions in IFERROR to prevent #DIV/0! errors when users leave inputs blank.

๐Ÿ’„

Currency for dollar amounts, percentage for rates, two decimals for everything else. Color-code input cells differently from result cells so users know where to type.

๐Ÿ›ก๏ธ

Unlock input cells, lock everything else, protect the sheet with a password. Now users can only edit what you intended them to edit. The formulas are bulletproof.

๐Ÿ’พ

File โ†’ Save As โ†’ Excel Template (.xltx). Now opening the template creates a new copy, leaving your original calculator intact for unlimited reuse over years.

FREE Excel MCQ Questions and Answers
Multiple-choice questions covering Excel calculator skills, formulas, functions, and template-building scenarios.
FREE Excel Questions and Answers
Comprehensive Excel practice spanning formula bar usage, function syntax, and reusable calculator templates.
Master Excel Functions With FREE Functions Questions

Excel Questions and Answers

How Do I Use Excel as a Calculator?

Click any cell, type the equals sign, then your math expression, then press Enter. For example, =15*4+27 returns 87. You can also reference other cells: type 10 in A1, 20 in B1, then =A1+B1 in C1 to get 30. Excel becomes a calculator the moment you start a cell with =. Without the equals sign, Excel treats your input as literal text or a number, not a calculation.

What Is the Quick Calculator in Excel?

The Quick Calculator is the panel at the bottom-right of the Excel window. Select any range of cells with numbers and the status bar shows Sum, Average, and Count automatically. Right-click that area to add Min, Max, and Numerical Count. It's the fastest way to do basic math without writing any formulas. The values update in real time as you change your selection across the worksheet.

Which Function Calculates Monthly Loan Payments in Excel?

Use the PMT function. The syntax is =PMT(rate, number_of_periods, present_value). For a monthly mortgage, divide the annual rate by 12 and multiply years by 12. Example: =PMT(0.065/12, 30*12, -250000) returns the monthly payment for a $250,000 loan at 6.5% over 30 years. Always enter the loan amount as negative because it's money you receive. The result will be positive, representing your payment.

How Do I Make a Reusable Calculator Template in Excel?

Build your calculator with input cells, formulas, and formatting. Then click File โ†’ Save As, choose Excel Template (.xltx) as the file type, and save. From then on, opening the template creates a new copy of the workbook, leaving your master file intact. Anyone you share the template with can open it, plug in their numbers, and close without overwriting the original. Templates are the right way to share calculators.

What Does PEMDAS Mean in Excel Formulas?

PEMDAS is the order Excel uses to evaluate math: Parentheses first, then Exponents (caret ^), then Multiplication and Division left-to-right, then Addition and Subtraction last. The formula =2+3*4 returns 14, not 20, because multiplication happens before addition. To force a different order, use parentheses: =(2+3)*4 returns 20. When in doubt, add extra parens โ€” they make formulas clearer and prevent silent calculation errors.

How Do I Lock Cell References in an Excel Calculator?

Click on a cell reference inside a formula and press F4. This adds dollar signs to make the reference absolute: =A1 becomes =$A$1. Press F4 repeatedly to cycle through $A$1 (full lock), A$1 (row only), $A1 (column only), and A1 (no lock). Locked references stay pointing at the same cell when you copy the formula. This is essential for amortization tables and any calculator that copies formulas down a column.

Can I Build a Mortgage Amortization Schedule in Excel?

Yes. Set up inputs for loan amount, rate, and term in cells B1:B3. Use PMT in B4 for the monthly payment. Create a payment number column (1 to 360 for a 30-year mortgage). For each row, use IPMT to calculate the interest portion and PPMT for the principal portion. Add a running balance column. Lock B1:B3 with F4 when copying formulas. The result is a full month-by-month amortization schedule.

What Functions Should I Use for a Grade Calculator?

Use SUMPRODUCT divided by SUM for weighted grade calculators. Put scores in one column, weights in another, then write =SUMPRODUCT(B1:B4,C1:C4)/SUM(C1:C4). For unweighted averages, use AVERAGE. To drop failing grades, use AVERAGEIF with a threshold. Add IF statements to convert numeric grades to letter grades (90+ = A, 80+ = B, etc.). MAX shows your best score, MIN shows your worst.

How Do I Build a BMI Calculator in Excel?

Enter weight in kilograms in cell B1 and height in centimeters in B2. In B3, type =B1/(B2/100)^2. The formula converts cm to meters, squares the result, and divides weight by it โ€” that's standard BMI. For categories, add a nested IF in B4: =IF(B3<18.5,"Underweight",IF(B3<25,"Normal",IF(B3<30,"Overweight","Obese"))). Format input cells in a different color so users know exactly where to type their data.

Are Form Controls Useful for Excel Calculators?

Yes โ€” they make spreadsheets feel like real apps. Enable the Developer tab in File โ†’ Options โ†’ Customize Ribbon. Then Developer โ†’ Insert โ†’ Form Controls lets you add spin buttons, scroll bars, drop-downs, and check boxes. Link each control to a cell, and changing the control updates the linked cell. Users click arrows instead of typing, which prevents invalid entries. Great for loan amounts, interest rates, and any bounded numeric input.
โ–ถ Start Quiz