VERIFIED ANSWER LIBRARY

What AI gets wrong.
What the correct answer is.

A public database of verified correct answers for the hallucinations AI models produce most frequently across regulated industries.

22+
VERIFIED ANSWERS
12
INDUSTRIES COVERED
0
LLM CALLS INVOLVED
Finance (4)HR & Employment (3)Healthcare (2)Legal (2)Security Testing (4)Software Testing (3)Programming (2)Information Technology (2)
$

Finance

CGT, GST, superannuation, Australian financial regulators

4 entries
VERIFIED ENTRY · FINANCE
Australian CGT Discount
WHAT AI COMMONLY GETS WRONG
AI frequently states a flat CGT rate (e.g. 25%) for Australian capital gains.
VERIFIED CORRECT ANSWER
Australia does not have a flat CGT rate. Individuals who hold an asset for more than 12 months receive a 50% CGT discount — only half the gain is assessable income. That is then taxed at the individual's marginal rate (0–45%).
ATO — Capital gains tax
VERIFIED ENTRY · FINANCE
Superannuation Guarantee Rate
WHAT AI COMMONLY GETS WRONG
AI often cites wrong SG rates (9%, 9.5%, 10%, 12% for current year).
VERIFIED CORRECT ANSWER
The Superannuation Guarantee rate is 11.5% for 2024–25, rising to 12% from 1 July 2025. It is legislated in the Superannuation Guarantee (Administration) Act 1992.
ATO — Super guarantee percentage
VERIFIED ENTRY · FINANCE
GST Registration Threshold
WHAT AI COMMONLY GETS WRONG
AI frequently cites wrong GST thresholds ($50K, $100K, $80K).
VERIFIED CORRECT ANSWER
The GST registration threshold is $75,000 annual turnover for most businesses, and $150,000 for non-profit organisations. These thresholds have not changed since GST was introduced in 2000.
ATO — Registering for GST
VERIFIED ENTRY · FINANCE
Australian Financial Regulators
WHAT AI COMMONLY GETS WRONG
AI confuses ATO, ASIC, APRA, and RBA — or uses US regulators (SEC, IRS, FED) in Australian context.
VERIFIED CORRECT ANSWER
Australia's financial regulators: ATO (tax administration), ASIC (corporate and markets regulation), APRA (prudential regulation of banks and super funds), RBA (monetary policy, cash rate). The SEC, IRS, and FED are US bodies with no authority in Australia.
ASIC — asic.gov.au

HR & Employment

Fair Work Act, redundancy pay, notice periods, NES entitlements

3 entries
VERIFIED ENTRY · HR & EMPLOYMENT
Fair Work Redundancy Pay Entitlements
WHAT AI COMMONLY GETS WRONG
AI frequently gets the exact weeks wrong for specific years of service.
VERIFIED CORRECT ANSWER
Fair Work Act 2009, Schedule 4 — Redundancy pay scale: 1yr=4wks, 2yrs=6wks, 3yrs=7wks, 4yrs=8wks, 5yrs=10wks, 6yrs=10wks, 7yrs=11wks, 8yrs=11wks, 9yrs=12wks, 10yrs+=12wks. Small businesses (under 15 employees) are exempt.
Fair Work Ombudsman — redundancy pay
VERIFIED ENTRY · HR & EMPLOYMENT
NES Notice Period Minimums
WHAT AI COMMONLY GETS WRONG
AI often states 1 week notice for all employees, or incorrect periods.
VERIFIED CORRECT ANSWER
NES minimum notice: <1yr service=1 week; 1–3yrs=2 weeks; 3–5yrs=3 weeks; >5yrs=4 weeks. Employees over 45 with 2+ years service get +1 week. Enterprise agreements may provide more but not less.
Fair Work Act 2009 — fairwork.gov.au
VERIFIED ENTRY · HR & EMPLOYMENT
Unfair Dismissal Minimum Employment Period
WHAT AI COMMONLY GETS WRONG
AI states various incorrect periods (3 months, 12 months for all employees).
VERIFIED CORRECT ANSWER
The minimum employment period for unfair dismissal access is 6 months for businesses with 15+ employees, and 12 months for small businesses (fewer than 15 employees). This is defined in s.383 of the Fair Work Act 2009.
Fair Work Act 2009 s.383

