PrepIPA

IT Passport — 2025 🇬🇧 English (ITPEC)

100 questions

Q1

Which of the following is always true for two (2) sets A and B? Here, (X ∩ Y) represents the set that contains only the elements that are in both X and Y (intersection set), and (X ∪ Y) represents the set that contains all of the elements that are in at least one of X or Y (union set).

★★☆☆☆ Easy
Q2

Which of the following is the binary number that is obtained by adding the binary numbers 01011010 and 01101011? Here, the binary numbers are expressed as positive 8-bit values.

★★☆☆☆ Easy
Q3

Which of the following is the combination of the mean and median of the data? [Data] 10, 20, 20, 20, 40, 50, 100, 440, 2000

★★☆☆☆ Easy
Q4

Which of the following is the appropriate description concerning the prefix of the International System of Units (SI) that is used to indicate CPU clock frequency, communication speed, and other such things?

★★☆☆☆ Easy
Q5

There is a desk that can hold at most four (4) files. On this desk, six (6) files A through F are used for a job. When the fifth file needs to be put on the desk, the file with the longest time since the last use among the four (4) will be put in a drawer. If the files are put on the desk and referenced in order of A, B, C, D, E, C, B, D, F, B, which of the following is the last file to be put in the drawer?

★★★☆☆ Medium
Q6

At a certain company, employees get a medical allowance equal to 5% of their monthly base salary in addition to their monthly base salary. If the total of the monthly base salary and medical allowance is more than 5,000, a 20% tax is deducted from the total. In the program below, the function calculateTotalSal receives the monthly base salary as an argument and returns the monthly total salary after tax deduction. Which of the following is the correct combination of pieces of code to be inserted into [A] and [B] in the program? Here, the monthly base salary is a multiple of 100. [Program] O integer: calculateTotalSal(integer: monthlyBaseSal) integer: monthlyTotalSal monthlyTotalSal <- integer part of (monthlyBaseSal x 1.05) if (monthlyTotalSal > [A]) monthlyTotalSal <- integer part of (monthlyTotalSal x [B]) endif return monthlyTotalSal

★★★☆☆ Medium
Q7

Which of the following is the appropriate way for extracting data from a stack that stores multiple data?

★☆☆☆☆ Very Easy
Q8

In the program below, the function subTotal receives an integer array inputarr as an argument, returns an array arr in which the sum of all elements of original array inputarr up to that location is stored in the same location. Which of the following is the correct combination of pieces of code to be inserted into [A] and [B] in the program? Here, the size of the array inputarr is greater than 1, elements outside the bounds of the array must not be accessed, and the array index starts at 1. [Program] O integer []:subTotal(integer []: inputarr) integer: i integer: n <- the number of elements in inputarr integer []: arr <- {0, ..., 0} // Number of elements is n. arr[1] <- inputarr[1] for (increase i from [A] to n by 1) arr[i] <- inputarr[i] + [B] endfor return arr

★★★☆☆ Medium
Q9

Which of the following is the explanation of a characteristic of hypertext?

★☆☆☆☆ Very Easy
Q10

Which of the following is designed to virtually reduce the time for the CPU to access the main memory, in order to improve the processing efficiency of a PC?

★☆☆☆☆ Very Easy
Q11

Which of the following is the most appropriate description concerning a compatible CPU?

★★☆☆☆ Easy
Q12

In the description below concerning the connection between a PC and a peripheral device, which of the following is the appropriate combination of words to be inserted into blanks A and B? The connection of a new peripheral device to a PC requires (a) [A], but if a peripheral device that supports [B] function is connected, the [A] is installed automatically and the device can be used.

★★☆☆☆ Easy
Q13

There is an IoT system that automatically opens and closes the water gate for a rice field by measuring the water level in the rice field. Which of the following is the appropriate combination of terms to be inserted into blanks A and B in the figure?

★★☆☆☆ Easy
Q14

The system configurations A through C are made up by connecting multiple identical devices. Which of the following is the list where A through C are sorted in descending order of availability? Here, the parallel connection requires only one (1) of the devices to be functional, while the series connection requires all devices to be functional. A: Two devices connected in series. B: One device in series, followed by two devices in parallel. C: Three devices all connected in parallel.

