Purpose
This document specifies the design framework for an interactive plant identification quiz system on AnimalSafeRanch.com. The quiz will help ranchers test and improve their ability to identify toxic plants in the field, ultimately reducing poisoning incidents through education.
---
Learning Objectives
Primary Goals
Users who complete the quiz system should be able to:
- Identify the 15 most dangerous toxic plants found on Texas ranches
- Recognize key distinguishing features of each plant
- Differentiate between toxic plants and similar non-toxic species
- Understand seasonal timing of maximum toxicity
- Apply quick-action knowledge in emergency situations
Target Outcomes
| Metric | Target |
|---|---|
| Species recognition accuracy | >80% for common plants |
| Feature identification | >70% accuracy |
| Seasonal awareness | >85% accuracy |
| Quiz completion rate | >60% of starters |
| Knowledge retention (30-day retest) | >70% of original score |
Quiz Structure
Quiz Types
#### 1. Basic Identification Quiz
- Multiple choice (4 options)
- Photo-based identification
- Mix of whole plant and detail images
- Immediate feedback after each question
- Multiple choice and matching
- Close-up feature identification
- Look-alike species comparison
- Scenario-based questions
- Region-selectable (East TX, Central TX, West TX, etc.)
- Plants common to selected region
- Habitat matching
- Seasonal timing questions
- Scenario-based
- "What would you do?" format
- Symptom-to-toxin matching
- Time-pressure element (optional)
- Covers all plant species and response procedures
- Minimum passing score: 80%
- Certificate issued upon passing
- One retake allowed per 24 hours
Question Types
Type 1: Image Identification
[PLANT IMAGE]
What plant is shown in this image?
○ A. Locoweed ○ B. Milkvetch (non-toxic) ○ C. White clover ○ D. Alfalfa ```
Type 2: Feature Matching
Match the plant feature to the correct species:
- Square stems, purple-tinged leaves ___
- Spiny seed pods ("thorn apple") ___
- Inflated, papery seed pods ___
- Black berries on purple stems ___
Type 3: Seasonal Timing
When is oak toxicity at its HIGHEST risk level in Texas?
○ A. January-February (winter browse) ○ B. March-April (spring budding) ○ C. June-July (summer heat) ○ D. November-December (leaf fall) ```
Type 4: Scenario-Based
You find a cow down with bright red blood on the mouth, rapid breathing, and staggering. The animal was grazing a pasture with young sorghum-sudan grass that was frost-damaged last night.
What is the MOST LIKELY cause?
○ A. Oak poisoning ○ B. Prussic acid (cyanide) poisoning ○ C. Nitrate poisoning ○ D. Hardware disease ```
Type 5: Look-Alike Comparison
[TWO SIDE-BY-SIDE IMAGES]
Image A shows a TOXIC plant. Image B shows a NON-TOXIC look-alike. Which feature BEST distinguishes the toxic plant?
○ A. Leaf shape ○ B. Flower color ○ C. Stem characteristics ○ D. Growth habit ```
Type 6: Hotspot/Click
[PLANT IMAGE WITH CLICKABLE ZONES]
Click on the MOST TOXIC part of this cocklebur plant.
[User clicks on an area]
Feedback: "Correct! The cotyledon (seed leaf) stage of cocklebur seedlings is most toxic. The seeds themselves are also highly toxic." ```
---
Technical Specifications
Platform Requirements
- Touch-friendly interface
- Fast image loading (optimized images)
- Progress saving (cookie/local storage)
- Accessibility compliant (WCAG 2.1 AA)
- Score tracking
- User progress storage
- Analytics integration
- Certificate generation
Database Schema (Conceptual)
``` PLANTS
- plant_id (PK)
- common_name
- scientific_name
- toxicity_level
- texas_regions
- peak_season
- toxic_parts
- symptoms
- question_id (PK)
- quiz_type
- plant_id (FK)
- question_text
- question_type
- difficulty_level
- correct_answer
- explanation
- image_id (PK)
- plant_id (FK)
- image_type (whole, leaf, flower, seed, etc.)
- file_path
- alt_text
- credit
- user_id (PK)
- quiz_type
- highest_score
- completion_date
- certificate_issued
- answer_id (PK)
- question_id (FK)
- answer_text
- is_correct
- feedback_text
Performance Requirements
| Metric | Requirement |
|---|---|
| Page load time | <3 seconds |
| Image load time | <1 second each |
| Question transition | <0.5 seconds |
| Score calculation | Instant |
| Certificate generation | <5 seconds |
User Interface Design
Quiz Start Screen
``` ┌─────────────────────────────────────────────────────────────┐ │ │ │ [LOGO: AnimalSafeRanch.com] │ │ │ │ TEXAS TOXIC PLANT IDENTIFICATION QUIZ │ │ │ │ ┌──────────────────┐ ┌──────────────────┐ │ │ │ BASIC QUIZ │ │ ADVANCED QUIZ │ │ │ │ 10-15 questions │ │ 20-25 questions │ │ │ │ ~10 minutes │ │ ~20 minutes │ │ │ │ [START] │ │ [START] │ │ │ └──────────────────┘ └──────────────────┘ │ │ │ │ ┌──────────────────┐ ┌──────────────────┐ │ │ │ REGIONAL QUIZ │ │ EMERGENCY QUIZ │ │ │ │ 15 questions │ │ 10-15 questions │ │ │ │ ~15 minutes │ │ ~10 minutes │ │ │ │ [START] │ │ [START] │ │ │ └──────────────────┘ └──────────────────┘ │ │ │ │ ┌──────────────────────────────────┐ │ │ │ CERTIFICATION ASSESSMENT │ │ │ │ 50 questions | 80% to pass │ │ │ │ Earn your certificate! │ │ │ │ [START] │ │ │ └──────────────────────────────────┘ │ │ │ │ Your Progress: [======== ] 60% │ │ Highest Score: 85% on Basic Quiz │ │ │ └─────────────────────────────────────────────────────────────┘ ```
Question Display Screen
``` ┌─────────────────────────────────────────────────────────────┐ │ Question 5 of 15 Score: 3/4 │ │ ────────────────────────────────────────────────────────── │ │ │ │ ┌───────────────────────────────────────────────────────┐ │ │ │ │ │ │ │ [PLANT PHOTOGRAPH] │ │ │ │ │ │ │ │ 400px × 300px │ │ │ │ │ │ │ └───────────────────────────────────────────────────────┘ │ │ │ │ What plant is shown in this image? │ │ │ │ ┌─────────────────────────────────────────────────────┐ │ │ │ ○ A. Jimsonweed │ │ │ └─────────────────────────────────────────────────────┘ │ │ ┌─────────────────────────────────────────────────────┐ │ │ │ ○ B. Nightshade │ │ │ └─────────────────────────────────────────────────────┘ │ │ ┌─────────────────────────────────────────────────────┐ │ │ │ ○ C. Morning glory (non-toxic) │ │ │ └─────────────────────────────────────────────────────┘ │ │ ┌─────────────────────────────────────────────────────┐ │ │ │ ○ D. Bindweed │ │ │ └─────────────────────────────────────────────────────┘ │ │ │ │ Progress: [████████░░░░░░] 33% │ │ │ │ [SKIP] [SUBMIT ANSWER] │ │ │ └─────────────────────────────────────────────────────────────┘ ```
Feedback Screen (After Answer)
``` ┌─────────────────────────────────────────────────────────────┐ │ │ │ ✓ CORRECT! │ │ │ │ ┌───────────────────────────────────────────────────────┐ │ │ │ [PLANT PHOTOGRAPH] │ │ │ └───────────────────────────────────────────────────────┘ │ │ │ │ This is JIMSONWEED (Datura stramonium) │ │ │ │ Key identifying features: │ │ • Large, trumpet-shaped white/purple flowers │ │ • Spiny seed capsules ("thorn apple") │ │ • Coarsely toothed leaves │ │ • Strong, unpleasant odor │ │ │ │ Toxicity: HIGH - All parts toxic, especially seeds │ │ Peak season: Spring through fall │ │ │ │ [Learn More About Jimsonweed →] │ │ │ │ [NEXT QUESTION →] │ │ │ └─────────────────────────────────────────────────────────────┘ ```
Results Screen
``` ┌─────────────────────────────────────────────────────────────┐ │ │ │ QUIZ COMPLETE! │ │ │ │ Your Score: 12/15 (80%) │ │ │ │ ★★★★☆ │ │ │ │ ┌───────────────────────────────────────────────────────┐ │ │ │ BREAKDOWN: │ │ │ │ │ │ │ │ Plant ID Questions: 8/10 ████████░░ │ │ │ │ Feature Questions: 2/3 ██████░░░░ │ │ │ │ Seasonal Questions: 2/2 ██████████ │ │ │ └───────────────────────────────────────────────────────┘ │ │ │ │ Areas to Review: │ │ • Nightshade species identification │ │ • Pigweed vs. similar weeds │ │ │ │ [VIEW INCORRECT ANSWERS] │ │ │ │ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │ │ │ RETAKE QUIZ │ │ SHARE SCORE │ │ TRY ANOTHER │ │ │ └─────────────┘ └─────────────┘ └─────────────┘ │ │ │ │ Ready to prove your knowledge? │ │ [Take the Certification Assessment →] │ │ │ └─────────────────────────────────────────────────────────────┘ ```
---
Gamification Elements
Scoring System
| Achievement | Points |
|---|---|
| Correct answer | 10 |
| Streak bonus (3+) | +5 per additional |
| Speed bonus (<10 sec) | +3 |
| Perfect quiz | +50 |
| First try pass | +25 |
Badges/Achievements
| Badge | Requirement | Icon |
|---|---|---|
| First Steps | Complete first quiz | 🌱 |
| Quick Learner | 80%+ on first attempt | ⚡ |
| Regional Expert | 90%+ on regional quiz | 🗺️ |
| Plant Detective | Complete advanced quiz | 🔍 |
| Emergency Ready | Pass emergency quiz | 🚨 |
| Certified Safe | Pass certification | 🏆 |
| Perfect Score | 100% on any quiz | ⭐ |
| Consistent | Complete quiz 5 days in a row | 📅 |
Leaderboards (Optional)
- Weekly top scores
- Regional rankings
- All-time high scores
- Anonymous display option
Analytics Integration
Metrics to Track
- Average time per question
- Drop-off points
- Return visits
- Most confused plant pairs
- Improvement over time
- Knowledge gaps by region
- Image effectiveness
- Feedback helpfulness
Implementation Phases
Phase 1: MVP (Month 1)
- Basic identification quiz (15 questions)
- Core image library (15 plants × 3 images)
- Simple scoring and feedback
- Mobile-responsive design
Phase 2: Enhancement (Month 2)
- Advanced quiz
- Regional quiz
- Progress tracking
- Badge system
Phase 3: Full Launch (Month 3)
- Certification assessment
- Certificate generation
- Analytics dashboard
- Leaderboards
Phase 4: Iteration (Ongoing)
- Question expansion
- User feedback incorporation
- Seasonal content updates
- A/B testing optimization
Content Requirements
Image Assets Needed
| Plant | Images Required |
|---|---|
| Locoweed | Whole plant, leaves, flowers, pods |
| Oak | Buds, leaves, acorns, bark |
| Oleander | Whole shrub, flowers, leaves |
| Jimsonweed | Whole plant, flowers, seed pods, leaves |
| Nightshade | Multiple species, leaves, berries |
| Perilla mint | Whole plant, leaves, stems, flowers |
| Cocklebur | Seedlings, mature plant, burs |
| Pigweed | Multiple species, whole plant, flowers |
| Sorghum | Various growth stages |
| Water hemlock | Whole plant, leaves, stems, roots |
| Plus 5 additional species | 3-5 images each |
Question Writing Guidelines
- Clear, unambiguous wording
- Only one correct answer
- Plausible distractors (wrong answers)
- Educational feedback for all answers
- Consistent difficulty within quiz type
- Texas-relevant context