Healthcare

TGA vs FDA, drug dosages, clinical trials, paediatric dosing

2 entries
VERIFIED ENTRY · HEALTHCARE
TGA vs FDA — Australian Drug Approvals
WHAT AI COMMONLY GETS WRONG
AI frequently says 'FDA approved' for drugs used in Australia.
VERIFIED CORRECT ANSWER
In Australia, therapeutic goods are approved by the TGA (Therapeutic Goods Administration), not the US FDA. An FDA approval does not mean a drug is approved for use in Australia. Australian prescribers must rely on TGA-registered products.
TGA — tga.gov.au
VERIFIED ENTRY · HEALTHCARE
Metformin Paediatric Dosing
WHAT AI COMMONLY GETS WRONG
AI frequently invents dosage figures or applies adult doses to children.
VERIFIED CORRECT ANSWER
Metformin adult dose: 500–3000mg/day in divided doses. Paediatric dose (10+ years): 500–2000mg/day weight-based. Starting dose is typically 500mg twice daily. Adult dosing must not be applied to children without weight-based calculation.
AMH — amhonline.amh.net.au
🔒

Security Testing

OWASP Top 10, password hashing, HTTPS limitations, pen testing

4 entries
VERIFIED ENTRY · SECURITY TESTING
OWASP Top 10 (2021)
WHAT AI COMMONLY GETS WRONG
AI misnames items, gets the count wrong, or uses outdated lists.
VERIFIED CORRECT ANSWER
OWASP Top 10 (2021): A01 Broken Access Control, A02 Cryptographic Failures, A03 Injection, A04 Insecure Design, A05 Security Misconfiguration, A06 Vulnerable and Outdated Components, A07 Identification and Authentication Failures, A08 Software and Data Integrity Failures, A09 Security Logging and Monitoring Failures, A10 Server-Side Request Forgery.
OWASP Top 10 — owasp.org/Top10
VERIFIED ENTRY · SECURITY TESTING
Correct Password Hashing Algorithms
WHAT AI COMMONLY GETS WRONG
AI recommends MD5, SHA-1, or SHA-256 for password hashing.
VERIFIED CORRECT ANSWER
Passwords must be hashed with slow, purpose-built algorithms: Argon2id (OWASP first recommendation), bcrypt (cost factor ≥12), or scrypt. General-purpose hash functions (MD5, SHA-1, SHA-256) are fast by design — which makes them dangerous for passwords as attackers can test billions per second.
OWASP Password Storage Cheat Sheet
VERIFIED ENTRY · SECURITY TESTING
Penetration Testing vs Vulnerability Scanning
WHAT AI COMMONLY GETS WRONG
AI treats vulnerability scanning and penetration testing as the same thing.
VERIFIED CORRECT ANSWER
Vulnerability scanning is automated — tools check software versions and configurations against CVE databases. It reports potential weaknesses without confirming exploitability. Penetration testing involves a human tester actively exploiting vulnerabilities to demonstrate real business impact. Both are valuable but serve different purposes.
PTES — pentest-standard.org
VERIFIED ENTRY · SECURITY TESTING
What HTTPS Does and Does Not Protect
WHAT AI COMMONLY GETS WRONG
AI claims HTTPS prevents XSS, SQL injection, and all attacks.
VERIFIED CORRECT ANSWER
HTTPS (TLS) encrypts data in transit only. It does NOT prevent XSS (requires Content Security Policy, output encoding), SQL injection (requires parameterised queries), CSRF (requires CSRF tokens), or other application-layer attacks. HTTPS prevents eavesdropping and man-in-the-middle attacks on the transport layer only.
OWASP Transport Layer Security Cheat Sheet

Software Testing

Test pyramid, TDD, unit test definition, code coverage