★★★☆☆ Medium
Q15

When the processing speed of the system overall is constrained because of slow processing speed in one of the components, which of the following is the term for the component that is causing the problem?

★☆☆☆☆ Very Easy
Q16

Among the descriptions A through C below concerning the effects that are obtained by simultaneously running multiple virtual servers on one (1) physical computer, which of the following lists all and only the appropriate descriptions? A: Each virtual server can run an OS with a different version, and the resources of the physical computer can be utilized effectively. B: The throughput that is gained when the number of virtual servers is increased is the same as when the number of physical computers is increased by the same number. C: A volume of data that is the same as the capacity of the HDD on the physical computer can be simultaneously recorded on all of the virtual servers.

★★☆☆☆ Easy
Q17

Which of the following is the appropriate explanation of a deadlock?

★★☆☆☆ Easy
Q18

In a web server, five (5) directories have a hierarchical structure as shown in the figure below. In an HTML document stored in directory B, which of the following references the file img.jpg stored in the directory E? Here, directories and files are referenced using the method described below. [Method of referencing directories and files] (1) A file is referenced as "directory name/ ... /directory name/file name", where the directory names on the path are listed and separated with "/" in sequence, followed by the file name. (2) The current directory is represented by "." (a period). (3) The directory one level above is represented by ".." (two (2) periods). (4) When a reference begins with a "/", it is assumed that the root directory has been omitted from the beginning of the reference. (5) When a reference does not start with "/", "." (a period), or ".." (two (2) periods), it is assumed that "./" for the current directory has been omitted from the beginning of the reference.

★★☆☆☆ Easy
Q19

There is a system where a full backup is made after closing time every Sunday, and an incremental backup is made after closing time on Monday through Saturday. On a Wednesday, a failure happened during business hours, so a decision was made to restore data to the state at the closing time on Tuesday by using backup files. Which of the following lists all and only the necessary backup files for restoring data? Here, an incremental backup file means a backup file that contains only the data that has been modified since the previous backup (a full backup or an incremental backup) was made.

★★☆☆☆ Easy
Q20

Which of the following is the appropriate description concerning Open Source Software (OSS)?

★★☆☆☆ Easy
Q21

Spreadsheet software is used to predict sales according to the weather. The probability for the weather type (sunny, cloudy, rainy) on the day to be predicted and the predicted sales amount by weather type for each product are entered into the worksheet below. An expression is entered in cell E4 to calculate the predicted sales amount on the day for Product A, and this is copied to cells E5 through E6 and used. Which of the following is the appropriate expression to be entered in cell E4? [Worksheet] A B(Sunny) C(Cloudy) D(Rainy) Row2 Probability 0.5 0.3 0.2 Row4 Product A 300,000 100,000 80,000 Row5 Product B 250,000 280,000 300,000 Row6 Product C 100,000 250,000 350,000

★★★☆☆ Medium
Q22

Which of the following is the appropriate description of multithreading?

★★☆☆☆ Easy
Q23

Which of the following is the appropriate role of OCR?

★☆☆☆☆ Very Easy
Q24

Which of the following is the function that aids keyboard input and lessens the trouble of entering characters, by looking up past input history for characters being entered and displaying a list of candidate character strings?

★☆☆☆☆ Very Easy
Q25

When the process for a smart speaker to provide a voice response to the content of a user speaking to a smart speaker is as in (1) through (4), which of the following is the process that corresponds to voice recognition? (1) The voice of the user is transformed into text data. (2) Text data is analyzed, and the meaning is understood. (3) The content of the response is decided, and text data is created. (4) The created text data is read out.

★★☆☆☆ Easy
Q26

When an activity for building a relational database is divided into steps A through C below, which of the following is the appropriate order of the steps? A Identifying the data items to be used in the business operation B Creating tables C Inserting records

★★☆☆☆ Easy
Q27

The "Purchase_list" table in a relational database manages the purchases of products. This table should be normalized and divided into a "Purchase" table and a "Product" table. Which of the following is the most appropriate field that should be contained in common in the two divided tables? [Purchase_list table] Purchase_number | Product_number | Product_name | Count | Unit_price | Payment_method | Delivery_date Note: Each purchase includes only one product, identified by Purchase_number. Each product is uniquely identified by Product_number.

