Reading Practice

true-false-not-given

/* Basic Reset & Body Styling */ body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #f8f8f8; } /* Main Layout Container */…

/* Basic Reset & Body Styling */ body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #f8f8f8; } /* Main Layout Container */ .toc-layout { display: flex; flex-direction: row; max-width: 1200px; margin: 0 auto; padding: 40px 20px; background: #f5f5f1; gap: 30px; } /* Table of Contents (TOC) Sidebar */ .toc-sidebar { width: 25%; flex-shrink: 0; position: sticky; top: 100px; align-self: flex-start; height: fit-content; background-color: #fff; padding: 20px; border-radius: 12px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); overflow-y: auto; max-height: calc(100vh - 120px); z-index: 10; } .toc-sidebar h3 { color: #000; margin-top: 0; padding: 0 0 10px 0; font-size: 1.3em; border-bottom: 1px solid #dcdcdc; margin-bottom: 15px; } .toc-sidebar ul { list-style: none; padding: 0; margin: 0; } .toc-sidebar ul li { margin-bottom: 12px; } .toc-sidebar ul li a { text-decoration: none; color: #333; font-weight: 500; display: block; padding: 8px 10px; border-radius: 8px; transition: background-color 0.3s ease, color 0.3s ease; } .toc-sidebar ul li a:hover, .toc-sidebar ul li a.active { background-color: #FBC462; color: #000; } /* Main Content Area */ .toc-content { flex: 1; min-width: 0; background-color: #fff; padding: 25px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); z-index: 1; } .toc-content h1 { color: #000; font-size: 2.8em; margin-bottom: 20px; text-align: center; border-bottom: 2px solid #FBC462; padding-bottom: 10px; } .toc-content h2 { color: #333; font-size: 2.2em; margin-top: 60px; margin-bottom: 25px; border-left: 4px solid #FBC462; padding-left: 15px; } .toc-content h3 { color: #444; font-size: 1.6em; margin-top: 30px; margin-bottom: 15px; } .toc-content h4 { color: #555; font-size: 1.3em; margin-top: 20px; margin-bottom: 10px; } .toc-content p { margin-bottom: 15px; text-align: justify; } .toc-content ul, .toc-content ol { margin-bottom: 15px; padding-left: 25px; } .toc-content ul li, .toc-content ol li { margin-bottom: 8px; } .toc-content a { color: #000; text-decoration: underline; transition: color 0.3s ease; } .toc-content a:hover { color: #FBC462; text-decoration: none; } /* Info Box Styling */ .info-box { background-color: #FFF8E1; border-left: 5px solid #FBC462; padding: 15px 20px; margin: 20px 0; border-radius: 10px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); } .info-box p { margin: 0; color: #333; } /* Specific styles for step-by-step guide */ .step-by-step { counter-reset: step-counter; } .step-by-step .step { background-color: #fff; border: 1px solid #ddd; border-left: 5px solid #FBC462; padding: 20px; margin-bottom: 20px; border-radius: 8px; position: relative; box-shadow: 0 2px 5px rgba(0,0,0,0.05); } .step-by-step .step::before { counter-increment: step-counter; content: "Step " counter(step-counter); position: absolute; top: -15px; left: 20px; background-color: #000; color: #fff; padding: 5px 10px; border-radius: 5px; font-weight: bold; font-size: 0.9em; } .step-by-step .step h3 { margin-top: 0; padding-top: 10px; color: #000; } /* Interactive Exercises Container */ .interactive-exercises-container { background-color: #f5f5f1; border: 2px solid #fbc462; padding: 20px; border-radius: 12px; max-width: 900px; /* Wider for reading passages */ margin: 40px auto; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); text-align: center; } .interactive-exercises-container > h2 { /* Direct child h2 */ color: #000; font-size: 1.8em; margin-bottom: 15px; border-left: none; padding-left: 0; } .exercise-section { background-color: #fff; border: 1px solid #eee; padding: 25px; border-radius: 10px; margin-top: 20px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); text-align: left; margin-bottom: 30px; } .exercise-section h3 { color: #000; margin-top: 0; margin-bottom: 15px; font-size: 1.4em; text-align: center; } .exercise-question { margin-bottom: 15px; font-size: 1.1em; line-height: 1.5; } .exercise-passage-title { font-size: 1.4em; font-weight: bold; color: #000; text-align: center; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px dashed #FBC462; } .exercise-passage-paragraph { margin-bottom: 15px; text-align: justify; } .exercise-statements-list { list-style: none; padding: 0; margin: 20px 0; border: 1px solid #ddd; border-radius: 8px; background-color: #f9f9f9; padding: 15px; } .exercise-statements-list li { margin-bottom: 8px; font-weight: bold; color: #555; } .exercise-options label { display: block; margin-bottom: 8px; cursor: pointer; font-size: 1em; background-color: #f0f0f0; padding: 10px 15px; border-radius: 8px; border: 1px solid #ddd; transition: background-color 0.2s ease, border-color 0.2s ease; } .exercise-options label:hover { background-color: #e5e5e5; border-color: #ccc; } .exercise-options input[type="radio"] { margin-right: 8px; } .exercise-feedback { margin-top: 15px; padding: 10px; border-radius: 8px; font-weight: bold; display: none; /* Hidden by default */ } .exercise-feedback.correct { background-color: #e6ffe6; color: #006600; border: 1px solid #a3e6a3; } .exercise-feedback.incorrect { background-color: #ffe6e6; color: #cc0000; border: 1px solid #e6a3a3; } .exercise-button { background-color: #000; color: #fff; padding: 10px 20px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: background-color 0.3s ease, transform 0.2s ease; border: none; display: inline-block; cursor: pointer; margin-top: 15px; } .exercise-button:hover { background-color: #FBC462; color: #000; transform: translateY(-2px); } .reset-button { background-color: #6c757d; /* Gray button */ margin-left: 10px; } .reset-button:hover { background-color: #5a6268; } .highlight-yellow { color: #FBC462; /* Your primary accent color */ font-weight: bold; } .highlight-red { color: #cc0000; /* For errors/dislikes */ font-weight: bold; } .highlight-green { color: #006600; /* For positives/improvements */ font-weight: bold; } /* FAQ Section (using
& ) */ .faq-section { margin-top: 40px; padding: 20px; background-color: #f9f9f9; border-radius: 12px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); } .faq-section h3 { text-align: center; color: #000; margin-bottom: 25px; } .faq-section details { background-color: #fff; border: 1px solid #ddd; border-radius: 8px; margin-bottom: 10px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); } .faq-section summary { font-weight: bold; padding: 15px 20px; cursor: pointer; color: #333; list-style: none; /* Hide default arrow */ position: relative; } .faq-section summary::marker { display: none; } .faq-section summary::after { content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 1.2em; color: #FBC462; transition: transform 0.2s ease; } .faq-section details[open] summary::after { content: '-'; transform: translateY(-50%) rotate(0deg); /* No rotation needed for '-' */ } .faq-section details[open] summary { border-bottom: 1px solid #eee; } .faq-section details p { padding: 10px 20px 15px 20px; margin: 0; font-size: 0.95em; color: #555; } /* Related Guides Carousel */ .carousel-container { margin-top: 40px; overflow: hidden; padding: 40px 30px; background-color: #f5f5f1; border-radius: 12px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); position: relative; } .carousel-title { text-align: center; color: #000; margin-bottom: 25px; font-size: 1.8em; font-weight: 700; } .carousel-wrapper { display: flex; justify-content: flex-start; overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 0 10px; scroll-snap-type: x mandatory; gap: 30px; } .carousel-item { flex: 0 0 auto; width: 300px; background-color: #fff; border: 1px solid #ddd; border-radius: 8px; padding: 20px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08); scroll-snap-align: start; transition: transform 0.3s ease; display: flex; flex-direction: column; } .carousel-item:hover { transform: translateY(-5px); } .carousel-item h4 { color: #000; margin-top: 0; font-size: 1.2em; min-height: 50px; } .carousel-item p { font-size: 0.9em; color: #555; min-height: 80px; flex-grow: 1; } .carousel-item a { display: inline-block; background-color: #000; color: #fff; padding: 8px 15px; border-radius: 8px; text-decoration: none; margin-top: 10px; transition: background-color 0.3s ease; font-weight: 600; } .carousel-item a:hover { background-color: #FBC462; color: #000; } .carousel-button { position: absolute; top: 50%; transform: translateY(-50%); background-color: rgba(0, 0, 0, 0.6); color: #fff; border: none; padding: 10px 15px; cursor: pointer; font-size: 1.5em; border-radius: 50%; z-index: 10; transition: background-color 0.3s ease; } .carousel-button:hover { background-color: rgba(0, 0, 0, 0.8); } .carousel-button.left { left: 10px; } .carousel-button.right { right: 10px; } /* Responsive Adjustments */ @media (max-width: 992px) { .toc-layout { flex-direction: column; margin: 15px auto; padding: 15px; } .toc-sidebar { position: static; width: 100%; margin-right: 0; margin-bottom: 25px; max-height: none; } .toc-sidebar h3 { text-align: center; padding-bottom: 5px; margin-bottom: 10px; } .toc-sidebar ul { display: flex; flex-wrap: wrap; justify-content: center; padding: 0 10px; } .toc-sidebar ul li a { padding: 6px 12px; font-size: 0.9em; text-align: center; } .toc-content { width: 100%; padding: 15px; } .toc-content h1 { font-size: 2em; } .toc-content h2 { font-size: 1.6em; } .toc-content h3 { font-size: 1.3em; } .carousel-item { width: 280px; margin: 0 10px; } } @media (max-width: 768px) { .toc-layout { margin: 10px; padding: 10px; } .toc-content h1 { font-size: 1.8em; } .toc-content h2 { font-size: 1.4em; } .carousel-wrapper { flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; } .carousel-item { min-width: 85%; scroll-snap-align: start; } .carousel-button { display: none; } } @media (max-width: 480px) { .toc-sidebar ul li a { font-size: 0.85em; padding: 5px 10px; } .carousel-item { min-width: 95%; } }

IELTS Reading: True/False/Not Given - Practice, Tips & Strategy

Welcome to your essential guide for **IELTS Reading True/False/Not Given (T/F/NG)** questions. This question type is a cornerstone of the IELTS Reading test, designed to assess your ability to locate and understand specific information, and to distinguish between facts, contradictions, and information that is simply not present in the text.

Mastering T/F/NG requires precision and careful analysis, as it often involves subtle differences in wording and the ability to avoid making assumptions based on your own knowledge. This page will provide you with a detailed understanding of this question type, a step-by-step strategy, common pitfalls to avoid, expert tips, and **interactive practice questions** with detailed explanations to help you prepare effectively.

For an overall strategy for the reading test, explore our main IELTS Reading Practice page.

Understanding the True/False/Not Given Question Type

In T/F/NG questions, you will be given a series of statements. Your task is to decide, based *only* on the information in the reading passage, whether each statement is:

  • TRUE: if the statement agrees with the information in the passage.
  • FALSE: if the statement contradicts the information in the passage.
  • NOT GIVEN: if there is no information about the statement in the passage.

Key Characteristics:

  • You must base your answer **solely on the text**. Do not use your general knowledge.
  • The statements will usually follow the order of information in the passage.
  • The language in the statements will almost always be **paraphrased** or use **synonyms** of the language in the passage.
  • The biggest challenge is often distinguishing between **FALSE** and **NOT GIVEN**.

Key Skills Tested

This question type primarily assesses your ability to:

  • Locate specific information: Quickly find the relevant part of the text that discusses the statement.
  • Understand explicit meaning: Accurately interpret what the text directly states.
  • Identify contradiction: Recognize when a statement presents information that is the opposite of what is in the text.
  • Distinguish between fact and absence of fact: Determine if information is genuinely absent or merely implied.
  • Recognize paraphrasing and synonyms: Connect ideas expressed in different words.

Step-by-Step Strategy to Master True/False/Not Given

Follow these steps for an effective approach to T/F/NG questions:

Step 1: Read the Instructions Carefully

Ensure you understand whether you need to write "TRUE/FALSE/NOT GIVEN" or "T/F/NG". Sometimes, the test might use "Yes/No/Not Given" for statements about the author's opinion, so always double-check.

Step 2: Read the Statements First and Underline Keywords

Before reading the passage, go through all the T/F/NG statements. This gives you an idea of what information to look for.

  • Underline keywords: Identify the most important nouns, verbs, adjectives, and adverbs in each statement. These will be your "search terms" in the passage.
  • Look for limiting words: Pay special attention to words like "only," "all," "never," "always," "most," "some," "primarily," "every." These words often determine the truthfulness of a statement.
  • Paraphrase keywords: Think of possible synonyms or paraphrases for your keywords. The passage will rarely use the exact same words.

Example Statement: All students must attend the orientation session.

Keywords: All, students, must, attend, orientation session.

Possible paraphrases: every, required, participate, introductory meeting.

Step 3: Locate Relevant Information in the Passage

Now, read the passage, but not in extreme detail. Your goal is to find the section that *might* contain information related to each statement.

  • Scan for keywords: Use the keywords (and their synonyms) you identified in Step 2 to quickly scan the passage.
  • Statements usually follow order: T/F/NG statements generally follow the order of information in the passage. So, the information for statement 2 will likely be found after statement 1 and before statement 3. This helps you narrow down your search.
  • Read the surrounding sentences: Once you locate a keyword, read the sentence it's in, and the sentences immediately before and after it, to fully understand the context.

Step 4: Compare the Statement with the Text

This is the most critical step. Carefully compare the meaning of the statement with the meaning of the relevant part of the text.

  • TRUE: If the statement's meaning is **exactly the same** as the information in the text, even if different words are used (paraphrasing).
  • FALSE: If the statement's meaning **directly contradicts** the information in the text. There must be evidence in the text that proves the statement wrong.
  • NOT GIVEN: If the text does **not provide enough information** to say whether the statement is true or false. The topic might be mentioned, but not the specific detail in the statement.

Example:

Statement: "The company primarily focuses on renewable energy sources."

Text 1: "The company's main efforts are directed towards solar and wind power." $\rightarrow$ TRUE (primarily focuses = main efforts; renewable energy sources = solar and wind power)

Text 2: "The company has recently shifted its focus away from fossil fuels towards nuclear power." $\rightarrow$ FALSE (contradicts "primarily focuses on renewable energy sources")

Text 3: "The company announced its new energy policy last month." $\rightarrow$ NOT GIVEN (mentions energy policy, but not its focus on renewable sources)

Step 5: Process of Elimination and Review

  • Cross out answered statements: As you confidently answer a statement, mark it off. This helps you focus on the remaining ones.
  • Don't leave blanks: Always attempt every question. If you're unsure, make an educated guess.
  • Double-check tricky ones: Pay extra attention to statements you marked as NOT GIVEN or FALSE. Ensure you have clear evidence for FALSE, and no evidence for NOT GIVEN.

Common Pitfalls and How to Avoid Them

  • Confusing FALSE with NOT GIVEN: This is the most common mistake.
    • FALSE means the text *says the opposite*.
    • NOT GIVEN means the text *doesn't say anything* about it, either for or against.
    If you can't find *any* information to confirm or deny the statement, it's NOT GIVEN. If you find information that directly contradicts it, it's FALSE.
  • Using general knowledge: Forget everything you know about the topic. Your answer must come *only* from the passage.
  • Keyword matching without understanding meaning: Just because a few words from the statement appear in the passage doesn't mean it's TRUE. The context or overall meaning might be different. Always understand the full sentence.
  • Misinterpreting limiting words: Words like "all," "only," "never" are critical. If a statement says "All students" but the text says "Most students," the statement is FALSE.
  • Spending too much time: If you've scanned thoroughly and can't find information, it's likely NOT GIVEN. Don't waste too much time searching for something that isn't there.

Tips and Tricks for Success

  • Focus on precise wording: Every word in the statement matters. Look for exact matches in meaning, even if the words are different.
  • Identify opinion vs. fact: T/F/NG questions are usually about factual information. If a statement includes an opinion, ensure it's presented as a fact in the text.
  • Think of opposites for FALSE: If you think a statement might be FALSE, try to formulate its opposite. If the text supports the opposite, then it's FALSE.
  • "Not Given" often involves specific details: If the passage discusses a general topic but the statement asks about a very specific detail (e.g., a precise date, number, or specific reason) that isn't mentioned, it's likely NOT GIVEN.
  • Practice paraphrasing: The more you practice identifying synonyms and rephrased ideas, the better you'll become at T/F/NG.
  • Sequence is your friend: Use the sequential nature of these questions to your advantage. Once you find the answer for statement 1, you know to look for statement 2's answer immediately after that point in the text.

Interactive Practice Section: True/False/Not Given

This section provides interactive questions across multiple practice sets to help you master the True/False/Not Given question type. For each statement, decide if it is True, False, or Not Given based on the provided passage. You will receive immediate feedback and detailed explanations.

Practice Set 1

Frequently Asked Questions (FAQs)

Your Questions Answered

What is the difference between False and Not Given?

FALSE means the information in the statement directly contradicts what is stated or implied in the passage. There is evidence in the text to prove the statement wrong. NOT GIVEN means the information in the statement is simply not present in the passage, and you cannot determine if it's true or false based on the text alone.

Can I use my own knowledge to answer T/F/NG questions?

Absolutely not. You must only use the information explicitly stated or clearly implied in the reading passage. Using outside knowledge is a common mistake that leads to incorrect answers.

Do the statements always follow the order of the passage?

Yes, for True/False/Not Given questions, the statements almost always follow the order of information in the reading passage. This is a helpful strategy to locate the relevant sections quickly.

What should I do if I can't find any information for a statement?

If you have scanned the relevant section of the passage carefully and cannot find any information that either confirms or contradicts the statement, then it is most likely "Not Given." Don't spend too much time searching for something that isn't there.

How important is paraphrasing in T/F/NG questions?

Paraphrasing is extremely important. The statements will rarely use the exact same words as the passage. You need to be able to recognize synonyms and rephrased ideas to correctly match the meaning.

Conclusion

Mastering True/False/Not Given questions is a critical step towards achieving a high score in the IELTS Reading module. It demands meticulous attention to detail, a strong grasp of paraphrasing, and the discipline to rely solely on the provided text.

By consistently applying the strategies outlined, particularly focusing on the precise meaning of each statement and distinguishing carefully between contradictory information (False) and absent information (Not Given), you will significantly improve your accuracy. Continue to practice with diverse texts, and your confidence in tackling this question type will grow, bringing you closer to your target band score.

http://ielts-reading-true-false-not-given-js-logic
IELTS Reading: True/False/Not Given - Practice, Tips & Strategy { "@context": "http://schema.org", "@type": "WebPage", "name": "IELTS Reading: True/False/Not Given - Practice, Tips & Strategy", "description": "Comprehensive guide for IELTS Reading True/False/Not Given questions, including strategies, tips, common pitfalls, and interactive practice exercises with detailed explanations.", "url": "https://atomic-temporary-240268778.wpcomstaging.com/ielts-preparation-in-india/ielts-reading-practice/question-types/true-false-not-given/", "isPartOf": { "@type": "WebSite", "name": "IELTS Training Camp", "url": "https://atomic-temporary-240268778.wpcomstaging.com/" }, "mainEntity": { "@type": "Article", "headline": "IELTS Reading: True/False/Not Given - Practice, Tips & Strategy", "description": "Comprehensive guide for IELTS Reading True/False/Not Given questions, including strategies, tips, common pitfalls, and interactive practice exercises with detailed explanations.", "image": "https://placehold.co/1200x630/FBC462/000?text=IELTS+TFN+Guide", "datePublished": "2025-07-06T22:30:00+01:00", "dateModified": "2025-07-06T22:30:00+01:00", "author": { "@type": "Person", "name": "IELTS Training Camp Team" }, "publisher": { "@type": "Organization", "name": "IELTS Training Camp", "logo": { "@type": "ImageObject", "url": "https://placehold.co/600x60/000/FFF?text=IELTS+Training+Camp+Logo" } }, "mainEntityOfPage": { "@type": "WebPage", "@id": "https://atomic-temporary-240268778.wpcomstaging.com/ielts-preparation-in-india/ielts-reading-practice/question-types/true-false-not-given/" } } } { "@context": "http://schema.org", "@type": "FAQPage", "mainEntity": [ { "@type": "Question", "name": "What is the difference between False and Not Given?", "acceptedAnswer": { "@type": "Answer", "text": "FALSE means the information in the statement directly contradicts what is stated or implied in the passage. There is evidence in the text to prove the statement wrong. NOT GIVEN means the information in the statement is simply not present in the passage, and you cannot determine if it's true or false based on the text alone." } }, { "@type": "Question", "name": "Can I use my own knowledge to answer T/F/NG questions?", "acceptedAnswer": { "@type": "Answer", "text": "Absolutely not. You must only use the information explicitly stated or clearly implied in the reading passage. Using outside knowledge is a common mistake that leads to incorrect answers." } }, { "@type": "Question", "name": "Do the statements always follow the order of the passage?", "acceptedAnswer": { "@type": "Answer", "text": "Yes, for True/False/Not Given questions, the statements almost always follow the order of information in the reading passage. This is a helpful strategy to locate the relevant sections quickly." } }, { "@type": "Question", "name": "What should I do if I can't find any information for a statement?", "acceptedAnswer": { "@type": "Answer", "text": "If you have scanned the relevant section of the passage carefully and cannot find any information that either confirms or contradicts the statement, then it is most likely 'Not Given.' Don't spend too much time searching for something that isn't there." } }, { "@type": "Question", "name": "How important is paraphrasing in T/F/NG questions?", "acceptedAnswer": { "@type": "Answer", "text": "Paraphrasing is extremely important. The statements will rarely use the exact same words as the passage. You need to be able to recognize synonyms and rephrased ideas to correctly match the meaning." } } ] } /* Basic Reset & Body Styling */ body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #f8f8f8; } /* Main Layout Container */ .toc-layout { display: flex; flex-direction: row; max-width: 1200px; margin: 0 auto; padding: 40px 20px; background: #f5f5f1; gap: 30px; } /* Table of Contents (TOC) Sidebar */ .toc-sidebar { width: 25%; flex-shrink: 0; position: sticky; top: 100px; align-self: flex-start; height: fit-content; background-color: #fff; padding: 20px; border-radius: 12px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); overflow-y: auto; max-height: calc(100vh - 120px); z-index: 10; } .toc-sidebar h3 { color: #000; margin-top: 0; padding: 0 0 10px 0; font-size: 1.3em; border-bottom: 1px solid #dcdcdc; margin-bottom: 15px; } .toc-sidebar ul { list-style: none; padding: 0; margin: 0; } .toc-sidebar ul li { margin-bottom: 12px; } .toc-sidebar ul li a { text-decoration: none; color: #333; font-weight: 500; display: block; padding: 8px 10px; border-radius: 8px; transition: background-color 0.3s ease, color 0.3s ease; } .toc-sidebar ul li a:hover, .toc-sidebar ul li a.active { background-color: #FBC462; color: #000; } /* Main Content Area */ .toc-content { flex: 1; min-width: 0; background-color: #fff; padding: 25px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); z-index: 1; } .toc-content h1 { color: #000; font-size: 2.8em; margin-bottom: 20px; text-align: center; border-bottom: 2px solid #FBC462; padding-bottom: 10px; } .toc-content h2 { color: #333; font-size: 2.2em; margin-top: 60px; margin-bottom: 25px; border-left: 4px solid #FBC462; padding-left: 15px; } .toc-content h3 { color: #444; font-size: 1.6em; margin-top: 30px; margin-bottom: 15px; } .toc-content h4 { color: #555; font-size: 1.3em; margin-top: 20px; margin-bottom: 10px; } .toc-content p { margin-bottom: 15px; text-align: justify; } .toc-content ul, .toc-content ol { margin-bottom: 15px; padding-left: 25px; } .toc-content ul li, .toc-content ol li { margin-bottom: 8px; } .toc-content a { color: #000; text-decoration: underline; transition: color 0.3s ease; } .toc-content a:hover { color: #FBC462; text-decoration: none; } /* Info Box Styling */ .info-box { background-color: #FFF8E1; border-left: 5px solid #FBC462; padding: 15px 20px; margin: 20px 0; border-radius: 10px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); } .info-box p { margin: 0; color: #333; } /* Specific styles for step-by-step guide */ .step-by-step { counter-reset: step-counter; } .step-by-step .step { background-color: #fff; border: 1px solid #ddd; border-left: 5px solid #FBC462; padding: 20px; margin-bottom: 20px; border-radius: 8px; position: relative; box-shadow: 0 2px 5px rgba(0,0,0,0.05); } .step-by-step .step::before { counter-increment: step-counter; content: "Step " counter(step-counter); position: absolute; top: -15px; left: 20px; background-color: #000; color: #fff; padding: 5px 10px; border-radius: 5px; font-weight: bold; font-size: 0.9em; } .step-by-step .step h3 { margin-top: 0; padding-top: 10px; color: #000; } /* Interactive Exercises Container */ .interactive-exercises-container { background-color: #f5f5f1; border: 2px solid #fbc462; padding: 20px; border-radius: 12px; max-width: 900px; /* Wider for reading passages */ margin: 40px auto; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); text-align: center; } .interactive-exercises-container > h2 { /* Direct child h2 */ color: #000; font-size: 1.8em; margin-bottom: 15px; border-left: none; padding-left: 0; } .exercise-section { background-color: #fff; border: 1px solid #eee; padding: 25px; border-radius: 10px; margin-top: 20px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); text-align: left; margin-bottom: 30px; } .exercise-section h3 { color: #000; margin-top: 0; margin-bottom: 15px; font-size: 1.4em; text-align: center; } .exercise-question { margin-bottom: 15px; font-size: 1.1em; line-height: 1.5; } .exercise-passage-title { font-size: 1.4em; font-weight: bold; color: #000; text-align: center; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px dashed #FBC462; } .exercise-passage-paragraph { margin-bottom: 15px; text-align: justify; } .exercise-statements-list { list-style: none; padding: 0; margin: 20px 0; border: 1px solid #ddd; border-radius: 8px; background-color: #f9f9f9; padding: 15px; } .exercise-statements-list li { margin-bottom: 8px; font-weight: bold; color: #555; } .exercise-options label { display: block; margin-bottom: 8px; cursor: pointer; font-size: 1em; background-color: #f0f0f0; padding: 10px 15px; border-radius: 8px; border: 1px solid #ddd; transition: background-color 0.2s ease, border-color 0.2s ease; } .exercise-options label:hover { background-color: #e5e5e5; border-color: #ccc; } .exercise-options input[type="radio"] { margin-right: 8px; } .exercise-feedback { margin-top: 15px; padding: 10px; border-radius: 8px; font-weight: bold; display: none; /* Hidden by default */ } .exercise-feedback.correct { background-color: #e6ffe6; color: #006600; border: 1px solid #a3e6a3; } .exercise-feedback.incorrect { background-color: #ffe6e6; color: #cc0000; border: 1px solid #e6a3a3; } .exercise-button { background-color: #000; color: #fff; padding: 10px 20px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: background-color 0.3s ease, transform 0.2s ease; border: none; display: inline-block; cursor: pointer; margin-top: 15px; } .exercise-button:hover { background-color: #FBC462; color: #000; transform: translateY(-2px); } .reset-button { background-color: #6c757d; /* Gray button */ margin-left: 10px; } .reset-button:hover { background-color: #5a6268; } .highlight-yellow { color: #FBC462; /* Your primary accent color */ font-weight: bold; } .highlight-red { color: #cc0000; /* For errors/dislikes */ font-weight: bold; } .highlight-green { color: #006600; /* For positives/improvements */ font-weight: bold; } /* FAQ Section (using
& ) */ .faq-section { margin-top: 40px; padding: 20px; background-color: #f9f9f9; border-radius: 12px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); } .faq-section h3 { text-align: center; color: #000; margin-bottom: 25px; } .faq-section details { background-color: #fff; border: 1px solid #ddd; border-radius: 8px; margin-bottom: 10px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); } .faq-section summary { font-weight: bold; padding: 15px 20px; cursor: pointer; color: #333; list-style: none; /* Hide default arrow */ position: relative; } .faq-section summary::marker { display: none; } .faq-section summary::after { content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 1.2em; color: #FBC462; transition: transform 0.2s ease; } .faq-section details[open] summary::after { content: '-'; transform: translateY(-50%) rotate(0deg); /* No rotation needed for '-' */ } .faq-section details[open] summary { border-bottom: 1px solid #eee; } .faq-section details p { padding: 10px 20px 15px 20px; margin: 0; font-size: 0.95em; color: #555; } /* Related Guides Carousel */ .carousel-container { margin-top: 40px; overflow: hidden; padding: 40px 30px; background-color: #f5f5f1; border-radius: 12px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); position: relative; } .carousel-title { text-align: center; color: #000; margin-bottom: 25px; font-size: 1.8em; font-weight: 700; } .carousel-wrapper { display: flex; justify-content: flex-start; overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 0 10px; scroll-snap-type: x mandatory; gap: 30px; } .carousel-item { flex: 0 0 auto; width: 300px; background-color: #fff; border: 1px solid #ddd; border-radius: 8px; padding: 20px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08); scroll-snap-align: start; transition: transform 0.3s ease; display: flex; flex-direction: column; } .carousel-item:hover { transform: translateY(-5px); } .carousel-item h4 { color: #000; margin-top: 0; font-size: 1.2em; min-height: 50px; } .carousel-item p { font-size: 0.9em; color: #555; min-height: 80px; flex-grow: 1; } .carousel-item a { display: inline-block; background-color: #000; color: #fff; padding: 8px 15px; border-radius: 8px; text-decoration: none; margin-top: 10px; transition: background-color 0.3s ease; font-weight: 600; } .carousel-item a:hover { background-color: #FBC462; color: #000; } .carousel-button { position: absolute; top: 50%; transform: translateY(-50%); background-color: rgba(0, 0, 0, 0.6); color: #fff; border: none; padding: 10px 15px; cursor: pointer; font-size: 1.5em; border-radius: 50%; z-index: 10; transition: background-color 0.3s ease; } .carousel-button:hover { background-color: rgba(0, 0, 0, 0.8); } .carousel-button.left { left: 10px; } .carousel-button.right { right: 10px; } /* Responsive Adjustments */ @media (max-width: 992px) { .toc-layout { flex-direction: column; margin: 15px auto; padding: 15px; } .toc-sidebar { position: static; width: 100%; margin-right: 0; margin-bottom: 25px; max-height: none; } .toc-sidebar h3 { text-align: center; padding-bottom: 5px; margin-bottom: 10px; } .toc-sidebar ul { display: flex; flex-wrap: wrap; justify-content: center; padding: 0 10px; } .toc-sidebar ul li a { padding: 6px 12px; font-size: 0.9em; text-align: center; } .toc-content { width: 100%; padding: 15px; } .toc-content h1 { font-size: 2em; } .toc-content h2 { font-size: 1.6em; } .toc-content h3 { font-size: 1.3em; } .carousel-item { width: 280px; margin: 0 10px; } } @media (max-width: 768px) { .toc-layout { margin: 10px; padding: 10px; } .toc-content h1 { font-size: 1.8em; } .toc-content h2 { font-size: 1.4em; } .carousel-wrapper { flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; } .carousel-item { min-width: 85%; scroll-snap-align: start; } .carousel-button { display: none; } } @media (max-width: 480px) { .toc-sidebar ul li a { font-size: 0.85em; padding: 5px 10px; } .carousel-item { min-width: 95%; } }

IELTS Reading: True/False/Not Given - Practice, Tips & Strategy

Welcome to your essential guide for **IELTS Reading True/False/Not Given (T/F/NG)** questions. This question type is a cornerstone of the IELTS Reading test, designed to assess your ability to locate and understand specific information, and to distinguish between facts, contradictions, and information that is simply not present in the text.

Mastering T/F/NG requires precision and careful analysis, as it often involves subtle differences in wording and the ability to avoid making assumptions based on your own knowledge. This page will provide you with a detailed understanding of this question type, a step-by-step strategy, common pitfalls to avoid, expert tips, and **interactive practice questions** with detailed explanations to help you prepare effectively.

For an overall strategy for the reading test, explore our main IELTS Reading Practice page.

Understanding the True/False/Not Given Question Type

In T/F/NG questions, you will be given a series of statements. Your task is to decide, based *only* on the information in the reading passage, whether each statement is:

  • TRUE: if the statement agrees with the information in the passage.
  • FALSE: if the statement contradicts the information in the passage.
  • NOT GIVEN: if there is no information about the statement in the passage.

Key Characteristics:

  • You must base your answer **solely on the text**. Do not use your general knowledge.
  • The statements will usually follow the order of information in the passage.
  • The language in the statements will almost always be **paraphrased** or use **synonyms** of the language in the passage.
  • The biggest challenge is often distinguishing between **FALSE** and **NOT GIVEN**.

Key Skills Tested

This question type primarily assesses your ability to:

  • Locate specific information: Quickly find the relevant part of the text that discusses the statement.
  • Understand explicit meaning: Accurately interpret what the text directly states.
  • Identify contradiction: Recognize when a statement presents information that is the opposite of what is in the text.
  • Distinguish between fact and absence of fact: Determine if information is genuinely absent or merely implied.
  • Recognize paraphrasing and synonyms: Connect ideas expressed in different words.

Step-by-Step Strategy to Master True/False/Not Given

Follow these steps for an effective approach to T/F/NG questions:

Step 1: Read the Instructions Carefully

Ensure you understand whether you need to write "TRUE/FALSE/NOT GIVEN" or "T/F/NG". Sometimes, the test might use "Yes/No/Not Given" for statements about the author's opinion, so always double-check.

Step 2: Read the Statements First and Underline Keywords

Before reading the passage, go through all the T/F/NG statements. This gives you an idea of what information to look for.

  • Underline keywords: Identify the most important nouns, verbs, adjectives, and adverbs in each statement. These will be your "search terms" in the passage.
  • Look for limiting words: Pay special attention to words like "only," "all," "never," "always," "most," "some," "primarily," "every." These words often determine the truthfulness of a statement.
  • Paraphrase keywords: Think of possible synonyms or paraphrases for your keywords. The passage will rarely use the exact same words.

Example Statement: All students must attend the orientation session.

Keywords: All, students, must, attend, orientation session.

Possible paraphrases: every, required, participate, introductory meeting.

Step 3: Locate Relevant Information in the Passage

Now, read the passage, but not in extreme detail. Your goal is to find the section that *might* contain information related to each statement.

  • Scan for keywords: Use the keywords (and their synonyms) you identified in Step 2 to quickly scan the passage.
  • Statements usually follow order: T/F/NG statements generally follow the order of information in the passage. So, the information for statement 2 will likely be found after statement 1 and before statement 3. This helps you narrow down your search.
  • Read the surrounding sentences: Once you locate a keyword, read the sentence it's in, and the sentences immediately before and after it, to fully understand the context.

Step 4: Compare the Statement with the Text

This is the most critical step. Carefully compare the meaning of the statement with the meaning of the relevant part of the text.

  • TRUE: If the statement's meaning is **exactly the same** as the information in the text, even if different words are used (paraphrasing).
  • FALSE: If the statement's meaning **directly contradicts** the information in the text. There must be evidence in the text that proves the statement wrong.
  • NOT GIVEN: If the text does **not provide enough information** to say whether the statement is true or false. The topic might be mentioned, but not the specific detail in the statement.

Example:

Statement: "The company primarily focuses on renewable energy sources."

Text 1: "The company's main efforts are directed towards solar and wind power." $\rightarrow$ TRUE (primarily focuses = main efforts; renewable energy sources = solar and wind power)

Text 2: "The company has recently shifted its focus away from fossil fuels towards nuclear power." $\rightarrow$ FALSE (contradicts "primarily focuses on renewable energy sources")

Text 3: "The company announced its new energy policy last month." $\rightarrow$ NOT GIVEN (mentions energy policy, but not its focus on renewable sources)

Step 5: Process of Elimination and Review

  • Cross out answered statements: As you confidently answer a statement, mark it off. This helps you focus on the remaining ones.
  • Don't leave blanks: Always attempt every question. If you're unsure, make an educated guess.
  • Double-check tricky ones: Pay extra attention to statements you marked as NOT GIVEN or FALSE. Ensure you have clear evidence for FALSE, and no evidence for NOT GIVEN.

Common Pitfalls and How to Avoid Them

  • Confusing FALSE with NOT GIVEN: This is the most common mistake.
    • FALSE means the text *says the opposite*.
    • NOT GIVEN means the text *doesn't say anything* about it, either for or against.
    If you can't find *any* information to confirm or deny the statement, it's NOT GIVEN. If you find information that directly contradicts it, it's FALSE.
  • Using general knowledge: Forget everything you know about the topic. Your answer must come *only* from the passage.
  • Keyword matching without understanding meaning: Just because a few words from the statement appear in the passage doesn't mean it's TRUE. The context or overall meaning might be different. Always understand the full sentence.
  • Misinterpreting limiting words: Words like "all," "only," "never" are critical. If a statement says "All students" but the text says "Most students," the statement is FALSE.
  • Spending too much time: If you've scanned thoroughly and can't find information, it's likely NOT GIVEN. Don't waste too much time searching for something that isn't there.

Tips and Tricks for Success

  • Focus on precise wording: Every word in the statement matters. Look for exact matches in meaning, even if the words are different.
  • Identify opinion vs. fact: T/F/NG questions are usually about factual information. If a statement includes an opinion, ensure it's presented as a fact in the text.
  • Think of opposites for FALSE: If you think a statement might be FALSE, try to formulate its opposite. If the text supports the opposite, then it's FALSE.
  • "Not Given" often involves specific details: If the passage discusses a general topic but the statement asks about a very specific detail (e.g., a precise date, number, or specific reason) that isn't mentioned, it's likely NOT GIVEN.
  • Practice paraphrasing: The more you practice identifying synonyms and rephrased ideas, the better you'll become at T/F/NG.
  • Sequence is your friend: Use the sequential nature of these questions to your advantage. Once you find the answer for statement 1, you know to look for statement 2's answer immediately after that point in the text.

Interactive Practice Section: True/False/Not Given

This section provides interactive questions across multiple practice sets to help you master the True/False/Not Given question type. For each statement, decide if it is True, False, or Not Given based on the provided passage. You will receive immediate feedback and detailed explanations.

Practice Set 1

Frequently Asked Questions (FAQs)

Your Questions Answered

What is the difference between False and Not Given?

FALSE means the information in the statement directly contradicts what is stated or implied in the passage. There is evidence in the text to prove the statement wrong. NOT GIVEN means the information in the statement is simply not present in the passage, and you cannot determine if it's true or false based on the text alone.

Can I use my own knowledge to answer T/F/NG questions?

Absolutely not. You must only use the information explicitly stated or clearly implied in the reading passage. Using outside knowledge is a common mistake that leads to incorrect answers.

Do the statements always follow the order of the passage?

Yes, for True/False/Not Given questions, the statements almost always follow the order of information in the reading passage. This is a helpful strategy to locate the relevant sections quickly.

What should I do if I can't find any information for a statement?

If you have scanned the relevant section of the passage carefully and cannot find any information that either confirms or contradicts the statement, then it is most likely "Not Given." Don't spend too much time searching for something that isn't there.

How important is paraphrasing in T/F/NG questions?

Paraphrasing is extremely important. The statements will rarely use the exact same words as the passage. You need to be able to recognize synonyms and rephrased ideas to correctly match the meaning.

Conclusion

Mastering True/False/Not Given questions is a critical step towards achieving a high score in the IELTS Reading module. It demands meticulous attention to detail, a strong grasp of paraphrasing, and the discipline to rely solely on the provided text.

By consistently applying the strategies outlined, particularly focusing on the precise meaning of each statement and distinguishing carefully between contradictory information (False) and absent information (Not Given), you will significantly improve your accuracy. Continue to practice with diverse texts, and your confidence in tackling this question type will grow, bringing you closer to your target band score.

http://ielts-reading-true-false-not-given-js-logic

Ready to achieve your target IELTS score?

Join 15,000+ students with expert-led courses and AI practice tests.

Start Free Trial