Your Free AI Hub & Learning Centre
Spin for daily prompts · Learn AI from scratch · Quiz yourself · Convert files · Track your budget
AI Prompt Wheel
Spin daily for one expert prompt — ChatGPT, Claude, Gemini or Perplexity.
AI Learning Hub
5-week structured course for students. Basics to agentic AI — all free.
Prompt Engineering
Master AI prompting, save tokens, learn pro techniques with templates.
AI Knowledge Quiz
175 questions · 7 categories · leaderboard · flashcard review.
Budget Calculator
Track income and expenses across 50+ global currencies. Free forever.
PDF ↔ Word Tools
Convert PDF to Word and Word to PDF. Free, browser-based, all languages.
Best AI Model in 2026
Claude Opus 4.8, GPT-5.5, Gemini 3.1 Pro compared by benchmarks.
Read →ChatGPT vs Claude 2026
Coding, writing, pricing — full head-to-head.
Read →What is Agentic AI?
The fastest-growing AI trend explained simply.
Read →Generative AI Basics
LLMs, tokens, prompts — without jargon.
Read →🎡 AI Prompt Wheel
Spin once a day · Land on an AI · Unlock one expert prompt · Build your streak
Each spin unlocks one expert-crafted prompt matched to the AI you land on. 50 prompts across ChatGPT, Claude, Gemini and Perplexity — productivity, coding, research, writing, career and more.
AI Tools Comparison 2026
5 models · 18 features · Updated June 2026
AI Knowledge Quiz
175 questions · 7 categories · Max 100 per round
🎓 AI Learning Hub
Structured AI course for students · 5 weeks · Free · No signup
What is AI? The Basics
AI vs Machine Learning vs Deep Learning. How neural networks work through analogies.
Concepts: Training data, parameters, inference, bias in AI models.
How LLMs Work
How ChatGPT, Claude and Gemini generate text. Transformers, attention mechanisms, why AI sometimes hallucinates.
Concepts: Tokens, context window, temperature, hallucination, RAG.
Prompt Engineering
Write prompts that get dramatically better outputs. Role prompting, chain-of-thought, few-shot examples, token-saving.
Concepts: Zero-shot, few-shot, CoT, constraints, output formatting.
AI Tools Guide
Which AI for which task. ChatGPT for broad tasks, Claude for coding, Gemini for research, Perplexity for sourced answers.
Concepts: Model selection, API vs chat UI, cost per token, multimodal AI.
AI Careers 2026
Prompt engineer, ML engineer, AI PM, data scientist, AI ethicist. Skills, salary ranges, portfolio projects.
Concepts: Required skills, learning roadmaps, entry-level paths.
The Three Layers of AI
Artificial Intelligence (AI) is any computer system that performs tasks requiring human-like intelligence — recognizing speech, translating languages, making decisions, creating art. It is the broadest category.
Machine Learning (ML) is a specific approach within AI. Instead of programming exact rules ("if email contains 'win a prize', mark as spam"), you show the computer thousands of examples and it learns the rules itself. This is how Netflix recommends shows and Gmail filters spam.
Deep Learning (DL) is a subset of ML that uses neural networks with many layers. Each layer detects increasingly complex patterns — from edges to shapes to objects to meaning. ChatGPT, image recognition, and self-driving cars all use deep learning.
Analogy: Think of AI as "vehicles." ML is "cars" (one type of vehicle). DL is "electric cars" (one type of car). All electric cars are cars, all cars are vehicles — but not all vehicles are electric cars.
How Neural Networks Learn
A neural network is loosely inspired by the human brain. It has layers of connected nodes (neurons). When you train it:
Step 1: Show it a picture of a cat labeled "cat." It makes a random prediction (probably wrong).
Step 2: Calculate how wrong it was (the "loss").
Step 3: Adjust millions of tiny numerical weights to be slightly less wrong next time.
Step 4: Repeat with millions of pictures. Each repetition makes tiny improvements. After billions of adjustments, it becomes excellent at recognizing cats — and dogs, cars, faces, cancer cells, etc.
Key insight: The network was never told "cats have whiskers and pointy ears." It discovered these patterns itself from the data. This is the magic of machine learning.
Supervised vs Unsupervised vs Reinforcement Learning
Supervised learning: You provide labeled examples. "This email = spam. This email = not spam." The model learns to predict labels for new data. Used in: medical diagnosis, price prediction, spam filtering.
Unsupervised learning: You provide data without labels. The model discovers hidden patterns. "These customers behave similarly — they might be a distinct segment." Used in: customer segmentation, anomaly detection, recommendation systems.
Reinforcement learning: The model learns by trial and error, receiving rewards for correct actions. This is how AlphaGo learned to beat the world champion at Go — by playing millions of games against itself. Used in: game AI, robotics, self-driving cars.
What is a Parameter?
Parameters are the learnable numbers inside an AI model. Think of them as tiny dials — each one controls how the model processes information. GPT-1 had 117 million parameters. GPT-3 had 175 billion. GPT-4 has roughly 1.8 trillion. More parameters generally means more capability, but also requires more computing power and energy to run.
What is Training Data?
Training data is the information used to teach the model. For ChatGPT, this included a significant portion of the internet — books, articles, websites, code repositories, and more. The quality and diversity of training data directly determines the quality of the AI. Biased training data produces biased AI. This is one of the biggest challenges in the field.
What is a Transformer?
The Transformer is the architecture (blueprint) behind all modern AI language models. Introduced by Google in 2017 in a paper called "Attention Is All You Need," it revolutionized AI by solving a fundamental problem: how to process text efficiently.
Before Transformers: AI read text one word at a time, left to right (like a human reading slowly). This was painfully slow and the model would "forget" the beginning of long texts by the time it reached the end.
After Transformers: AI processes all words simultaneously, with each word "looking at" every other word to understand context. This is massively parallel and dramatically faster.
The Attention Mechanism — The Key Innovation
Consider the sentence: "The cat sat on the mat because it was tired." What does "it" refer to? The cat or the mat? Humans know instantly — "it" means the cat. But how does AI know?
Attention solves this. Each word calculates a relevance score with every other word. "It" gives high attention to "cat" and low attention to "mat." This lets the model understand relationships, references, and meaning across the entire text.
Self-attention formula: For each word, compute three things: a Query (what am I looking for?), a Key (what do I contain?), and a Value (what information do I carry?). Compare each Query with all Keys. The highest-scoring Keys get the most attention. This is computed for every word simultaneously.
How ChatGPT Actually Generates Text
ChatGPT generates text one token at a time. Given all the tokens so far, it predicts the probability of every possible next token, then picks one (influenced by the temperature setting). Then it adds that token to the input and predicts the next one. And so on, token by token, until it reaches a stopping point.
Critical insight: ChatGPT does not "think" or "understand." It predicts statistically likely continuations. It has no internal model of truth or reality. This is why it can write a convincing essay about a topic it is completely wrong about — the text sounds right even when the facts are wrong. This is hallucination.
What is a Token?
AI models do not read words — they read tokens. A token is a piece of text: sometimes a whole word, sometimes part of a word, sometimes a character. "Hello" = 1 token. "ChatGPT" = about 2 tokens. "Artificial Intelligence" = about 2-3 tokens.
Why tokens matter: API pricing is per-token ($5/M for GPT-5.5 input). Context window limits are in tokens (1M for GPT-5.5). Non-English languages (Hindi, Arabic, Chinese) typically require MORE tokens per word, making them more expensive.
Quick math: 1,000 words ≈ 1,333 tokens. A typical email (200 words) ≈ 267 tokens.
Context Window
The context window is the total amount of text (in tokens) that a model can "see" at once. It includes everything: system prompt, your messages, the AI's responses, and any documents you paste.
In 2023, context windows were 4K-32K tokens. In 2026, frontier models have 1M+ token windows — enough to process entire codebases or books. Llama 4 Scout has a 10M token window.
Limitation: Research shows models can struggle with information in the middle of very long contexts (the "lost in the middle" problem). Information at the beginning and end gets more attention than information buried in the middle.
Temperature
Temperature controls randomness. At temperature 0, the model always picks the single most likely next token — giving deterministic, focused output. At temperature 1.5, it considers less likely tokens too, producing creative, varied, sometimes surprising output.
Use low (0.1-0.3) for: factual questions, code, data extraction, anything where accuracy matters.
Use high (0.8-1.2) for: creative writing, brainstorming, poetry, marketing copy.
Default (0.7) is good for most tasks.
What is Hallucination?
Hallucination is when AI generates plausible-sounding but factually incorrect information with full confidence. It invents studies that do not exist, cites cases that were never filed, and generates quotes nobody ever said. This happens because the model predicts likely text, not truthful text.
How to protect yourself: Always verify critical facts. Use Perplexity for research (it cites sources). Ask the AI "are you confident about this?" Use RAG (retrieval-augmented generation) to ground AI in real data.
What is RAG?
Retrieval-Augmented Generation is a technique where the AI searches a knowledge base before generating an answer. Instead of relying only on training data (which can be outdated or wrong), it retrieves relevant real documents and uses them as context. This dramatically reduces hallucination and enables current, accurate answers about your specific data.
🧠 Neural Network
Layers of filters. Each detects more complex patterns — edges → shapes → faces → meaning. Billions of connections trained on data.
🪙 Token
AI reads tokens, not words. "ChatGPT" ≈ 2 tokens. 1,000 tokens ≈ 750 words. Tokens affect price and speed of AI responses.
🌡️ Temperature
Controls creativity. At 0: most likely word always. At 1.5: picks randomly. Factual = 0.2. Creative = 0.8–1.2.
🔍 RAG
Retrieval-Augmented Generation. AI searches a database first, uses results to generate accurate, current answers. Cuts hallucination.
👻 Hallucination
AI confidently says something false. It predicts likely text, not factual truth. Always verify important AI outputs.
📐 Fine-Tuning
Training a general model on specific data for one task. Like a general doctor becoming a heart specialist. Costs money but gives expert results.
🔧 Agentic AI
AI that takes actions — browses web, writes code, runs tests, sends emails. Multi-step tasks without constant human input.
🔗 MCP
Model Context Protocol. Anthropic's open standard for AI to connect to databases, APIs and apps. Like USB for AI tools.
1Use AI daily
One real task per day — emails, summaries, code reviews. Daily practice is fastest.
2Iterate prompts
Never accept first output. Add "be more specific", "give examples". Small changes = big improvements.
3Compare AIs
Same question to ChatGPT, Claude, Gemini. Compare outputs. Learn which AI fits which task.
4Build a project
Build one AI-powered thing — chatbot, summarizer, quiz. Real projects teach 10x more than tutorials.
5Learn the vocab
Tokens, context window, embeddings, fine-tuning — knowing these opens career doors.
6Read release notes
Follow Anthropic, OpenAI, Google blogs. New capabilities every month. Stay current for an edge.
7Know limitations
AI hallucinates, has cutoffs, can't access real-time data without tools. Knowing limits makes you safer.
8Take our quiz daily
Even one question/day compounds. Our leaderboard tracks your progress across all categories.
9Spin for prompts
Our AI Prompt Wheel gives one expert prompt/day. Using it daily teaches prompting patterns naturally.
10Teach someone
Explaining AI to others is the fastest way to truly understand it. Start a study group or write a blog.
✍️ Prompt Engineering
Write better AI prompts · Save tokens · Get professional results every time
Role Assignment: Start with "Act as a [expert role]". Example: "Act as a senior Python developer with 10 years experience." Sets knowledge, tone and perspective.
Chain of Thought: Add "Think step by step." Dramatically improves accuracy on maths, logic and complex analysis by making AI show its working.
Few-Shot Examples: Show 1–3 examples. "Like this: Input: [X] → Output: [Y]. Now do: Input: [Z]." AI learns the pattern from examples instantly.
Output Formatting: Specify format: "Respond in JSON", "Use a table with columns X, Y, Z", "Keep it under 150 words." Structure your expectations.
Context First: Give background BEFORE your question. "I'm a marketing manager at a B2B SaaS company. Given this context, [question]." Context shapes every word.
Constraints: Tell AI what NOT to do. "Do not use jargon", "Avoid bullet points", "No code blocks." Constraints are often more powerful than instructions.
Iterative Refinement: Never accept first output. Follow up: "Make it more concise", "Add examples", "What are counterarguments?" Build on responses.
Decompose Complex Tasks: Break big asks into steps. Instead of "Write a business plan", ask: "What are the key sections?" Then build each one separately.
The Prompt Structure Framework
Every great prompt has up to 6 parts. You do not need all 6 every time, but knowing them lets you craft the right prompt for any situation:
1. Role: Who should the AI pretend to be? "Act as a senior data scientist specializing in time-series forecasting with 10 years at Fortune 500 companies."
2. Context: What background does the AI need? "I run a small e-commerce store selling handmade candles. My monthly revenue is ₹2 lakh. I have 3 employees."
3. Task: What specifically should it do? "Analyze my last 6 months of sales data and identify the 3 most actionable trends."
4. Format: How should the output look? "Present as a numbered list with each trend as a heading, 2-3 sentences of explanation, and one recommended action."
5. Constraints: What should it avoid? "Do not use technical jargon. Keep total response under 400 words. Do not suggest hiring more staff."
6. Examples: What does good output look like? Show 1-2 examples of the format and quality you expect.
Before and After: Real Prompt Improvements
❌ Weak prompt:
"Help me with my resume."
✅ Strong prompt:
"Act as a senior tech recruiter who has reviewed 10,000+ resumes. I am applying for a Senior Python Developer role at a fintech startup. Rewrite these 5 resume bullet points using the formula 'Did [action] using [technology] resulting in [measurable impact]'. Cut all buzzwords. Each bullet must be under 2 lines. After rewriting, tell me which bullet will trigger the best interview question and why."
The weak prompt gives the AI no context, no format, no constraints. It will produce generic advice. The strong prompt gives a role, context, specific task, format, constraints, and a follow-up instruction. The output will be dramatically more useful.
❌ Weak prompt:
"Explain quantum computing."
✅ Strong prompt:
"Explain quantum computing to me as if I am a smart 15-year-old who understands basic physics but has never studied quantum mechanics. Use exactly 3 analogies from everyday life. Start with what problem quantum computing solves that regular computers cannot. End with one surprising fact. Keep it under 300 words."
The Iteration Loop — How Professionals Prompt
Professional prompt engineers never expect the first output to be perfect. They use a feedback loop:
Round 1: Send your initial prompt. Read the output carefully.
Round 2: "Good start, but make the tone more casual and add a specific example for point #3."
Round 3: "The example is too technical. Replace it with something a small business owner would relate to."
Round 4: "Perfect. Now condense the whole thing to half the length without losing any key points."
Each round refines the output. This iterative approach produces dramatically better results than trying to craft one perfect prompt. Think of it as sculpting — you rough out the shape first, then refine the details.
Common Mistakes That Kill Prompt Quality
Mistake 1: Being vague. "Write something about marketing" → The AI has to guess everything. Be specific about topic, audience, format, length, and tone.
Mistake 2: Asking for too much at once. "Write a complete business plan with financial projections, marketing strategy, and operational plan" → Break this into 4-5 separate prompts, each building on the previous output.
Mistake 3: Not providing examples. If you want a specific format or style, showing one example is worth more than 100 words of description.
Mistake 4: Ignoring negative constraints. Telling AI what NOT to do ("do not use bullet points", "avoid jargon", "no more than 200 words") is often more powerful than positive instructions.
Mistake 5: Not iterating. Accepting the first output as final. Always refine.
Tokens = money and speed. Every word in your prompt costs tokens. Here's how to get more for less:
❌ Wasteful (54 tokens):
"Could you please be so kind as to help me write a professional email to my colleague thanking them for their assistance with the project we worked on last week? I would appreciate it if you could keep it brief and formal."
✅ Efficient (18 tokens):
"Write a brief formal thank-you email to a colleague for project help. Professional tone."
💡 Remove politeness
"Please", "Could you", "I would appreciate" — AI doesn't need them. Saves 5–15 tokens per prompt.
💡 Use bullets not sentences
Instructions as bullet lists instead of full sentences = 30–40% fewer tokens with same clarity.
💡 Reference don't repeat
After giving context once, say "using the above context" rather than pasting it again. Saves massively in long chats.
💡 Shorter examples
2 short few-shot examples often beat 5 long ones — and cost 60% fewer tokens.
💡 System prompt once
In API: put repeated context in system prompt, not user message. System tokens are cached at lower cost by most providers.
💡 1000 words ≈ 1333 tokens
Use this to estimate API costs. Shorter prompts = faster responses + cheaper bills. Compound savings at scale.
Act as a data analyst. Analyse [DATA/TOPIC]. Identify: 1) Key trends, 2) Anomalies, 3) Root causes, 4) Actionable recommendations. Structured format. 300 words max.
Senior engineer code review. Check: bugs, security, performance, readability. Rate severity HIGH/MEDIUM/LOW. Show corrected version for each issue. [PASTE CODE]
Write professional email. Purpose: [PURPOSE]. Recipient: [ROLE]. Tone: [FORMAL/CASUAL]. Key points: [LIST]. Under 150 words. Include subject line.
Teach me [TOPIC] using Feynman technique. Step 1: Simple explanation (no jargon). Step 2: Real-world analogy. Step 3: Common misconceptions. Step 4: Test question for me.
💰 Budget Calculator
Track income and expenses · 50+ currencies · Free forever
📄 PDF ↔ Word Converter
Convert PDF to Word and Word to PDF · All languages preserved · 100% browser-based · Free
Choose a PDF file, then press Convert. All languages (Hindi, Arabic, Chinese, Tamil, etc.) are preserved. Your file never leaves your device.
Click to select a PDF file
Or drag and drop here
Choose a .docx file, then press Convert. Hindi, Arabic, Chinese, Tamil and every other language render using your browser's real fonts — nothing is approximated or skipped.
Click to select a Word document (.docx)
Or drag and drop here
🔒 100% Private
Files are read in your browser. Nothing is uploaded to a server. Your documents stay on your device.
🌍 All Languages
PDF→Word keeps the original Unicode text. Word→PDF uses your browser's real font rendering, so Hindi, Arabic, Chinese and Tamil all display correctly.
⚡ Instant & Free
No account, no watermark, no limit. Free forever. Works on any modern browser.
📖 Choose When Ready
Nothing converts until you press Convert. Pick your file first, check the name, then convert.
Blog & Guides
AI tutorials, comparisons and guides — updated regularly
Best AI Model in 2026: Complete Ranking
Claude Opus 4.8 vs GPT-5.5 vs Gemini 3.1 Pro — benchmarks, pricing, real-world use.
Read article →ChatGPT vs Claude: Honest 2026 Comparison
Coding, writing, ecosystem and pricing — full head-to-head breakdown.
Read article →What is Agentic AI? Complete Guide
Claude Code, Gemini Spark, Devin — why agentic AI matters in 2026.
Read article →Generative AI for Beginners (2026)
LLMs, tokens, hallucination, RAG — every key term without jargon.
Read article →Test Your AI Knowledge — Free Quiz
175 questions across 7 categories. Play now free.
Read article →🏅 Leaderboard
Top quiz scorers