★★☆☆☆ Easy
Q28

Which of the following is the appropriate description of a rollback in transaction processing?

★★☆☆☆ Easy
Q29

Which of the following is the appropriate purpose of exclusive control in a database management system?

★★☆☆☆ Easy
Q30

Which of the following is the appropriate explanation of the POP communications protocol?

★★☆☆☆ Easy
Q31

Which of the following is the file storage on the Internet that can be freely written to and read from over the Internet and can be used for saving files in place of USB memory or other such media?

★☆☆☆☆ Very Easy
Q32

Which of the following is the appropriate description of a SIM card?

★★☆☆☆ Easy
Q33

Which of the following mobile communication systems not only offers higher communication speed than LTE, but also allows more devices to connect and has less lag time?

★☆☆☆☆ Very Easy
Q34

Which of the following is the most appropriate description of edge computing in an IoT system?

★★☆☆☆ Easy
Q35

Which of the following is the appropriate description concerning virus infection?

★★☆☆☆ Easy
Q36

Which of the following is the appropriate combination of the descriptions (i) through (iii) about threats in information security and the terms below? (i) An attack in which a malicious script injected to a web site that displays data that a visitor enters as it is, is executed on the visitor's web browser, and data such as cookies are stolen by a third party (ii) A program that infects numerous PCs, executes malicious operations on the PCs by following instructions received via a network, and conducts a coordinated attack (iii) A program that is disguised as a useful program, but once installed and executed, performs unauthorized data destruction or leakage

★★☆☆☆ Easy
Q37

A document file that is stored on a file server is directly edited on a PC and then an attempt is made to overwrite the file, but the message "You do not have permission, so the file cannot be saved" is displayed. Which of the following is the appropriate combination of permissions that were set for the document file and the folder that it is stored in? [Table] File read | File write | Folder read a) Yes | Yes | No b) Yes | No | Yes c) No | Yes | No d) No | No | Yes

★★☆☆☆ Easy
Q38

When a digital signature is attached to an e-mail and the e-mail is sent, in comparison to the use of a digital certificate that is issued by a trusted certificate authority, which of the following is the risk on the receiver's side that is caused by the use of a digital certificate created by the sender themselves?

★★☆☆☆ Easy
Q39

In risk management for information security, the categories that include risk transfer, risk avoidance, risk mitigation, and risk retention are sometimes used. Which of the following is the appropriate description concerning these?

★★☆☆☆ Easy
Q40

In a wireless LAN router, which of the following is the appropriate explanation of a function that is set up for devices brought in from external locations and is called a "guest port" or a "guest SSID" or other such names?

★★☆☆☆ Easy
Q41

Which of the following is the appropriate combination of damage by incidents (i) through (iii), and confidentiality, integrity, and availability in information security? (i) A website is taken down by a DDoS attack. (ii) Inaccurate data is entered because of a typing mistake on a keyboard. (iii) Personal information is leaked because a PC is infected with malware. [Table] (i) (ii) (iii) a) Availability Integrity Confidentiality b) Availability Confidentiality Integrity c) Integrity Availability Confidentiality d) Integrity Confidentiality Availability

★★☆☆☆ Easy
Q42

A business PC that was connected to a company's internal wireless LAN network was used to view a website on the Internet. Immediately after this, the web browser crashed and unknown files were created, and other such events occurred that indicated the possibility of infection with malware. Which of the following is the appropriate action that the user of this PC should take first?

★★☆☆☆ Easy
Q43

Which of the following is the appropriate combination of terms or phrases inserted into A through D in the table that describes the characteristics of encryption methods? [Table] Encryption method | Key characteristics | Safe distribution | Speed [A] | Encryption key and decryption key are different | Easy | [C] [B] | Encryption key and decryption key are same | Difficult | [D] A B C D a) Common key crypto. Public key crypto. Slow Fast b) Common key crypto. Public key crypto. Fast Slow c) Public key crypto. Common key crypto. Slow Fast d) Public key crypto. Common key crypto. Fast Slow

