Question 329 of 512
Software Development ConceptshardMultiple SelectObjective-mapped

Quick Answer

The answer is inheritance, encapsulation, and polymorphism. These three are the foundational characteristics of object-oriented programming because they define how data and behavior are structured and reused. Inheritance allows a class to derive properties and methods from a parent class, encapsulation bundles data with the methods that operate on it while hiding internal state, and polymorphism enables objects of different classes to be treated through a common interface, with method calls resolved at runtime based on the actual object type. On the CompTIA ITF+ FC0-U61 exam, this question tests your ability to distinguish core OOP pillars from related but non-defining concepts like abstraction or modularity; a common trap is selecting “abstraction” instead of “polymorphism” because both involve hiding complexity, but only polymorphism directly concerns runtime behavior across classes. A helpful memory tip is to think of the acronym PIE: Polymorphism, Inheritance, and Encapsulation.

FC0-U61 Software Development Concepts Practice Question

This FC0-U61 practice question tests your understanding of software development concepts. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

Which THREE of the following are characteristics of object-oriented programming (OOP)? (Select THREE).

Question 1hardmulti select
Full question →

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

Polymorphism

Polymorphism is a core OOP concept that allows objects of different classes to be treated as objects of a common superclass, with method calls resolved at runtime based on the actual object type. This enables one interface to be used for a general class of actions, with specific behavior determined by the specific object instance.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • Polymorphism

    Why this is correct

    Polymorphism allows objects to be treated as instances of their parent class.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Encapsulation

    Why this is correct

    Encapsulation bundles data and methods within objects.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Inheritance

    Why this is correct

    Inheritance allows classes to derive from other classes.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Top-down design

    Why it's wrong here

    Top-down design is a structured programming approach, not an OOP characteristic.

  • Sequential execution

    Why it's wrong here

    Sequential execution is not exclusive to OOP; it applies to most programs.

Common exam traps

Common exam trap: answer the scenario, not the keyword

CompTIA often tests the distinction between OOP principles (encapsulation, inheritance, polymorphism) and procedural or structured programming concepts (top-down design, sequential execution), so candidates mistakenly select familiar-sounding terms like 'top-down design' without recognizing they belong to a different paradigm.

Detailed technical explanation

How to think about this question

Polymorphism in OOP is typically implemented via virtual method tables (vtables) in languages like C++ or dynamic dispatch in Java and C#; the actual method invoked is determined at runtime by the object's class, enabling code like `Animal a = new Dog(); a.sound();` to call `Dog.sound()` even though the reference type is `Animal`. This allows for extensible frameworks where new subclasses can be added without modifying existing code that uses the base class interface.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

A practitioner preparing for the FC0-U61 exam encounters this exact type of scenario on the job. The correct answer here is not the most general option — it is the best answer for the specific constraint described. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Real exam questions reward reading the full scenario before eliminating options, because the constraint defines which answer fits.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related FC0-U61 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free FC0-U61 practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this FC0-U61 question test?

Software Development Concepts — This question tests Software Development Concepts — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Polymorphism — Polymorphism is a core OOP concept that allows objects of different classes to be treated as objects of a common superclass, with method calls resolved at runtime based on the actual object type. This enables one interface to be used for a general class of actions, with specific behavior determined by the specific object instance.

What should I do if I get this FC0-U61 question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Same concept, more angles

4 more ways this is tested on FC0-U61

These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.

Variation 1. Which TWO are characteristics of object-oriented programming? (Choose two.)

medium
  • A.Inheritance
  • B.Loops
  • C.Functions
  • D.Variables
  • E.Encapsulation

Why A: The correct answers are B and C: Inheritance and encapsulation. Inheritance allows classes to derive from others; encapsulation bundles data and methods. Loops (A) are not OOP-specific. Functions (D) are procedural. Variables (E) are generic.

Variation 2. Which TWO of the following are common characteristics of object-oriented programming languages?

medium
  • A.Procedural programming
  • B.Polymorphism
  • C.Functional programming
  • D.Inheritance
  • E.Encapsulation

Why D: Inheritance is a core characteristic of object-oriented programming (OOP) that allows a class to derive properties and behaviors from a parent class, promoting code reuse and hierarchical relationships. This is a defining feature of OOP languages like Java, C++, and Python, distinguishing them from procedural or functional paradigms.

Variation 3. Which TWO of the following are characteristics of object-oriented programming (OOP)?

hard
  • A.Top-down design
  • B.Use of global functions
  • C.Inheritance
  • D.Encapsulation
  • E.Recursion

Why C: Options A and C are correct: inheritance allows classes to derive from others, and encapsulation hides internal state. Option B is wrong because recursion is not OOP-specific; Option D (global functions) is procedural; Option E (top-down design) is structured programming.

Variation 4. Which TWO of the following are characteristics of object-oriented programming (OOP)?

medium
  • A.Polymorphism
  • B.Inheritance
  • C.Top-down design
  • D.Encapsulation
  • E.Use of functions and procedures

Why B: Encapsulation and inheritance are core OOP concepts. Procedural programming uses functions, not objects. Top-down design is associated with procedural programming. Polymorphism is also an OOP concept, but the question asks for two; we have encapsulation and inheritance.

Last reviewed: Jun 30, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

This FC0-U61 practice question is part of Courseiva's free CompTIA certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the FC0-U61 exam.