3 entries
VERIFIED ENTRY · SOFTWARE TESTING
The Test Pyramid
WHAT AI COMMONLY GETS WRONG
AI inverts the pyramid — placing UI/E2E tests at the base.
VERIFIED CORRECT ANSWER
The Test Pyramid (Mike Cohn): BASE = Unit tests (most, fastest, cheapest — test isolated functions); MIDDLE = Integration tests (fewer — test component interactions); TOP = E2E/UI tests (fewest, slowest, most expensive — test full user flows). The pyramid shape shows you should have many more unit tests than UI tests.
Martin Fowler — Test Pyramid
VERIFIED ENTRY · SOFTWARE TESTING
Test Driven Development (TDD)
WHAT AI COMMONLY GETS WRONG
AI describes TDD as writing code first, then tests.
VERIFIED CORRECT ANSWER
TDD follows Red-Green-Refactor: (1) RED — write a failing test first; (2) GREEN — write minimum code to pass the test; (3) REFACTOR — improve the code while keeping tests green. The test always comes before the implementation. Writing code first then adding tests is not TDD.
Beck, K. — Test Driven Development: By Example
VERIFIED ENTRY · SOFTWARE TESTING
What a Unit Test Is
WHAT AI COMMONLY GETS WRONG
AI describes unit tests that call databases, APIs, or render UIs.
VERIFIED CORRECT ANSWER
A unit test tests a single unit of code (function, method, class) in complete isolation. All external dependencies (database, API, file system, network) must be replaced with mocks or stubs. Tests that touch real external systems are integration tests or end-to-end tests.
Martin Fowler — Unit Test
</>

Programming

Big-O complexity, algorithm time complexity, data structures

2 entries
VERIFIED ENTRY · PROGRAMMING
Binary Search Time Complexity
WHAT AI COMMONLY GETS WRONG
AI states binary search is O(n) or O(1).
VERIFIED CORRECT ANSWER
Binary search is O(log n). It requires a sorted array and divides the search space in half at each step. For 1,000,000 elements, it takes at most 20 comparisons (log₂(1,000,000) ≈ 20).
CLRS — Introduction to Algorithms
VERIFIED ENTRY · PROGRAMMING
Hash Table Lookup Complexity
WHAT AI COMMONLY GETS WRONG
AI states hash table lookup is O(log n).
VERIFIED CORRECT ANSWER
Hash table lookup is O(1) average case (amortised constant time). The key is hashed to find its bucket directly. Worst case is O(n) with many hash collisions. O(log n) is the complexity of balanced binary search trees, not hash tables.
CLRS — Introduction to Algorithms

Information Technology

OSI model, TLS versions, HTTP status codes, protocol versions

2 entries
VERIFIED ENTRY · INFORMATION TECHNOLOGY
OSI Model — 7 Layers
WHAT AI COMMONLY GETS WRONG
AI states incorrect number of OSI layers or wrong layer names.
VERIFIED CORRECT ANSWER
The OSI model has exactly 7 layers: Layer 1 Physical, Layer 2 Data Link, Layer 3 Network, Layer 4 Transport, Layer 5 Session, Layer 6 Presentation, Layer 7 Application. Mnemonic: 'Please Do Not Throw Sausage Pizza Away'.
ISO/IEC 7498-1
VERIFIED ENTRY · INFORMATION TECHNOLOGY
TLS Version History
WHAT AI COMMONLY GETS WRONG
AI references SSL as current, or mentions non-existent TLS versions.
VERIFIED CORRECT ANSWER
Current: TLS 1.3 (RFC 8446, 2018) — recommended; TLS 1.2 (RFC 5246, 2008) — acceptable minimum. Deprecated: TLS 1.0, TLS 1.1, SSL 3.0 (POODLE), SSL 2.0. TLS 1.3 removed obsolete cipher suites and is significantly faster due to 0-RTT handshake.
RFC 8446 — TLS 1.3
TEST YOUR AI AGAINST THESE RULES

Grounded checks all of this automatically.

Paste any AI response. Grounded detects the industry, applies the relevant verified rules, and tells you exactly what's wrong — and what the correct answer is.

Start testing free — 50 runs/month →

GROUNDED BY KIWIQA · VERIFIED ANSWER LIBRARY · UPDATED CONTINUOUSLY · grounded.kiwiqa.ai