★★☆☆☆ Easy
Q44

Which of the following is the appropriate example of activities performed in C (Check) in the organizations that operate ISMS on the basis of the PDCA model?

★★☆☆☆ Easy
Q45

Which of the following is the most appropriate description of ransomware?

★★☆☆☆ Easy
Q46

In the process of system requirements definition, which of the following is the appropriate evaluation criteria for system requirements?

★★☆☆☆ Easy
Q47

Estimation methods for system development include the analogous method, the bottom-up method, and the FP (Function Point) method. Which of the following is the appropriate explanation of the FP method?

★★☆☆☆ Easy
Q48

Which of the following is the activity in software maintenance?

★★☆☆☆ Easy
Q49

Which of the following is the appropriate description concerning the black box test?

★★☆☆☆ Easy
Q50

Which of the following is the most appropriate description concerning DevOps in software development?

★★☆☆☆ Easy
Q51

When the system development activities are carried out, a plan is set up to complete the activities in 20 days by six (6) members having the same productivity. However, the plan is changed to have the activities finished in 15 days, and new members are added. When the productivity of the new members is half of the initially planned members, what is the minimum number of new members necessary for finishing the activities in 15 days?

★★★☆☆ Medium
Q52

In a system development project, a flowchart of the development process is created to perform quality management. Which of the following is the appropriate purpose of using such a flowchart?

★★☆☆☆ Easy
Q53

Which of the following is appropriate to be prepared in order to select the delivering party for a product or service?

★★☆☆☆ Easy
Q54

Which of the following is the hierarchical decomposition for the activities of creating project deliverables?

★☆☆☆☆ Very Easy
Q55

Which of the following is the most appropriate description of stakeholders in a system development project?

★★☆☆☆ Easy
Q56

The PC on one's desk and the printer in a shared space are started by a single person. Movement between desk and printer takes 60 seconds one way. Each operation/processing is sequential, but during automatic processing of one device, the person can move or operate the other device in parallel. What is the minimum time (in seconds) for the person to start PC startup at desk, move, start and end printer startup, return to desk, and end PC startup? PC startup sequence: A: Turn on power - 3 sec (Manual) B: Login screen startup - 150 sec (Automatic) C: Login operation - 10 sec (Manual) D: Application startup after login - 60 sec (Automatic) Printer startup sequence: E: Turn on power - 3 sec (Manual) F: Startup - 60 sec (Automatic)

★★★☆☆ Medium
Q57

Which of the following is the appropriate explanation concerning the approach for project management?

★★☆☆☆ Easy
Q58

Which of the following is the appropriate management system that improves the efficiency of IT operations and enhances the service quality including availability?

★★☆☆☆ Easy
Q59

Which of the following is the appropriate activity for planning and implementing the points described below in order to maintain the project room and equipment used for system development? A chamber to ensure confidentiality of test data is set up within a project room, and the entrance and exit are controlled. The server that is set up for testing is connected to an uninterruptible power supply in order to prevent data loss due to a power outage.

★★☆☆☆ Easy
Q60

Which of the following is the purpose of incident management?

★★☆☆☆ Easy
Q61

Which of the following is the most appropriate department for setting up a service desk that is a single point of contact for queries on the usage method of the internal system?

★★☆☆☆ Easy
Q62

Which of the following is the appropriate description concerning SLM in an IT service?

★★☆☆☆ Easy
Q63

Which of the following is the appropriate explanation of a system audit?

★★☆☆☆ Easy
Q64

Regarding the roles (i) through (iv) below for establishing appropriate IT governance, which of the following is the appropriate combination of the roles of the company executive responsible for it and the person responsible for the information system department? (i) Defining the IT governance policy (ii) Formulating principles for decisions on investment in computerization (iii) Deciding the roles and the rights within the information system department (iv) Performing progress management in system development on the basis of a project plan Company executive IS department head a) (i), (ii) (iii), (iv) b) (i), (iii) (ii), (iv) c) (ii), (iii) (i), (iv) d) (ii), (iv) (i), (iii)

★★☆☆☆ Easy
Q65

