Which RAID level provides disk mirroring for fault tolerance without striping?
- RAID 0
- RAID 1
- RAID 10
- RAID 5
RAID 1, also known as disk mirroring, is a RAID level that provides fault tolerance by duplicating data on two or more disks. It doesn't involve striping, making it a reliable choice for data redundancy.
Which module in an ERP system typically manages human resources, payroll, and benefits?
- Finance Module
- HR Module
- Inventory Module
- Sales Module
The 'HR (Human Resources) Module' in an ERP system is responsible for managing various aspects of an organization's human resources, including payroll, employee benefits, and personnel data. It helps streamline HR-related processes.
One of the pillars of IT governance is ensuring that IT resources are used responsibly, efficiently, and _______.
- Effectively
- Innovatively
- Securely
- Transparently
In IT governance, one of the pillars is to ensure that IT resources are used responsibly, efficiently, and 'transparently.' This means that actions and decisions related to IT should be clear and open to scrutiny, promoting accountability and trust.
What cryptographic technique allows multiple parties to compute a function over their inputs while keeping those inputs private?
- Digital Signatures
- Public Key Infrastructure (PKI)
- Secure Multi-Party Computation
- Zero-Knowledge Proof
Secure Multi-Party Computation (SMPC) is a cryptographic technique that enables multiple parties to jointly compute a function over their inputs while ensuring the privacy of those inputs. It's used in scenarios where data privacy is crucial, such as collaborative data analysis without revealing individual data points.
Which approach in ERP involves tailoring the software to fit the specific needs and processes of an organization, often leading to longer implementation times?
- Configuration
- Customization
- Off-the-shelf
- Standardization
The approach of 'customization' in ERP entails tailoring the software to meet specific organizational needs. This can lead to longer implementation times but results in a more tailored solution.
In HPC, what is the primary purpose of using parallel processing techniques?
- Enhancing data security
- Minimizing software complexity
- Reducing hardware costs
- Speeding up individual tasks
Parallel processing in High-Performance Computing (HPC) aims to 'speed up individual tasks' by breaking them into smaller sub-tasks that can be processed simultaneously on multiple processors, increasing overall computation speed.
What is the primary purpose of a network switch in a local area network (LAN)?
- Connect devices
- Connect to the internet
- Provide wireless access
- Store data temporarily
A network switch primarily serves to 'connect devices' within a local area network (LAN). It intelligently forwards data to the appropriate device based on the device's MAC address, improving network efficiency.
What SQL clause is used to filter the results of a query based on a specified condition?
- GROUP BY
- ORDER BY
- SELECT
- WHERE
The 'WHERE' clause in SQL is used to filter the results of a query based on a specified condition. It allows you to retrieve specific data that meets certain criteria.
_______ is a virtualization technology focused on running multiple instances or copies of an application on a single set of hardware resources.
- Containerization
- Firewall
- Hyperconvergence
- Virtual Private Network (VPN)
'Containerization' is a virtualization technique that allows running multiple instances or copies of applications on the same hardware, isolated from each other. Containers share the same OS kernel and use fewer resources.
Which protocol operates at the Data Link layer and prevents loops in Ethernet networks by creating a loop-free logical topology?
- ARP
- ICMP
- OSPF
- STP
The Spanning Tree Protocol (STP) operates at the Data Link layer and prevents loops in Ethernet networks by creating a loop-free logical topology. It's crucial for network stability and redundancy in Ethernet networks.
Which data structure would be most efficient for implementing a cache with least recently used (LRU) eviction policy?
- Binary Search Tree
- Doubly Linked List
- Hash Table
- Priority Queue
A 'Doubly Linked List' is a common choice for implementing an LRU cache. It allows efficient insertion and removal of elements from both ends, making it suitable for the LRU policy.
Which type of visualization would be most appropriate for representing hierarchical data, like the structure of an organization?
- Bar Chart
- Pie Chart
- Scatter Plot
- Tree Diagram
Representing hierarchical data, such as the structure of an organization, is best done using a 'Tree Diagram' visualization. It visually displays the parent-child relationships between different levels of a hierarchy, making it clear and organized.