Study sets
English

IT Passport Examination (IP) | Technology Questions on Databases, Networks, Cloud, and Performance 09

1 / 100.0s

Problem 1

An Orders table contains order number, customer ID, and order date, while a Customers table contains customer ID and customer name. Which data operation is needed to display a list combining each order number with its customer name?

View explanation

The tables share customer ID, so joining on that field associates each order with its customer name. Copying the customer name into every order row duplicates the same fact and can create inconsistency when a name changes. Simply appending rows also does not establish which customer belongs to each order.

Problem 2

Customer names and addresses are duplicated in every order row. Only some rows for one customer were updated after an address change, leaving two different addresses. Which design best prevents recurrence?

View explanation

Separating customer name and address into a Customers table lets the organization update one authoritative address, while orders reference it by customer ID. This applies normalization to reduce duplication and update anomalies. Changing the format of duplicated data or increasing manual updates leaves the underlying inconsistency risk in place.

Problem 3

Process X locks table A and then waits for table B, while process Y locks B and then waits for A, sometimes leaving both stopped. Which method is most appropriate for preventing this deadlock?

View explanation

The stoppage is a circular wait in which X and Y each wait for the other's lock. If both acquire resources in the same order, a process that cannot acquire A will not already be holding B, making this cycle less likely. A timeout and cancellation can recover from a deadlock, but retaining the opposite lock order does not prevent its cause.

Problem 4

A disk holding a database fails at 10:00 a.m. A backup from midnight and update logs from midnight until just before 10:00 remain on separate media. Which procedure best recovers the database close to its state immediately before failure?

View explanation

First restore the database to its midnight state from the backup, then roll it forward with the subsequent update logs to approach the state before 10:00. Restoring only the backup loses later changes. Update logs are change records and normally cannot reconstruct the complete database without a baseline backup.

Problem 5

A 20 MB file is sent over a nominal 10 Mbps connection with 80% line utilization. Assuming 1 MB = 8 Mb and ignoring all other time, how many seconds does transmission take?

View explanation

The data size is 20 MB × 8 = 160 Mb. Effective transmission speed is 10 Mbps × 0.8 = 8 Mbps, so transmission time is 160 Mb / 8 Mbps = 20 seconds. Using the nominal 10 Mbps directly produces 16 seconds but ignores the 80% utilization specified in the question.

Problem 6

Sales and Accounting use the same floor and switch infrastructure. The company wants separate broadcast domains for the departments without physically moving their devices. Which method is most appropriate?

View explanation

VLANs divide devices into logical LANs even when they share physical switching infrastructure, so broadcast domains can be separated by department. If communication between the VLANs is needed, routing and access controls must also be designed. Giving devices the same MAC address creates identification conflicts and does not provide logical segmentation.

Problem 7

Many battery-powered water-level sensors will be installed in a mountainous area. Each must send a small reading every few dozen minutes for a long period, and no video is required. Which communication consideration is most appropriate?

View explanation

The requirements emphasize small, infrequent messages, battery life, and broad coverage, which fit LPWA. LPWA generally targets low-power, wide-area IoT communication rather than high-speed transmission of large video streams. Actual selection should also consider distance, radio conditions, the specific standard, pricing, and required speed.

Problem 8

A factory machine must stop within tens of milliseconds after abnormal vibration is detected. Safety control must continue despite latency or a temporary outage on the cloud connection. Which architecture is most appropriate?

View explanation

Because millisecond-level response and operation during a link outage are required, safety decisions should run near the data source on an edge device. The cloud can handle long-term storage, fleet-wide aggregation, and model updates. If every decision depends on a round trip to a remote cloud, network latency and outages directly affect immediate control.

Problem 9

A small company wants to use complete email functionality through a browser without building or maintaining its own mail server or mail application. Which cloud service model is most suitable?

View explanation

SaaS fits the requirement to use a complete email application over a network without building the server and application platform. IaaS supplies infrastructure such as virtual servers, leaving more operating-system and mail-software construction and management to the customer. Even with SaaS, the organization still manages its accounts, permissions, endpoints, and data.

Problem 10

Two business-system proposals will be used for three years, and their TCO must be compared. Which comparison method is most appropriate?

View explanation

TCO evaluates not just acquisition cost but the total cost over the target period, including operation, maintenance, and training. The comparison period and cost scope must be consistent across proposals. A proposal with a higher initial cost may still have a lower three-year TCO if automation or other features reduce ongoing expenses.