Chargement....
|
Appuyez et maintenez pour déplacer |
|||
|
Cliquez ici pour fermer |
|||
Question 1 Rapport
The acronym IP address has its full meaning to be _________
Détails de la réponse
Every device connected to a network needs a unique identifying number so that data sent across the network reaches the correct destination. This identifying number follows a standardised addressing scheme.
IP stands for Internet Protocol, the set of rules that governs how data is addressed and routed between devices on a network such as the internet. An IP address is the specific numerical label assigned to a device under that protocol, allowing other devices to locate and communicate with it.
The other expansions given do not correspond to any real networking term; they are plausible-sounding but incorrect substitutes for protocol, which is the actual technical word that IP represents.
Exam takeaway: remember that IP always expands to Internet Protocol, whether discussing an IP address, IP routing, or related networking concepts.
Question 2 Rapport
EDVAC was produced using which of these concepts ?
Détails de la réponse
Before this machine was built, early computers had to be manually rewired or reconfigured with switches every time a different task needed to be run, which made changing a program a slow physical process. This computer introduced a design in which the instructions of a program, along with its data, could be stored electronically in the computer's own memory alongside each other, so the machine could read and execute instructions automatically without being physically rewired. This design idea is known as the stored-program concept, and it became the foundation for how virtually all modern computers operate.
The other concepts listed belong to computer networking rather than to the internal design of a single early computer. Packet routing and packet switching both describe how data is broken into small units and directed across a network to reach its destination, technologies developed decades later for communication between separate computers. Circuit switching describes an older telecommunications method, used in traditional telephone networks, where a dedicated connection is held open for the entire duration of a call. None of these three ideas describe how a single computer stores and executes its own instructions internally, which is exactly what this machine was built to demonstrate.
When a question links a historic computer to a "concept," check whether the concept concerns how the machine processes instructions internally (such as the stored-program idea) or how separate machines communicate over a network (routing, switching); these are two entirely different areas of computing history.
Question 3 Rapport
When an input signal 1 is applied to a NOT gate, the output is ..................
Détails de la réponse
Logic gates are the basic building blocks of digital circuits, and each type of gate follows a fixed rule for turning input signals into an output signal. A NOT gate is the simplest of these: it has only one input and one output.
A NOT gate performs logical inversion, meaning its output is always the opposite of its input. Since the input signal given is \(1\), the output must be \(0\). This can be summarised in a small truth table:
| Input | Output |
|---|---|
| 0 | 1 |
| 1 | 0 |
The output cannot be "either 0 and 1" at once, because a NOT gate produces exactly one definite output for a given input, never both simultaneously. Since a valid, single-value answer exists, "none of the above" is also incorrect.
Remember the NOT gate with a single rule: it always flips the input, 0 becomes 1, and 1 becomes 0.
Question 4 Rapport
Which operation combines multiple files into a single archive file?
Détails de la réponse
File management operations each do a distinct job: delete removes a file entirely, copy duplicates a file while keeping the original in place, and move relocates a file from one location to another. None of these three combines several separate files into one package.
Compress takes multiple files, or even whole folders, and packages them together into a single archive file, often reducing the overall storage size in the process using compression algorithms. This single archive can then be stored or shared as one unit rather than as many separate files, and later extracted back into its original files when needed. Common archive formats produced this way include ZIP and RAR.
The wording combines multiple files into a single archive is the specific clue that separates compress from delete, copy, or move, since only compression bundles several files together into one.
Question 5 Rapport
Which of these is not a job of the operating system
Détails de la réponse
An operating system (OS) is the core system software that manages a computer's hardware and resources, and provides the environment in which other programs can run. Its main duties include security, memory management, and process coordination on the local machine.
Stopping unauthorised users from accessing files that do not belong to them is a security function that the operating system genuinely handles, through user accounts, passwords, and file permissions. Allocating memory to running programs is also a core operating system function, since the OS must decide how much RAM each active program can use and prevent programs from interfering with each other's memory space.
Handling HTTP requests for web pages, however, is not something the operating system does. That task belongs to web server software (such as Apache or Nginx), which listens for requests from web browsers and sends back web page content over the internet. A computer can run an operating system perfectly well without ever hosting or responding to any HTTP request.
Exam tip: when a question lists OS duties alongside an internet-specific task like handling web requests, remember that anything tied specifically to serving websites belongs to web server or network application software, not the operating system itself.
Question 6 Rapport
Which of the following is a valid variable name in Python?
Détails de la réponse
Python enforces a small set of rules for naming variables. A valid name must start with a letter or an underscore, may be followed by any combination of letters, digits, and underscores, and must not contain spaces or symbols such as \(\$\) or a hyphen, since Python would interpret a hyphen as a subtraction operator.
Checking each proposed name against these rules: one name is rejected because it contains the symbol \(\$\), which is not permitted in Python identifiers; another is rejected because a hyphen inside a name would be read as subtraction; and another is rejected because it starts with a digit, which Python does not allow since a name beginning with a number could be confused with a numeric literal. The remaining name uses only letters and an underscore and begins with a letter, satisfying every rule for a valid identifier.
When checking whether a variable name is valid in Python, look first at its first character, since that single check eliminates any name starting with a digit, and then scan the rest for forbidden symbols like \(\$\) or a hyphen.
Question 7 Rapport
What does CO stand for in COBOL?
Détails de la réponse
COBOL stands for COmmon Business Oriented Language, so the "CO" at the start of the name is simply short for the word Common.
The name reflects the language's original design goal, it was created to be a shared, standardised programming language that many different businesses and organisations could use for their data processing needs, rather than each business inventing its own separate language. "Common" signals that the language was meant to be broadly usable across the business world.
"Common object", "computer oriented", and "common operating" are not accurate expansions of the abbreviation, they either add words that are not part of the acronym or replace "business" with an unrelated term, neither matches the actual expansion of COBOL.
Exam tip: remember COBOL by expanding the whole acronym together, Common Business Oriented Language, this makes it easy to see that "CO" is simply "Common."
Question 8 Rapport
Computers that are small and low cost are referred to as ?
Détails de la réponse
Computers are grouped into size and cost categories such as supercomputers, mainframes, minicomputers, and microcomputers, ranked roughly from largest and most expensive to smallest and cheapest.
A microcomputer is the smallest and least expensive category, built around a single microprocessor chip. This category includes the desktop and laptop computers most people use daily, which are physically compact and affordable compared to larger institutional computers.
The other options do not correctly name this category. Minicomputers are a step above microcomputers in size, power, and cost, historically used by medium-sized organisations for tasks larger than what one desktop machine could handle. "Small computers" and "tablet computers" are not the standard classification terms used in computer studies for this size and cost category; tablets are simply one physical form that microcomputers can take, not the name of the classification itself.
When a question links "small" and "low cost" together as defining features of a computer category, the correct technical term is microcomputer, not the informal phrase "small computer".
Question 9 Rapport
Which of the following controls the way in which the computer system functions and provides a means by which users can interact with the computer.
Détails de la réponse
Every computer needs a piece of software that manages its hardware resources and gives the user a way to interact with the machine, since without it neither the hardware nor any application program could function usefully.
The operating system is exactly this piece of system software. It controls how the computer's hardware resources, such as memory, storage, and processing time, are allocated and used, and it provides the interface (whether graphical or command-based) through which a user gives commands and sees results. Familiar examples include Windows, macOS, Linux, and Android.
The other options do not fit this description. The CPU and the ALU are hardware components that carry out instructions and calculations; they do not manage overall system function or provide a user interface on their own. Application software (such as a word processor or spreadsheet) lets a user perform specific tasks, but it runs on top of, and depends on, the operating system rather than controlling the way the whole computer system functions.
When a question links "controlling how the system functions" with "providing a means for users to interact" in the same sentence, that combination of roles is the defining job of the operating system.
Question 10 Rapport
The Internet is an example of which computer network?
Détails de la réponse
Networks are grouped by the size of the area they cover. A network confined to one building is local; a network that spans cities, countries, or continents, connecting many smaller networks together, is described as "wide" in scope.
The Internet links millions of separate networks across the entire planet, so it fits the definition of a WAN (wide area network): it is the largest possible example of this network class, built from countless smaller networks joined together through routers, undersea cables, and satellite links.
A LAN is too small in scope (one site), and a MAN (metropolitan area network) only covers a city. "CAN" is not a standard, widely recognised network category taught at this level, so it can be set aside.
Remember the size ordering: LAN (building) is smaller than a MAN (city), which is smaller than a WAN (country or world). The Internet always sits at the top of that scale.
Question 11 Rapport
The connection between two or more computers to share resources or allow electronic communication is called ?
Détails de la réponse
A computer network exists whenever two or more computers are linked together, whether by cables, fibre, or wireless signals, so that they can share resources such as printers, files, and internet access, or exchange data directly. The linking itself, the physical and logical connection between the machines, is what defines a network.
The other terms describe things that happen because of a network rather than the network itself. A connection is a general word for any link between two points and does not specifically describe computers joined for resource sharing. Communication is one possible outcome of a network (computers exchanging messages), but a network can exist purely for sharing a printer or storage device without any messaging taking place. Transfer describes moving data from one place to another, which is also just one activity that a network makes possible, not the structure that enables it.
When you see a question that names the act of linking machines together for shared use, the keyword to associate with it is always network, since networking is the umbrella concept and communication, transfer, and connection are all specific behaviours that a network supports.
Question 12 Rapport
The type of computers that are designed to perform complex calculations extremely rapidly are called ?
Détails de la réponse
Computers are often classified by size and processing power, ranging from small personal devices to the most powerful machines built for specialised scientific and industrial work.
A supercomputer sits at the very top of this scale. It is designed with an extremely high number of processors working together to perform trillions of calculations per second, making it suitable for tasks such as weather forecasting, nuclear simulations, and complex scientific modelling that require enormous, rapid computational power far beyond what an ordinary computer can provide.
Microcomputers and laptops are personal computers intended for everyday individual use, such as word processing, browsing, and general office work, and while capable, they are far less powerful than supercomputers. A mainframe computer is also large and powerful, mainly used by big organisations for processing large volumes of transactions (such as banking records) reliably, but it is built for high-volume, simultaneous multi-user processing rather than the raw, extreme computational speed that defines a supercomputer.
Exam tip: whenever a question emphasises extremely fast, complex calculations rather than handling many users or transactions, the answer points to a supercomputer, not a mainframe.
Question 13 Rapport
Which of the following is an example of graphics software ?
Détails de la réponse
Application software is grouped into categories based on the main task it is designed to perform, such as word processing, spreadsheets, database management, presentations, or graphics creation and editing.
Adobe Illustrator is a vector graphics editor built specifically for creating and manipulating illustrations, logos, and drawings. Because its core purpose is producing and editing graphical artwork, it belongs to the category of graphics software.
The other named programs belong to different software categories. Microsoft Word is word processing software used for creating and formatting text documents. Microsoft PowerPoint is presentation software used to build slideshows that combine text, images, and transitions. MS Access is database management software used to store, organise, and query structured records. None of these three has graphic creation and editing as their primary purpose the way Adobe Illustrator does.
When identifying software categories, focus on the primary function the tool was built for, since many packages can display images without being classified as graphics software.
Question 14 Rapport
The windows explorer is divided into _________ categories.
Détails de la réponse
File Explorer, traditionally called Windows Explorer, is designed with a layout that lets a user move between locations and see the contents of the selected location at the same time.
The window is split into two main sections: a navigation pane on one side, listing drives, folders, and shortcuts in a tree structure, and a larger content pane on the other side, showing the files and subfolders contained in whatever location is currently selected in the navigation pane.
Larger numbers describe finer subdivisions some materials use for the toolbar, address bar, and status bar, but the core division that defines how Windows Explorer is structured and used is this two-pane layout, so the smallest number is the one that matches the basic description in the question.
When revising software interfaces, focus on the main functional split (here, navigation versus content) rather than counting every visible toolbar or strip, since exam questions about "how many parts" usually refer to that core structural division.
Question 15 Rapport
The only possible number base for 235\(_x\) among the following is ?
Détails de la réponse
In any positional number system with base \(x\), every digit used in a number must be strictly less than the base itself. A base \(x\) system only has the digits \(0\) through \(x-1\) available, so a digit equal to or greater than the base can never legally appear.
The number \(235_x\) contains the digit \(5\), which means the base must satisfy \(x > 5\), or equivalently \(x \geq 6\). Testing the possible bases given: base \(3\) only allows digits \(0\), \(1\), and \(2\); base \(4\) only allows digits \(0\) to \(3\); and base \(5\) only allows digits \(0\) to \(4\). None of these can contain a digit \(5\), so all three are invalid. Base \(6\) allows digits \(0\) through \(5\), which comfortably accommodates every digit in \(235_x\), making it the only valid choice.
Whenever a number is written with an unknown base and contains a specific digit, the base must always be greater than the largest digit present; use this check first to eliminate impossible bases quickly.
Question 16 Rapport
What is a flowchart?
Détails de la réponse
Before a programmer writes any code, they need a clear plan for the logic the program will follow. Two common planning tools serve this purpose: pseudocode, which describes the steps in structured everyday language, and flowcharts, which describe the same steps visually.
A flowchart is specifically a visual representation of an algorithm. It uses standard geometric shapes, such as an oval for the start and end, a rectangle for a process step, a diamond for a decision point, and a parallelogram for input or output, connected by arrows that show the order in which the steps happen. Because it shows the flow of logic at a glance, a flowchart makes it easy to trace a program's decisions and loops before any code exists.
A written explanation without any visual form is closer to pseudocode, and a data table or a piece of source code serves a different purpose entirely, since neither one depicts the flow of logic using shapes and connecting arrows the way a flowchart does.
Question 17 Rapport
Which type of network can span several building, but is usually less than 30 square miles big?
Détails de la réponse
Networks sit on a scale from smallest to largest coverage area: LAN (one building), then the next size up, MAN (a whole city), and WAN (a country or the globe). Between a single-building LAN and a city-wide MAN sits a network that can stretch across several buildings on one site, such as a university or company campus, while still being confined to a fairly small area.
This is the Campus Area Network (CAN). It is larger than a LAN because it links multiple buildings, but it is still limited in size, typically covering less than about 30 square miles, which is far smaller than the city-wide reach of a MAN or the national and global reach of a WAN.
Exam takeaway: the key distinguishing detail in this question is the phrase several buildings combined with a size limit well under a full city, which points specifically to a Campus Area Network rather than a LAN, MAN, or WAN.
Question 18 Rapport
Another word for booting is
Détails de la réponse
The term "booting" comes from the phrase "pulling yourself up by your bootstraps", describing how a computer, on power-up, must load its own operating system into memory before it can do anything else, without any operating system already running to help it.
Booting therefore refers specifically to the process of starting a computer: the system runs its initial hardware checks, then loads the operating system from storage into memory so that the machine becomes ready for use. This is the meaning that matches the everyday word "starting".
"Restarting" describes shutting down and booting again, which is a related but more specific event than the general act of starting up. "Loading" and "running" are broader terms that can apply to any program, not specifically to the unique process of bringing a computer to life from a powered-off state.
Examination reminder: reserve "booting" for the very first startup sequence of a computer, and use "rebooting" only when specifically describing a restart after the system was already running.
Question 19 Rapport
Which of the following components of the computer is referred to as the administrative section ?
Détails de la réponse
A computer system is often compared to an organisation in which different parts play different roles. The input unit brings data and instructions in, the output unit presents results, and the memory unit stores data and programs for use.
The Central Processing Unit is described as the administrative or managerial section because, like a manager, it directs and controls the activities of every other component. Its control unit issues the signals that tell the input unit when to bring in data, the memory unit when to store or release it, and the output unit when to display results, while its arithmetic and logic unit carries out the actual processing decisions. This coordinating and decision-making role is exactly what an administrative section does in any organisation.
Associate the Central Processing Unit with control and coordination whenever a question uses organisational language such as "administrative", "managerial", or "the brain" of the computer.
Question 20 Rapport
The rules that govern the structure of a command or programming language is called
Détails de la réponse
Every programming or command language has strict rules that determine how its words, symbols, and punctuation must be arranged for a statement to be understood by the computer. If these rules are broken, the computer cannot interpret the instruction at all, even if the intended meaning would be obvious to a human reader.
This set of structural rules is called syntax. It defines things such as the correct order of keywords, how statements must be terminated, and how brackets or quotation marks must be paired. A program that violates syntax rules will produce a syntax error and will not run.
Algorithm refers to the logical sequence of steps used to solve a problem, which is a separate concept from how those steps are written down in code. Logic refers to the reasoning behind a solution, and a password is a security credential; neither of these describes the structural grammar of a language.
Examination reminder: keep syntax (structural rules of the language) distinct from an algorithm (the logical steps of a solution), since exam questions often test the two ideas against each other.
Question 21 Rapport
The memory unit receives data and information from which unit?
Détails de la réponse
The memory unit of a computer stores data and instructions temporarily or permanently for processing. To understand where it gets this data from, it helps to recall the basic data flow inside a computer: data first enters the system, then gets stored, then gets processed, and finally leaves the system as output.
Data and instructions enter the computer through the input unit, using devices such as a keyboard, mouse, or scanner. Once entered, this data is passed to the memory unit for storage before the central processing unit acts on it. This makes the input unit the correct source that feeds data and information into memory.
The output unit only displays or produces results after processing, so it does not feed memory; instead, it receives finished results from memory or the processor. The control unit directs and coordinates operations rather than supplying raw data, and the arithmetic and logic unit performs calculations and comparisons on data already in memory, rather than being the point of entry for new data.
Exam tip: always trace the data flow in order: input reaches memory, memory feeds the processor (control unit and arithmetic and logic unit), and the processor sends results to output.
Question 22 Rapport
When records are given a new value, it is called
Détails de la réponse
In database management, several standard operations are used to maintain and manipulate stored records: insertion (adding new records), deletion (removing existing records), retrieval (reading or fetching records), and updating (changing the values already held in an existing record).
When a record is given a new value, meaning one or more of its existing fields are changed to reflect new or corrected information, such as updating a student's address after they move, this operation is called updation (updating). The record already exists in the database; only its stored value changes.
Insertion is different because it adds a brand-new record that did not exist before, rather than changing a value inside a record that already exists. Deletion removes a record entirely rather than altering its content, and retrieval only reads existing data without changing it at all.
Exam tip: match each database keyword to its action: insertion adds a new record, deletion removes one, retrieval reads one, and updation is the only one of the four that changes the value already stored in an existing record.
Question 23 Rapport
In general, a file is basically a collection of all related______.
Détails de la réponse
Data organisation in computing follows a hierarchy, moving from the smallest unit to the largest: a character is combined with other characters to form a field (for example, a student's name), related fields are combined to form a record (for example, one student's full set of details), and related records are combined to form a file.
A file, therefore, is best described as a collection of related records, since each record within the file represents one complete set of data about a single entity, and the file groups many such entities together under one name.
Fields alone are too small a unit to describe a whole file, since a file is made of many records, each containing several fields. "Rows & columns" is spreadsheet terminology rather than the general definition used for files, and a database is a larger structure that can contain many files or tables, not the other way around.
Examination reminder: memorise the data hierarchy in order: character, field, record, file, database, so you can place each term correctly relative to the others.
Question 24 Rapport
How can you add speaker notes to a PowerPoint slide?
You can add speaker notes by clicking on "View" and then selecting "Notes Page" to open the notes pane where you can
edit your notes.
Détails de la réponse
PowerPoint offers several ways to view a presentation, each suited to a different task. Slide Sorter view shows small thumbnails of every slide for reordering them, Presenter view is used while actually delivering the presentation and shows notes only to the speaker on a separate screen, and Reading view displays the slides full-screen for reviewing content without editing tools.
To add speaker notes directly onto a slide, the correct approach is to open the View tab and select Notes Page. This view displays each slide with a text box beneath it specifically for typing notes that the presenter can refer to, and clicking into that area allows the notes to be typed or edited directly.
The distinction to hold onto is that Presenter view displays notes that already exist while presenting, whereas Notes Page view is where those notes are actually written and edited beforehand.
Question 25 Rapport
What distinguishes open-source software from proprietary software?
Détails de la réponse
The defining difference between open-source and proprietary software lies in the rights granted over the software's source code. Open-source software is distributed with its source code freely available, and its licence explicitly allows users to study, modify, and redistribute that code, including their own modified versions. Proprietary software keeps its source code hidden and its licence restricts users to running the program as supplied, without any legal right to alter or redistribute it.
Cost is not the defining distinction: some open-source software is distributed without charge, but the licence terms concerning modification and redistribution are what technically define the category, not the price. Security is also not a reliable distinguishing feature, since either type of software can be well written or poorly written, and openness of the source code does not by itself guarantee stronger security. The characteristic that consistently separates the two categories is that open-source licensing permits modification and redistribution of the code, while proprietary licensing does not.
Examination reminder: when a question asks what technically "distinguishes" open-source from proprietary software, look for the answer built around rights to modify and redistribute the source code, rather than price or security claims.
Question 26 Rapport
Why is it important to be stable, steady, and patient during program development?
Détails de la réponse
Program development is a step-by-step process: understanding the problem, designing a solution, writing code, and testing it. Each step depends on careful, methodical work, because a mistake made early, such as a misread requirement or a rushed line of code, tends to carry forward and multiply through later stages.
Being stable, steady, and patient keeps a programmer working carefully through each step rather than rushing or skipping checks, which directly reduces the likelihood of making errors such as logic mistakes, typing errors, or missed requirements. A calm, methodical approach also makes it easier to spot a small error before it becomes a bigger problem buried deep in the program.
This is not about avoiding debugging tools or slowing the work down for its own sake; patience is valuable specifically because it prevents the errors that would otherwise need to be found and fixed later, often at greater cost in time.
Question 27 Rapport
At least how many keys is a keyboard made up of?
Détails de la réponse
The standard computer keyboard used across most desktop and laptop systems is built around a fixed minimum key layout that includes the alphabet keys, number keys, function keys, punctuation keys, and control keys such as Shift, Ctrl, Alt, Enter, and the spacebar.
This standard layout is known as the 101-key keyboard, and it is the minimum arrangement recognised in computer studies. Some keyboards add extra keys, for example multimedia or Windows-specific keys, which increases the total beyond 101, but the base standard that every full-size keyboard is built on top of is 101 keys.
Exam takeaway: remember 101 as the baseline standard keyboard key count; extended keyboards add extra keys on top of this minimum for extra functions such as multimedia control or additional shortcuts.
Question 28 Rapport
Who invented the Napier Bones
Détails de la réponse
Napier's bones is a manual calculating tool made up of numbered rods marked with multiplication tables, which a user could arrange side by side to simplify multiplication, division, and even finding square roots. This tool takes its name directly from the Scottish mathematician who designed it in the early 17th century, publishing his method in 1617, and the device is named after him in the same way that many inventions carry the surname of the person who created them.
None of the other names listed have a documented connection to inventing this tool. A person sharing part of the same surname but without a first name matching the historical record is not the mathematician credited with the invention. A different inventor is instead remembered for designing an automated loom controlled by punched cards, a device used in the textile industry rather than in mathematics. Another figure among the choices is known for designing early mechanical calculating engines in the 19th century, considerably later than Napier's bones and using an entirely different mechanical approach based on gears rather than multiplication rods.
A reliable way to answer "who invented" questions about a tool is to match the tool's own name to the inventor's name first, since many historical devices, including this one, are named directly after their creator.
Question 29 Rapport
Which of the following is not a type of computer on the basis of operation?
Détails de la réponse
Computers can be classified in several different ways, and one important classification is based on the mode of operation, that is, the type of data the computer is designed to process and how it processes that data.
Under this classification, there are exactly three recognised categories. A digital computer processes discrete data using binary digits. An analog computer processes continuously varying physical quantities, such as voltage or temperature. A hybrid computer combines features of both digital and analog computers, processing both discrete and continuous data.
"Remote" is not a category within this classification at all. Remote refers to the location or method of access to a computer, for example accessing a machine over a network from a distant place, which has nothing to do with how the computer processes data internally. A computer can be digital, analog, or hybrid regardless of whether it is accessed remotely or used locally.
Exam tip: when a question lists "types of computers by mode of operation," check that each option genuinely describes a way of processing data (digital, analog, hybrid); anything describing location or access method, like "remote," does not belong in that classification.
Question 30 Rapport
Which type of software acts as an intermediary between hardware and applications?
Détails de la réponse
Computer software is broadly grouped into system software and application software. System software is the layer that manages the computer's own hardware resources, such as the processor, memory, storage devices, and input/output ports, and it provides a controlled environment on which other programs can run. The operating system is the main example of system software.
Application software, by contrast, is written to perform tasks for the end user, such as word processing or accounting, and it relies on system software to communicate with the hardware; it does not manage the hardware directly. Because system software sits between the physical hardware and the applications that request services from it, translating high-level requests from applications into instructions the hardware can execute, it is the software that acts as the intermediary between hardware and applications.
Firmware is a form of system software permanently stored on a hardware device to control that specific device, and it does not manage the general relationship between all applications and all hardware the way an operating system does, so it is a narrower and less complete answer here.
Examination reminder: whenever a question describes software that "manages," "controls," or "coordinates" hardware for other programs, the expected answer is system software, with the operating system as its central example.
Question 31 Rapport
How many types of booting are there?
Détails de la réponse
Booting is the process of starting a computer and loading the operating system into main memory so the machine becomes ready for use. Computer studies classifies booting into two types based on the state of the computer at the time it is started:
Both types achieve the same result, loading the operating system, but they differ in whether power was interrupted first. No additional recognised category of booting exists beyond these two at this level.
Exam takeaway: remember booting by the power state at the start of the process, cold booting begins from off, warm booting begins from an already running machine.
Question 32 Rapport
Which network device provides a central point for connecting devices within a network and manages data traffic between them?
Détails de la réponse
Several devices sit at the centre of a network, but they differ in what they actually do with the data passing through them. A router directs traffic between separate networks, such as a home network and the wider internet, and a modem converts signals so a network can connect to an internet service provider's line; neither one is primarily built to connect devices within one local network.
A hub also connects devices within a single network, but it is a very basic device: it simply repeats any incoming data out to every connected device, with no awareness of which device the data is actually meant for. A switch does the same central-connection job but manages the traffic intelligently. It reads the address information in each piece of data and sends it only to the specific device it is intended for, which reduces unnecessary traffic and collisions on the network. This targeted management of data traffic is why a switch, not a hub, is described as managing data traffic between connected devices.
When a question stresses that a device manages or directs traffic rather than just connecting devices, that description points to a switch rather than the more basic hub.
Question 33 Rapport
Which of the following is a cloud storage service?
Détails de la réponse
Cloud storage services let a user save files on remote servers over the internet and access them from any connected device. This is different from a search engine, which helps users find information on the web, or a design tool, which is used to create graphics, since neither of those is built to store and sync a user's personal files.
Yandex is primarily a search engine and internet services company, DuckDuckGo is a privacy-focused search engine, and Adobe XD is a design and prototyping application. Drop Box, by contrast, is a dedicated cloud storage service: it lets users upload files to remote servers, keep them synchronised across devices, and share them with others through generated links.
The exam distinction to hold onto is function, not just familiarity: a cloud storage service is defined by its job of storing and syncing files remotely, which only one of the listed options is built to do.
Question 34 Rapport
What is the etiquette one should follow while working online?
Détails de la réponse
Just as social situations in the physical world have accepted rules of polite behaviour, online communication has its own accepted set of behavioural rules that help interactions stay respectful and orderly.
The specific term for etiquette followed while working or communicating online is netiquette, a blend of the words "network" and "etiquette". It covers practices such as respecting others' privacy, avoiding offensive language, and not spamming or misusing shared online spaces.
The idea that "anything goes" as long as a person remains anonymous is the opposite of etiquette; it describes a lack of accountability rather than a code of good conduct. "Netflix" is a streaming entertainment service and has no connection to behavioural rules online. "Piracy" refers to the illegal copying or distribution of protected content, which is a specific offence, not a general code of online conduct.
Notice how the word netiquette is built by combining "net", short for network, with "etiquette", which makes it easy to recall its meaning directly from its spelling.
Question 35 Rapport
Which part of a processor contains the hard ware necessary to perform all the operations required by a computer?
Détails de la réponse
A processor (CPU) is made up of several internal parts that each play a distinct role in carrying out instructions. Two of its key components are the control unit and the data path, which together perform all the operations the computer needs.
The data path is the part of the processor that contains the actual hardware, circuits such as the arithmetic and logic unit and the registers connected together, needed to perform every operation required by a computer: fetching data, carrying out calculations, and moving results between components. It is essentially the physical execution engine of the processor, containing all the functional hardware needed to carry out instructions.
The controller (control unit) directs and sequences these operations by sending signals telling the data path what to do and when, but it does not itself contain all the hardware that performs the operations; it coordinates rather than executes. Registers are small, fast storage locations within the data path used to briefly hold data during processing, forming only one part of the data path rather than the whole set of operational hardware. Cache is a fast memory layer used to speed up access to frequently used data, but it is a memory component, not the hardware that performs computational operations.
Exam tip: link the data path to "performing operations" (the doing) and the control unit to "directing operations" (the coordinating), since questions often test this distinction.
Question 36 Rapport
The end users are able to operate at the _______ tier.
Détails de la réponse
In three-tier client-server architecture, an application is split into three separate layers: the presentation tier, the application (logic) tier, and the data tier. Each layer has a distinct role and only ever talks to the layer directly above or below it.
The presentation tier is the layer that end users see and interact with directly, it is made up of the screens, forms, buttons and menus that display information and collect input. Since ordinary users never see or touch the underlying business rules or the database, they operate entirely within this presentation layer, entering data and viewing results through it.
The application tier processes business logic behind the scenes, and the data tier stores and retrieves data, but neither is directly accessible to the end user, they are reached only through requests passed on from the presentation tier.
Exam tip: when a question asks which tier the user interacts with, think of it as "the layer you can see on the screen", that is always the presentation tier.
Question 37 Rapport

