00:15:00

CompTIA Tech+ Practice Test (FC0-U71)

Use the form below to configure your CompTIA Tech+ Practice Test (FC0-U71). The practice test can be configured to only include certain exam objectives and domains. You can choose between 5-100 questions and set a time limit.

Logo for CompTIA Tech+ FC0-U71
Questions
Number of questions in the practice test
Free users are limited to 20 questions, upgrade to unlimited
Seconds Per Question
Determines how long you have to finish the practice test
Exam Objectives
Which exam objectives should be included in the practice test

CompTIA Tech+ FC0-U71 Information

The CompTIA Tech+ Certification (formerly ITF+) is an entry-level certification designed to introduce individuals to the essential IT concepts and terminology. This certification is particularly suited for those who are new to the world of information technology and seeking to gain a basic understanding of IT. It covers a broad range of topics, including hardware, software, networking, cybersecurity, and basic IT literacy. This certification is ideal for individuals considering a career in IT, students in other fields who require a foundational understanding of IT, or professionals in other industries who want to gain a basic knowledge of IT to complement their primary skills.

Free CompTIA Tech+ FC0-U71 Practice Test

Press start when you are ready, or press Change to modify any settings for the practice test.

  • Questions: 15
  • Time: Unlimited
  • Included Topics:
    IT Concepts and Terminology
    Infrastructure
    Applications and Software
    Software Development Concepts
    Data and Database Fundamentals
    Security
Question 1 of 15

You are tasked with writing a program that outputs a customization message based on the time of day. Which code snippet correctly uses branching to output 'Good morning!' when the variable 'currentTime' is less than 12?

  • You selected this option

    if (currentTime == 12) { print('Good morning!'); }

  • You selected this option

    if (currentTime = 12) { print('Good morning!'); }

  • You selected this option

    if (currentTime < 12) { print('Good morning!'); }

  • You selected this option

    if (currentTime > 12) { print('Good morning!'); }

Question 2 of 15

In a non-relational database environment, when tasked with handling a data model primarily composed of complex hierarchical structures with multiple one-to-many relationships and the need for flexible schema changes, which database is the BEST fit?

  • You selected this option

    Key/value stores

  • You selected this option

    Wide-column stores

  • You selected this option

    Graph databases

  • You selected this option

    Document databases

Question 3 of 15

Journaling is a file system feature that helps protect against data corruption in the event of a power failure.

  • You selected this option

    True

  • You selected this option

    False

Question 4 of 15

A company's policy requires that all workstations have a full backup of their operating system once a month. As an IT support technician, you are evaluating a backup plan to ensure that in the event of a system crash, the workstation can be restored to its last operational state with minimal data loss. Which of the following is the most important step to ensure adherence to the company’s backup policy?

  • You selected this option

    Reinstall the operating system bi-monthly as a precaution.

  • You selected this option

    Check that there is enough available storage space on the server every day.

  • You selected this option

    Manually start the backup process at the end of every week.

  • You selected this option

    Create a schedule for automatic backups to be performed monthly.

Question 5 of 15

When visiting a website for the first time, the page elements are stored locally on your computer. This speeds up subsequent visits to the same page because your browser can load the site from these locally stored elements instead of downloading everything again. Which feature of web browsers achieves this?

  • You selected this option

    Caching

  • You selected this option

    Clearing cache

  • You selected this option

    Proxy settings

  • You selected this option

    Private browsing

Question 6 of 15

In a computer system, what is the main function of the component responsible for processing data?

  • You selected this option

    To perform calculations on input data and produce output

  • You selected this option

    To receive commands from the user

  • You selected this option

    To display data visually on the screen

  • You selected this option

    To store data long-term for future retrieval

Question 7 of 15

What is the BEST method for someone who has limited technical experience to perform data entry into a database?

  • You selected this option

    Using a graphical interface designed for data entry

  • You selected this option

    Constructing a data insertion query with a specialized builder tool

  • You selected this option

    Designing a customized code snippet to automate data insertion

  • You selected this option

    Composing a command in a text-based data manipulation interface

Question 8 of 15

Which task showcases the main capability of gaming consoles compared to other devices?

  • You selected this option

    Enabling social networking and sharing features

  • You selected this option

    Offering an interactive gaming experience

  • You selected this option

    Serving as a platform for video streaming

  • You selected this option

    Supporting various productivity applications

Question 9 of 15

In an employee database, a table called 'employees' has a 'salary' field. The company policy states that no employee should have a salary lower than $30,000. Which type of constraint would be used to ensure this policy is enforced?

  • You selected this option

    FOREIGN KEY constraint

  • You selected this option

    CHECK constraint

  • You selected this option

    UNIQUE constraint

  • You selected this option

    PRIMARY KEY constraint

Question 10 of 15

Your supervisor has asked you to remove a discontinued product from your company's inventory database. By doing this, it ensures that the inventory list remains current and prevents the sale of items no longer offered. What is the proper way to permanently delete this product from the database?

  • You selected this option

    Use an update command to change the product's status to 'discontinued' in the inventory table.

  • You selected this option

    Apply a drop command to the product's table to remove the discontinued product.

  • You selected this option

    Manually erase the product's information from the database management system interface.

  • You selected this option

    Issue a delete command targeting the product's unique identifier to remove its record from the inventory table.

Question 11 of 15

Your company has a customer service application where the client software runs on the customer service representatives' computers and connects to a database that resides on a central server. What type of application architecture does this scenario best describe?

  • You selected this option

    Single-tier architecture

  • You selected this option

    n-tier architecture

  • You selected this option

    Two-tier architecture

  • You selected this option

    Three-tier architecture

Question 12 of 15

What is the role of methods in programming?

  • You selected this option

    They are commands used to manipulate the user interface of an application.

  • You selected this option

    They provide the main structure and definition for objects in object-oriented programming.

  • You selected this option

    They define a set of instructions that perform a specific task when called upon in a program.

  • You selected this option

    They are used to store pieces of data for an object in object-oriented programming.

Question 13 of 15

What is the purpose of an identifier in a computer programming language?

  • You selected this option

    To serve as a placeholder for values that will be input later

  • You selected this option

    To determine the type of data a variable can hold

  • You selected this option

    To perform calculations within the program

  • You selected this option

    To provide a unique name to a variable, function, or other elements

Question 14 of 15

What term describes the characteristic of a database to retain data over time, even when the power is turned off or the system is restarted?

  • You selected this option

    Data redundancy

  • You selected this option

    Data persistence

  • You selected this option

    Data volatility

  • You selected this option

    Data transience

Question 15 of 15

A function in programming can execute a set of instructions multiple times when called within a program.

  • You selected this option

    True

  • You selected this option

    False