Which of the following is the initiative that is composed of control environment, risk assessment, control activities, information and communication, and monitoring activities, and has compliance with laws and regulations relating to the business activities as one of its objectives?

★★☆☆☆ Easy
Q66

In order to manufacture one (1) unit of a product, 10 kg of the raw material A and 5 kg of the raw material B are needed. If the amount of raw material that can be used in one (1) month is 60 kg of raw material A and 40 kg of raw material B, what is the maximum number of units of the product that can be manufactured in one (1) month?

★★☆☆☆ Easy
Q67

Among company rules, which of the following is the rule that describes segregation of duties?

★★☆☆☆ Easy
Q68

The entire inventory of Warehouse A and Warehouse B is to be sent to Store C and Store D. The number of items in the inventory of Warehouse A and Warehouse B is 35 and 15 respectively, and the required number of items for Store C and Store D is 20 and 30 respectively. The shipment cost for each item is: Store C Store D Warehouse A $400 $200 Warehouse B $200 $100 Under these conditions, what is the minimum total shipment cost in dollars?

★★★☆☆ Medium
Q69

Which of the following is the appropriate term that refers to a variety of individuals with different sex, age, nationality, experience, etc.?

★☆☆☆☆ Very Easy
Q70

At company X, the possibility of a launch being delayed for a new product Y under development and its impact on future performance were analyzed and evaluated. Which of the following corresponds to this initiative?

★★☆☆☆ Easy
Q71

Which of the following is the expression that calculates operating profit?

★★☆☆☆ Easy
Q72

The sales and the costs for a certain product for this month are as shown below. When the unit sales price is changed from 1,000 yen to 800 yen, in order to avoid making a loss, at least how many units need to be sold each month? Here, the fixed cost and the variable cost per unit of the product do not change. Sales amount: 2,000,000 yen Unit sales price: 1,000 yen Units sold: 2,000 Fixed cost: 600,000 yen Variable cost per unit: 700 yen

★★★☆☆ Medium
Q73

Which of the following is the right that belongs to a purchaser of a PC software package provided by means of CD-ROM?

★★☆☆☆ Easy
Q74

Which of the following is free software that can be copied or modified freely without permission from the author?

★☆☆☆☆ Very Easy
Q75

Which of the following is the case example where Bluetooth is used as a standard protocol of wireless communications for cellular phones, household electric appliances, or such other devices?

★★☆☆☆ Easy
Q76

Which of the following is appropriate as a characteristic of the QR code?

★★☆☆☆ Easy
Q77

Among the lists of corporate activities A through D, which of the following is the list that contains all activities concerning the establishment of compliance? A: Supporting fine art and cultural activities B: Training employees in the codes of conduct C: Performing activities for prevention of global desertification D: Creating a mechanism for whistle blowing

★★☆☆☆ Easy
Q78

Which of the following is the international standardization organization that engages in standardization of information security management systems and quality management systems?

★☆☆☆☆ Very Easy
Q79

Which of the following is the appropriate example of vertical integration in corporate business development?

★★☆☆☆ Easy
Q80

Which of the following is the appropriate combination of the management themes and techniques for achieving them? [Management themes] A: A company wants to develop efficient business processes that span from procurement of components to sales. B: A company wants to understand customers' preferences and other information, and use them in product planning and sales promotion. C: A company wants to know the product name, quantity, and other sales-related information at the time of sale in order to restock appropriately and analyze strong-selling products. [Techniques] CRM, POS, SCM A B C a) SCM CRM POS b) POS CRM SCM c) CRM SCM POS d) SCM POS CRM

★★☆☆☆ Easy
Q81

The elements seen from the seller's standpoint in the marketing mix are called "the 4Ps." Which of the following are the corresponding elements as seen from the buyer's standpoint?

★☆☆☆☆ Very Easy
Q82

As a method for a company to utilize the business resources of another company, there is a corporate acquisition and a corporate alliance. Which of the following lists all and only the general disadvantages of a corporate alliance in comparison with a corporate acquisition? I It is required to reform the other company's organization or business process. II The participation in decision making of the other company regarding the utilization of business resources is limited. III The required investment is large and has an impact on the financial status.

★★☆☆☆ Easy
Q83

