00:15:00

Free CompTIA ITF+ FC0-U61 Practice Test

Prepare for the CompTIA ITF+ FC0-U61 exam with this free practice test. Randomly generated and customizable, this test allows you to choose the number of questions.

  • Questions: 15
  • Time: 15 minutes (60 seconds per question)
  • Included Objectives:
    • IT Concepts and Terminology
    • Infrastructure
    • Applications and Software
    • Software Development Concepts
    • Database Fundamentals
    • Security
Question 1 of 15

You are working on a program where you have an object named 'Invoice' that represents billing for a service. You want to write a method that calculates the total cost including taxes. If we want to call this method to perform its task, which of the following is the correct option?

  • invoice.calculateTotal()

  • calculateTotal(invoice)

  • calculateTotal.Invoice()

  • Invoice::calculateTotal()

Question 2 of 15

As an IT administrator, you notice that unauthorized changes have been made to several important company files. To identify the party responsible for these changes, which practice would be the most effective?

  • Enforcing frequent password changes for all user accounts

  • Maintaining and reviewing logs

  • Performing regular system audits

  • Implementing stricter firewall rules

  • Restoring the files from the most recent backup

Question 3 of 15

Why should you be cautious when sharing files over the Internet?

  • To save space on your local hard drive

  • To ensure faster download times for recipients

  • To prevent unauthorized access to sensitive information

  • To increase the speed of your Internet connection

Question 4 of 15

A database administrator is tasked with designing a new table in a relational database that holds customer account information. The administrator must ensure that every row in the table has a unique, non-null identifier for each customer. Which type of constraint should the administrator use to enforce this rule?

  • Unique constraint

  • Primary key constraint

  • Check constraint

  • Foreign key constraint

Question 5 of 15

An employee in a company has just downloaded a graphics design program that is labeled for 'Single use'. What does this mean for the company's use of the software?

  • The software comes with several licenses, so it can be used by multiple employees simultaneously.

  • The software can only be installed and used on one computer in the company.

  • The software can be freely distributed and installed across the entire company as needed.

  • The software can be installed on all computers within the company, but only one user can use it at a time.

Question 6 of 15

What does the term 'GB' stand for in computing when referring to data storage capacity?

  • Gigahertz

  • Gigawatt

  • Gigablock

  • Gigaquad

  • Gigabyte

  • Gigabit

Question 7 of 15

An IT technician is writing a program that needs to perform a task 10 times. Which of the following code structures should the technician use to repeat the task exactly 10 times?

  • while loop without a counter or condition that stops at 10

  • switch statement evaluating a single case

  • if statement

  • for loop

  • do-while loop that checks a condition unrelated to the iteration count after executing the block

Question 8 of 15

What is a schema in the context of a relational database?

  • The largest table in a database that contains the most records

  • The software used to manage and query a database

  • A tool used to input new data into the database

  • An outline that defines the structure and organization of data within the database

Question 9 of 15

What is the importance of prioritization in the context of disaster recovery for an organization?

  • Prioritization helps to decide which office locations should be cleaned first after a disaster.

  • It is a plan to distribute recovery resources evenly across all systems without discrimination.

  • Prioritizes the easiest tasks to complete during recovery, regardless of their importance.

  • Schedules regular data backups as part of routine maintenance.

  • Ensures that the most critical services are restored first to maintain business operations.

  • Determines which employees should return to work first after a disaster.

Question 10 of 15

You have been provided with a new high-resolution monitor and want the best video quality when connecting it to your computer. Which type of cable should you use?

  • DisplayPort

  • Mini DisplayPort

  • DVI

  • HDMI

  • VGA

Question 11 of 15

In an educational institution, the network administrator is tasked to enforce a content filtering policy and provide a caching mechanism to enhance the browsing experience by reducing load times. Which of the following configurations would suit these requirements the BEST?

  • Reverse proxy with SSL offloading

  • VPN service with split tunneling

  • SSL/TLS inspection proxy

  • Forward proxy with content filtering and caching

Question 12 of 15

The result of processed data is typically stored permanently in the system's main memory for future use.

  • True

  • False

Question 13 of 15

In a payroll application, there is a need to represent the number of weeks in a year, which will not change over the course of the program. How should this be represented in the program to ensure the value remains unchanged?

  • Declare a constant with an appropriate name and assign the value 52 to it.

  • Use a variable that is set to 52 at the beginning of the program and change it as needed.

  • Hardcode the number 52 wherever it is needed in the program without assigning it to a named constant.

  • The number of weeks in a year should be input by the user each time the program is run.

Question 14 of 15

Marcus is tasked with creating a tool that will automatically generate weekly reports, gather data from various sources, and send the compiled information via email to his team. The tool needs to be flexible for quick edits and should run with minimal setup across different operating systems. Which type of programming language is most appropriate for Marcus to use for this task?

  • A database-specific query language

  • A statically typed compiled language

  • A dynamic scripting language

  • A low-level assembly language

Question 15 of 15

In a computer program, a variable is a named location in memory that holds a value which can be modified as the program runs.

  • False

  • True