Practice Free FC0-U61 Exam Online Questions
Which of the following storage devices have a spinning disk? (Choose two.)
- A . Optical drive
- B . SSD
- C . HDD
- D . Flash drive
- E . RAM
- F . ROM
A, C
Explanation:
Optical drive and HDD are the examples of storage devices that have a spinning disk among the given options. A spinning disk is a component of a storage device that rotates at high speed to store and access data on its surface. A spinning disk is usually made of metal, glass, or plastic and coated with a magnetic material. A spinning disk has one or more read/write heads that move across the disk to read or write data on concentric tracks or sectors. An optical drive is a storage device that uses laser beams to read or write data on optical discs, such as CDs, DVDs, or Blu-ray discs. An HDD (hard disk drive) is a storage device that uses magnetic fields to read or write data on hard disks.
Reference: The Official CompTIA IT Fundamentals (ITF+) Study Guide (FC0-U61), page 38-39.
A programmer needs an element that will automatically store customer orders consecutively by order number every time a new order is placed.
Which of the following elements should be used?
- A . Vector
- B . Sequence
- C . Array
- D . Constant
B
Explanation:
A sequence is an element that will automatically store customer orders consecutively by order number every time a new order is placed. A sequence is a database object that generates sequential numbers according to a specified rule. A sequence can be used to create unique identifiers for records in a table, such as order numbers or customer IDs. A vector is an element that can store multiple values of the same data type in an ordered sequence, but it does not automatically generate sequential numbers. A vector is a data structure that can be used in programming languages such as C++ or Java. An array is an element that can store multiple values of the same data type in an indexed sequence, but it does not automatically generate sequential numbers. An array is a data structure that can be used in programming languages such as C or Python. A constant is an element that can store a single value of any data type that does not change during the execution of a program, but it does not automatically generate sequential numbers. A constant is a variable that can be used in programming languages such as C# or JavaScript.
Reference: The Official CompTIA IT Fundamentals (ITF+) Student Guide (Exam FC0-U61), Chapter 6: Database Fundamentals, Chapter 8: Software Development Concepts
A developer is writing a program to process a long list of employees and apply a cost-of-living increase of 3.2% to all employees making less than $15 per hour.
Which of the following pseudocode snippets provides the best solution?
- A . If employeesalary is greater than $15 per hour employeesalary = employeesalary * 1.032
- B . For all employees in the list making less than $15 per hour employeesalary = employeesalary * 1.032
- C . If employeesalary is less than $15 per hour employeesalary = employeesalary * 3.2
- D . For all employees in the list making greater than $15 per hour employeesalary = employeesalary * 3.2
B
Explanation:
This pseudocode snippet correctly implements the requirement to apply a cost-of-living increase to employees making less than $15 per hour. By using a loop (For all employees in the list), it ensures that every employee meeting the condition (making less than $15 per hour) will have their salary adjusted by multiplying it by 1.032. This approach efficiently processes each relevant entry just once and applies the necessary increase accurately.
Reference: CompTIA IT Fundamentals documents typically cover basic programming concepts and logic, including how to use loops and conditions in pseudocode to manipulate data based on specific criteria.
A programmer chooses a database for a new application that needs to store information, including dates, times, names, and amounts.
Which of the following database features is this an example of?
- A . Concurrency
- B . Speed
- C . Scalability
- D . Variety
D
Explanation:
Variety is the database feature that refers to the ability to store different types of data, such as dates, times, names, and amounts. A database that supports variety can handle diverse and complex data formats, which is useful for applications that need to store information from various sources or domains. Concurrency, speed, and scalability are also important database features, but they are not directly related to the types of data that can be stored.
Reference: CompTIA IT Fundamentals+ FC0-U61 Cert Guide, Chapter 25: Database Concepts, page 481; CompTIA IT Fundamentals (ITF+) Study Guide, Chapter 7: Database Fundamentals, page 173.
Users are required to install a certificate in order to access commercial web pages through a corporate proxy server.
Which of the following Windows Control Panel applets would enable users to verify the needed certificate is installed?
- A . Network and Sharing Center
- B . System
- C . Programs and Features
- D . Internet Options
D
Explanation:
A certificate is a digital document that verifies the identity and authenticity of a website or a server. Certificates are issued by trusted authorities, such as Certificate Authorities (CAs), and are used to establish secure connections between clients and servers, such as when browsing the web or accessing online services. Certificates can also be used to encrypt and decrypt data, sign and verify documents, and authenticate users and devices.
To access commercial web pages through a corporate proxy server, users are required to install a certificate that is trusted by the proxy server. This certificate can be obtained from the proxy server administrator or from the website itself. To verify that the needed certificate is installed on a Windows computer, users can use the Internet Options applet in the Control Panel. The Internet Options applet allows users to configure various settings related to internet browsing, such as security, privacy, connections, and content. To view and manage certificates, users can follow these steps:
Open the Control Panel and click on Internet Options.
In the Internet Options window, click on the Content tab.
In the Content tab, click on the Certificates button.
In the Certificates window, users can see the list of certificates that are installed on their computer, categorized by purpose, such as personal, trusted root, intermediate, or untrusted. Users can also
import, export, remove, or view the details of each certificate.
The correct answer is
D. Internet Options, as it is the applet that enables users to verify the needed certificate is installed.
Reference: CompTIA IT Fundamentals+ (ITF+) Certification Exam Objectives, page 17, section 4.2 CompTIA IT Fundamentals+ (ITF+) Study Guide, page 217, section 8.3
CompTIA IT Fundamentals+ (ITF+) All-in-One Exam Guide, Second Edition, page 315, chapter 10
A company is concerned with ensuring its databases are highly available.
Which of the following can be used to increase database availability?
- A . Backups
- B . Prioritization
- C . Indexes
- D . Failover
D
Explanation:
Failover is a technique that ensures high availability of databases by switching to a backup or standby server in case of a primary server failure. Failover can be automatic or manual, depending on the configuration. Failover can prevent data loss and downtime for critical applications that rely on databases.
Reference: The Official CompTIA IT Fundamentals (ITF+) Student Guide (Exam FC0-U61), Chapter 5, Section 5.3, Page 222.
Which of the following does a NoSQL database use to organize data?
- A . Primary keys
- B . Schemas
- C . Keys/values
- D . Tables
C
Explanation:
: A NoSQL database is a type of database that does not use tables, rows, and columns to organize data. Instead, it uses keys and values to store data in a flexible and scalable way. A key is a unique identifier for a piece of data, and a value is the data itself.
For example:
{ “name”: “Alice”, “age”: 25, “city”: “New York” }
In this example, name, age, and city are keys, and Alice, 25, and New York are values.
Reference: CompTIA IT Fundamentals+ Study Guide: Exam FC0-U61, Second Edition, Chapter 5:
Database Fundamentals, page 196.
Which of the following programming concepts uses properties and attributes?
- A . Objects
- B . Functions
- C . Containers
- D . Identifiers
A
Explanation:
Objects are a programming concept that represent entities or concepts in the real world. Objects have properties and attributes that describe their characteristics and behavior. For example, a car object may have properties such as color, model, speed, and fuel, and attributes such as engine, wheels, doors, and seats. Objects can also have methods, which are actions that the object can perform or that can be performed on the object. For example, a car object may have methods such as start, stop, accelerate, and brake. Objects are used to organize data and functionality in a modular and reusable way.
A systems administrator is setting up an output device that supports both USB and network capability.
Which of the following devices is the administrator most likely installing?
- A . Scanner
- B . Camera
- C . SSD
- D . Printer
D
Explanation:
The device that the administrator is most likely installing is a printer. A printer is an output device that supports both USB and network capability, meaning that it can be connected to a computer or a network using either a USB cable or a wireless or wired network connection. A printer can produce hard copies of documents, images, or other data on paper or other media. A scanner is an input device that supports both USB and network capability, meaning that it can be connected to a computer or a network using either a USB cable or a wireless or wired network connection. A scanner can capture images or text from paper or other media and convert them into digital data. A camera is an input device that supports both USB and network capability, meaning that it can be connected to a computer or a network using either a USB cable or a wireless or wired network connection. A camera can capture images or videos and store them as digital data. An SSD stands for Solid State Drive, which is a type of storage device that supports both USB and network capability, meaning that it can be connected to a computer or a network using either a USB cable or a wireless or wired network connection. An SSD uses flash memory chips to store data persistently even when the power is turned off.
Reference: The Official CompTIA IT Fundamentals (ITF+) Student Guide (Exam FC0-U61), Chapter 1: IT Fundamentals1
SQL databases use primary and foreign keys to enable which of the following?
- A . Rows
- B . Fields
- C . Schemas
- D . Relationships
D
Explanation:
SQL (Structured Query Language) databases use primary and foreign keys to enable relationships between tables. A SQL database is a type of relational database that organizes data into tables that are related to each other by common fields or attributes. A primary key is a field or attribute that uniquely identifies each record in a table. A foreign key is a field or attribute that refers to the primary key of another table. Primary and foreign keys enable relationships between tables by establishing links or associations between records that share common values. Rows, fields, and schemas are not concepts that are enabled by primary and foreign keys in SQL databases. A row is a horizontal arrangement of fields or attributes that store information about a specific record or entity in a table. A field is a vertical arrangement of fields or attributes that store the same type of information for different records in a table. A schema is a structure or design that defines how data is organized and stored in a database.
Reference: CompTIA IT Fundamentals+ Study Guide: Exam FC0-U61, Second Edition, Chapter 5: Database Fundamentals, page 194.