A middle-sized consumer electronics manufacturer company A divides the products into groups in accordance with their potential and competitive strength in order to determine the priority of investing funds among their lineup. Which of the following is the most appropriate method of analysis for this purpose?

★★☆☆☆ Easy
Q84

Which of the following is the appropriate means of complementing the technologies and know-how of one's company with those of other companies in a short period of time?

★★☆☆☆ Easy
Q85

Which of the following is the most appropriate description of the API economy?

★★☆☆☆ Easy
Q86

Which of the following is the appropriate explanation of an ERP package?

★★☆☆☆ Easy
Q87

When build-to-order production is compared to build-to-stock production, which of the following is the appropriate characteristic of build-to-order production?

★★☆☆☆ Easy
Q88

Which of the following is the appropriate example of a function that uses an IC tag?

★★☆☆☆ Easy
Q89

Which of the following terminologies refers to an initiative to develop unprecedented and innovative services by utilizing IT in the field of finance, such as a service provided by a bank where AI manages depositors' assets automatically?

★☆☆☆☆ Very Easy
Q90

Which of the following is one of the technologies used in deep learning, and represents a mathematical model of the circuits in the human brain?

★☆☆☆☆ Very Easy
Q91

Which of the following is the production system that minimizes the inventory between processes through the procurement of raw materials and components at the required timing and in the required quantity?

★☆☆☆☆ Very Easy
Q92

Which of the following is the most appropriate diagram representing the flow of business operations after concurrent engineering is applied? Here, the arrows in the diagram show the flow of business operations, and each activity name is displayed on top. a) All four stages (Specifications → Production diagram → Process diagram → Production) proceed strictly sequentially, one finishing before the next starts. b) Specifications and Production diagram proceed sequentially; Process diagram and Production start with partial overlap of the previous stage. c) All stages run within one large feedback loop, with Production feeding back to Specifications. d) Each stage starts before the previous one finishes — Specifications starts first, then Production diagram begins while Specifications continues, then Process diagram begins while Production diagram continues, then Production begins while Process diagram continues (staggered overlapping start).

★★☆☆☆ Easy
Q93

Which of the following is the general name of software that has various functions such as communication via e-mail and chat, information sharing, and video conferencing?

★☆☆☆☆ Very Easy
Q94

Which of the following is the term for a method that uses data such as accumulated sales data to find regularity such as a correlation between weather and products that sell well?

★★☆☆☆ Easy
Q95

Which of the following is the appropriate term that represents a method for achieving automation and improved efficiency by replacing humans with a software robot to perform routine office work?

★☆☆☆☆ Very Easy
Q96

In the upstream processes of system development, which of the following is the most appropriate objective of performing business process modelling?

★★☆☆☆ Easy
Q97

The table below shows the evaluated scores of the proposals of four (4) vendors from the viewpoints of management, technology, and price. When each score is weighted and the vendor with the highest total score is selected as the supplier, which of the following vendors is selected? Evaluation item | Weight | Vendor A | Vendor B | Vendor C | Vendor D Management | 2 | 2 | 4 | 3 | 3 Technology | 3 | 3 | 4 | 2 | 3 Price | 5 | 4 | 2 | 4 | 3

★★★☆☆ Medium
Q98

When the system life cycle is divided into the planning process, requirements definition process, development process, and operation/maintenance process, which of the following is the appropriate process to clarify the functions of the system for the implementation of business operations?

★★☆☆☆ Easy
Q99

Which of the following is the appropriate combination of words or phrases to be inserted into blanks A and B in the description below concerning documentation that is created in the procurement of an information system? The document that sets out the overview, what is being asked for, procurement conditions, and other such information for an information system to be procured and asks for a proposal to be submitted is the [A]. And the document that asks for the provision of relevant information by indicating the computerization purpose, a business overview, and other such information is the [B]. A B a) RFI RFP b) RFI SLA c) RFP RFI d) RFP SLA

★★☆☆☆ Easy
Q100

In an online service, a website with a newly created design and a website with a conventional design were run in parallel experimentally to compare them and find out the one that makes its users more likely to apply for paid services. Which of the following is the most appropriate technique used at this time?

★★☆☆☆ Easy