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.

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.

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.

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.

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.

You have a list of tasks to complete, some of which depend on others being completed first. You want to determine a sequence to complete the tasks such that all dependencies are honored. What algorithmic approach would be most suitable?

  • Greedy Algorithm
  • Merge Sort
  • Quick Sort
  • Topological Sorting
To determine a task sequence while honoring dependencies, 'Topological Sorting' is the most appropriate approach. It is commonly used in project scheduling and task management to create a linear order of tasks in a directed acyclic graph (DAG) while ensuring all dependencies are met.

_______ is a small-sized, high-speed volatile computer memory that provides high-speed data access to the processor and stores frequently used computer programs, applications, and data.

  • Cache
  • Hard Drive
  • RAM
  • ROM
'Cache' is a type of high-speed, volatile memory used to store frequently accessed data and instructions, allowing for faster data retrieval by the processor. It acts as a bridge between slower memory (like RAM) and the processor, enhancing system performance.

Which HTTP status code indicates that the server successfully processed the request, but is not returning any content?

  • 200 OK
  • 204 No Content
  • 404 Not Found
  • 500 Internal Server Error
The '204 No Content' status code indicates that the server successfully processed the request but is not returning any additional content in the response body. It's often used for operations that have no response data.

You're developing a web application where performance is a critical concern. Which technique would be most suitable for reducing the load times of your web pages?

  • Content Delivery Networks (CDNs)
  • Object-Oriented Programming
  • Static Code Analysis
  • Waterfall Model
Content Delivery Networks (CDNs) are crucial for optimizing web page load times. CDNs distribute content to servers closer to the user, reducing latency and speeding up page loading. They cache assets and reduce the load on the origin server, improving performance.

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.