What is the output expression for the circuit shown above?
Détails de la réponse
This question tests the ability to derive a Boolean output expression from a combinational logic circuit built from standard gates.
The circuit contains three inputs: A, B, and C. Two AND gates are present. The first AND gate receives inputs A and B, producing the product AB. The second AND gate receives inputs B and C, producing the product BC. The outputs of both AND gates are then fed into a single OR gate, which combines them to produce the final output.
Applying the rules of Boolean algebra to this arrangement:
The overall output expression is therefore \( AB + BC \). This is a sum-of-products (SOP) expression, where each AND gate produces a product term and the OR gate sums them.
This expression can also be factored as \( B(A + C) \), showing that the output is HIGH whenever B is HIGH and at least one of A or C is also HIGH. However, the unfactored SOP form AB + BC directly mirrors the gate-level structure of the circuit.
When reading output expressions from logic circuits, trace each path from the inputs through every gate to the final output. AND gates multiply their inputs (product), OR gates add them (sum), and NOT gates invert (complement). The final expression reflects the exact gate arrangement.
Question 38 Rapport
The hexadecimal digits are 0-9 and A-_____
Détails de la réponse
The hexadecimal number system is a base-16 numbering system, meaning it uses sixteen distinct symbols to represent values. Since the ordinary decimal digits 0 to 9 only provide ten symbols, hexadecimal borrows six letters of the alphabet to represent the remaining values.
Counting upward from 9, the next value (equivalent to decimal 10) is represented by the letter A, decimal 11 by B, decimal 12 by C, decimal 13 by D, decimal 14 by E, and decimal 15 by F. This gives the complete set of sixteen hexadecimal digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F. The sequence therefore runs from 0-9 and A-F, which completes the sixteen required symbols.
A letter such as D or E marks only the fourth or fifth letter in the sequence, not the last one, so stopping there would leave the system with fewer than sixteen symbols. Only F closes the full run from A through F.
Exam tip: remember that hexadecimal always has exactly sixteen symbols, so if you are ever unsure where the letter sequence ends, count six letters starting from A; the sixth letter, F, is always the final hexadecimal digit.
Question 39 Rapport
What part of the central processing unit coordinates other units and manages the computer resources ?
Détails de la réponse
The central processing unit is made up of several parts that work together, but only one of them is responsible for directing the others. The arithmetic and logic unit performs calculations and comparisons, and the memory unit stores data, but neither of these decides when or how the various components should act.
That coordinating role belongs to the control unit. It generates the timing and control signals that tell the input unit when to supply data, the arithmetic and logic unit when to perform an operation, the memory unit when to read or write data, and the output unit when to display results. By managing this flow of instructions and resources across every other unit, the control unit acts as the coordinator of the entire processor.
There is no separate "coordinating unit" in standard computer architecture; whenever a question asks which part coordinates or manages the CPU's other components, the answer is the control unit.
Question 40 Rapport
Which of these application packages is mostly used by computer users?
Détails de la réponse
Application packages are pre-written programs designed to help users perform specific tasks such as writing documents, managing spreadsheets, organising databases, or creating graphics. Different packages serve different purposes, and their popularity reflects how often ordinary users need that particular task.
Word processing, the creation and formatting of text documents such as letters, reports, and essays, is one of the most common computing tasks performed by students, office workers, and businesses alike. This everyday need makes the word processing package the one most widely used among general computer users.
By comparison, a database package is mainly used for structured record-keeping, a spreadsheet package is mainly used for numerical calculations, and a graphic design package is mainly used for illustration and image editing. These serve narrower, more specialised audiences than everyday text creation.
Exam takeaway: when comparing application packages by how widely they are used, favour the one tied to the most universal, everyday task, which for most computer users is producing text documents.
Souhaitez-vous continuer cette action ?