Ana ebu...
|
Pịa ma Jide iji Dọkpụrụ Ya |
|||
|
Pịa Ebe a ka Imechi |
|||
Ajụjụ 1 Ripọtì
The diagrammatic representation of an algorithm is
Akọwa Nkọwa
An algorithm is a step-by-step set of instructions for solving a problem, and it can be represented in more than one way: written out in structured, code-like sentences, or represented visually. The visual, diagrammatic method uses standard shapes, such as an oval for start and end points, a rectangle for a process step, and a diamond for a decision point, all connected by arrows that show the order in which steps are carried out. This diagrammatic representation of an algorithm is called a flowchart, and it lets someone follow the logic of an algorithm visually without reading detailed written instructions.
Pseudocode also represents an algorithm's logic, but it does so through structured, plain-language statements written in lines of text resembling programming code, not through shapes and diagrams. Code refers to the actual instructions written in a specific programming language that a computer can execute, which is a textual, executable representation rather than a diagrammatic one. Graphics is simply a general term for visual images and does not refer to any structured method of representing an algorithm's logical steps.
When a question specifically asks for the "diagrammatic" representation of an algorithm, that phrasing should immediately point to flowcharts, since pseudocode and code are both text-based rather than diagram-based.
Ajụjụ 2 Ripọtì
Which of the following does not replicate itself in an infected computer?
Akọwa Nkọwa
Malicious software is grouped by how it behaves once it infects a computer. Self-replication, the ability of a piece of malware to make copies of itself and spread to other files or systems without further action from an attacker, is the key feature that separates some categories from others.
A worm copies itself across a network without needing to attach to another program, and a computer virus attaches itself to a legitimate file or program and copies itself whenever that file is run or shared, so both of these are defined specifically by their ability to replicate. A program that disguises itself as legitimate or useful software while secretly carrying out harmful actions behaves differently: once it is installed, it performs its damaging function directly, but it does not make copies of itself or spread on its own; a user must be tricked into installing it again elsewhere for it to appear on another machine.
Software that secretly monitors a user's activity and sends the collected information to a third party, without the user's consent, is designed purely for covert surveillance and data theft, not for spreading itself between systems, which is exactly why it does not replicate in the way a worm or virus does.
When a question asks about self-replication specifically, focus on the defining mechanism of each malware type rather than treating "harmful" as the deciding factor, since several harmful programs never copy themselves at all.
Ajụjụ 3 Ripọtì
The closest computer language to human is ?
Akọwa Nkọwa
Programming languages exist on a spectrum from those that are close to human language to those that are close to the machine's own binary instructions.
High level languages, such as Python, Java, or BASIC, use vocabulary and grammar structures that resemble English words and everyday mathematical notation, for example words like "IF", "PRINT", or "WHILE". This makes them the languages closest to how humans naturally think and communicate, and it is also what makes them easier to learn, read, and write compared to other language types.
The other options move progressively further from human language and closer to the computer's native form. Machine language consists purely of binary digits (0s and 1s) that the processor executes directly, with no resemblance to human language at all. Assembly language replaces binary codes with short mnemonic codes like ADD or MOV, which is more readable than pure machine code but still tied closely to the specific hardware and far less natural than a high level language. "Low level language" is the general category covering both machine and assembly language, and by definition sits far from human language, not close to it.
When a question asks which language is "closest to human", look for the option built from natural-language-like keywords, since that readability is the defining feature of high level languages.
Ajụjụ 4 Ripọtì
In Microsoft Excel, sheet tabs can be renamed by ______
Akọwa Nkọwa
Microsoft Excel workbooks are organised into individual sheets, each represented by a small tab at the bottom of the window. Renaming that tab is a direct action performed on the tab itself, not on the rows or columns of data inside the sheet.
The correct method is double-clicking on the sheet tab, then entering the new name. Double-clicking puts the tab name into an editable state, allowing the user to type a new label and press Enter to confirm it.
Double-clicking a column or a row affects the width or height of that column or row, not the sheet tab's name, so those actions do not achieve the goal described. Going to File and clicking Save As changes the name or location of the entire workbook file, not the name of an individual sheet tab within it, so it addresses a different problem altogether.
A useful distinction to remember for spreadsheet exams: renaming a sheet tab is a property of that sheet, while Save As is a property of the whole file.
Ajụjụ 5 Ripọtì
Which operation combines multiple files into a single archive file?
Akọwa Nkọwa
File management operations each do a distinct job: copy duplicates a file while keeping the original in place, move relocates a file from one location to another, and delete removes a file entirely. 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 copy, move, or delete, since only compression bundles several files together into one.
Ajụjụ 6 Ripọtì
Which of the following best describes the SDLC?
Akọwa Nkọwa
Building an information system is a complex undertaking that benefits from a structured, repeatable process rather than an ad-hoc approach, which is why organisations follow an established methodology.
The System Development Life Cycle (SDLC) is exactly this: a structured framework describing the stages an information system passes through, typically including planning, analysis, design, implementation, testing, and maintenance. It provides a systematic approach that guides a development team from identifying a business need all the way through to delivering and maintaining a working system.
The other options misidentify what the SDLC actually is. It is not a programming language, since it does not consist of syntax or code used to write programs; instead, it describes the process surrounding development. It is not solely a debugging methodology, since debugging is only one small part of the testing and maintenance stages within the wider cycle. It is also not a hardware configuration protocol, since it addresses the overall development process for an information system, not the technical setup of physical hardware.
When a question describes a "framework" or set of "stages" for building a system, that phrasing points to the SDLC, since it describes the full end-to-end development process rather than any single technical tool or language.
Ajụjụ 7 Ripọtì
Which of the following is not a stage of system development cycle?
Akọwa Nkọwa
The system development life cycle describes the recognised stages a new computer system passes through, from identifying a need to putting the finished system into use. The commonly taught stages include analysis, design, development or coding, test running, and implementation.
"Observation" is not one of the formally named stages of the system development life cycle. While observing how a system performs can happen informally during testing or after implementation, it is not itself a distinct, named stage in the standard model; it is instead an activity that can occur within stages like analysis or evaluation, rather than a separate, defined phase.
Exam reminder: memorise the standard named stages of the system development life cycle (typically analysis, design, development, testing, and implementation) so that an unfamiliar or generic term like "observation" can be quickly identified as not belonging to the list.
Ajụjụ 8 Ripọtì
The type of computers that are designed to perform complex calculations extremely rapidly are called ?
Akọwa Nkọwa
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.
Ajụjụ 9 Ripọtì
The most basic network is _________
Akọwa Nkọwa
Computer networks are classified by the geographical area they cover, ranging from a single person's immediate space to an entire continent.
A Personal Area Network connects devices that are within a very short range of a single user, typically a few metres, such as a phone linked to a wireless headset or a laptop connected to a smartwatch via Bluetooth. Because it covers the smallest possible area and often links just two or a few devices belonging to one person, it is considered the most basic and smallest type of network.
A Metropolitan Area Network spans a city, and a Wide Area Network spans countries or continents (the internet being the largest example), so both of these cover far more ground than a personal network. A Storage Area Network is a specialised network dedicated to connecting storage devices to servers, which makes it more complex in purpose than a basic personal network, even though it is also relatively small in physical scale.
Exam tip: when a question asks for the "most basic" or "smallest" network type, think about scale starting from a single person outward: Personal, Local, Metropolitan, Wide.
Ajụjụ 10 Ripọtì
The Internet is an example of which computer network?
Akọwa Nkọwa
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.
Ajụjụ 11 Ripọtì
A tier in which the database resides along with the query processing language is called
Akọwa Nkọwa
In three-tier architecture, each tier has one clearly defined job. The data tier is the layer that stores the actual data and includes the database management system together with the query processing language (such as SQL) used to store, retrieve, and manipulate that data.
The application tier, by contrast, contains the business logic and processing rules, while the presentation tier only displays information to the user. Since the question specifically describes a tier that holds both the database and the query processing language, it is describing the tier responsible for data storage and retrieval, which is the data tier.
A common mix-up is treating the application tier as the place where data is stored, but the application tier only requests data from the data tier through the query language, it does not hold the data itself.
Exam tip: whenever a question mentions a database together with a query language in the same breath, it is pointing to the data tier.
Ajụjụ 12 Ripọtì
The last cycle of data processing where data and information are preserved for future is called
Akọwa Nkọwa
The data processing cycle describes the sequence a computer follows to turn raw data into useful information: data is first collected, then processed into meaningful information, that information is presented to the user, and finally it is kept somewhere so it can be retrieved and used again later. This last stage, where processed data and information are held for future access rather than discarded, is what makes it possible to reuse results without repeating the entire cycle each time.
Processing is the stage where raw data is transformed through calculations, sorting, or comparisons into meaningful information, but this happens in the middle of the cycle, not at the end, and it does not involve preserving anything for later. Recording refers to capturing or entering data into the system in the first place, which happens at the very start of the cycle, well before anything is ready to be preserved. Presenting the processed results to the user, whether on a screen or printout, happens after processing but is a temporary display, not a means of preserving the data for future use, since once the display is closed the information would be lost without a separate preservation step.
A helpful way to remember the order is: input, then processing, then output, and only after the information has been produced does storage close the cycle by keeping it available for later retrieval.
Ajụjụ 13 Ripọtì
What is the etiquette one should follow while working online?
Akọwa Nkọwa
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.
Ajụjụ 14 Ripọtì
What is considered the brain of the computer?
Akọwa Nkọwa
The term "brain of the computer" refers to the component that actually carries out instructions, performs calculations, and makes logical decisions, since this is the role the human brain plays in the body.
The Central Processing Unit is the component that fetches program instructions, decodes them, and executes them, coordinating every other part of the computer while doing so. It contains the arithmetic and logic unit, which performs calculations and comparisons, and the control unit, which directs the flow of data between memory and other devices. Without it, no processing of any kind could take place.
A monitor only displays output, a mouse only sends positional input signals, and a printer only produces output on paper; none of these devices process or interpret data. They depend entirely on the processing done elsewhere to have anything meaningful to display or print.
Examination reminder: when a question asks which component performs processing and decision-making, the answer always points to the Central Processing Unit, not to input or output peripherals.
Ajụjụ 15 Ripọtì
What does ICT stand for?
Akọwa Nkọwa
ICT is a widely used abbreviation in computer studies that groups together technologies used to handle and share information. Understanding each word in the phrase helps identify what the letters stand for.
The "I" stands for information, referring to processed data that has meaning and value. The "C" stands for communication, referring to the transmission and exchange of that information between people or systems, which covers a much broader range of technologies than the internet alone, including telephone networks, radio, and satellite links, not just internet-based tools. The "T" stands for technology, referring to the tools, devices, and systems used to process and transmit that information, such as computers, networks, and software.
Put together, ICT stands for Information and Communication Technology, a term that deliberately covers both the processing of information and its communication across various channels. Terms that swap in "community" or narrow the scope to only "internet" misstate the actual meaning, since ICT is broader than internet technology alone and specifically involves communication, not community.
Exam tip: remember the three separate ideas in ICT, information, communication, and technology, and be careful not to confuse "communication" with "community" or "internet," since only "communication" is correct.
Ajụjụ 16 Ripọtì
Why is the base 10 system unique?
Akọwa Nkọwa
The base 10 (decimal) number system is the one people use every day, built from ten distinct digits: \(0, 1, 2, 3, 4, 5, 6, 7, 8, 9\). Its origin and everyday familiarity are closely tied to human anatomy rather than to any special mathematical property of the number ten itself.
Humans have ten fingers, and counting on one's fingers is one of the earliest and most natural ways people learned to count and calculate. Because of this, ancient number systems that developed around finger-counting settled on a base of ten, and this convention carried forward into the decimal system used worldwide today. This is why base 10 is described as unique in the sense of being the natural, historically dominant system rather than an arbitrary or purely mathematical choice.
The number of one-digit numbers, or the factors of ten, are true mathematical facts about the number ten but they do not explain why base 10 became the dominant, everyday system that humans adopted; that historical and anatomical reason is the connection to counting on ten fingers. Saying there is "no specific reason" ignores this well-documented anatomical origin.
Exam tip: when a question asks why the decimal system is widely used, connect it to the number of human fingers, the most commonly cited explanation for its origin.
Ajụjụ 17 Ripọtì
Computers are used majorly at offices for ____________
Akọwa Nkọwa
Offices rely on computers to carry out the core administrative and professional work of an organisation. This work primarily involves gathering information, analysing it, and producing reports, proposals, and records that support decision-making and daily operations.
Tasks such as compiling data, preparing documents, analysing figures in spreadsheets, and looking into market or organisational information are all forms of research in the broad sense of purposeful information-gathering and analysis carried out to support the office's work. This is why computers in an office setting are majorly used for research purposes, in addition to routine tasks like communication and record keeping that stem from that same information-driven work.
Recreational use, such as playing games or watching entertainment content, is not the primary purpose of office computers, even though it may happen informally. Storage and security are supporting functions computers provide everywhere, in offices and elsewhere, but they describe features of computers rather than the main reason offices use them.
Exam reminder: connect the majority use of office computers to the professional, information-driven work of the organisation rather than to incidental features like storage or entertainment.
Ajụjụ 18 Ripọtì
Which statement is used to skip the execution of the current iteration and start the next iteration in a loop?
Akọwa Nkọwa
Loops repeat a block of instructions, and sometimes a program needs to skip the remaining instructions for one particular pass through the loop without stopping the loop entirely. The continue statement does exactly this: when it is reached, the program immediately jumps back to the loop's condition check and begins the next iteration, skipping any code that comes after it within that pass.
For example, in a loop that processes numbers from 1 to 10 and needs to skip even numbers, a continue statement placed inside a condition that detects an even number would move straight to the next number without executing the remaining instructions for that particular value. This is different from a statement that would stop the loop altogether, since the continue statement only skips the current pass and allows the loop to carry on with the next one. "Skip statement," "jump statement," and "next statement" are not the recognised keywords used in mainstream programming languages for this behaviour.
Examination reminder: continue skips the rest of the current iteration and moves to the next one, while break would end the loop completely; these two are commonly confused in examinations.
Ajụjụ 19 Ripọtì
What is the benefit of using a bulleted or numbered list in your document?
Akọwa Nkọwa
Bulleted and numbered lists break a block of continuous prose into separate, visually distinct items. Each point stands on its own line with a marker in front of it, which draws the reader's eye to individual pieces of information rather than forcing them to pick key points out of a dense paragraph.
This visual separation makes important points stand out and makes the overall document easier to scan and understand, which is the genuine purpose of using a list. Lists do not automatically insert page breaks after each item, they do not automatically change font style or size, and they do not add decorative borders or background colours; those are separate formatting features unrelated to what a bulleted or numbered list itself does.
Examination reminder: the benefit of a list is readability and emphasis through visual separation of points, not any automatic page layout or decorative formatting effect.
Ajụjụ 20 Ripọtì
When does the output of a NAND gate =1?
Akọwa Nkọwa
A NAND gate is a logic gate formed by combining an AND gate with an inverter, or NOT gate, on its output. To find its output for any combination of inputs, first work out what a plain AND gate would give, then flip that result.
An AND gate outputs 1 only when every one of its inputs is 1; for any other combination, it outputs 0. Since a NAND gate inverts this result, it outputs 0 only when every input is 1, and it outputs 1 for every other combination, meaning whenever at least one input is 0. In other words, the presence of a single 0 at any input is enough to force the NAND output to 1.
| Input A | Input B | NAND output |
|---|---|---|
| 0 | 0 | 1 |
| 0 | 1 | 1 |
| 1 | 0 | 1 |
| 1 | 1 | 0 |
A common error is assuming NAND behaves like AND and needs all inputs at 1 to output 1; it is actually the reverse, needing all inputs at 1 to output 0.
Exam takeaway: build the NAND truth table from AND, then invert every result, rather than trying to memorise NAND's behaviour separately from AND.
Ajụjụ 21 Ripọtì
What kind of data is processed by an analog computer?
Akọwa Nkọwa
Computers are classified by the type of data they process into analog, digital, and hybrid computers. This distinction depends on whether the values being measured or processed change in smooth, unbroken steps or in fixed, separate steps.
An analog computer works with physical quantities that vary continuously, such as temperature, pressure, voltage, or speed. These quantities do not jump from one fixed value to the next; instead, they flow smoothly through every possible value in a range, for example a thermometer's mercury column rising gradually rather than in sudden jumps. Because of this, analog computers are built to measure and process continuously varying data.
Digital computers, by contrast, process discrete data, meaning information broken into distinct, separate values, most commonly represented using binary digits (0s and 1s). "Discretely varying" and "intermittent" both describe data that changes in separate, interrupted steps rather than smoothly, which is the opposite of what analog computers handle.
Exam tip: link the word "analog" with anything that changes smoothly and without interruption, such as sound waves or temperature; link "digital" with anything counted in fixed, separate steps.
Ajụjụ 22 Ripọtì
The function of an assembler is to _________
Akọwa Nkọwa
Computers can only execute instructions written in machine language, a sequence of binary codes specific to the processor. Because writing programs directly in binary is difficult for humans, programmers write in more readable languages, which must then be translated before the computer can run them.
Assembly language uses short mnemonic codes, such as ADD or MOV, that correspond closely to machine instructions but are easier for people to read and write. An assembler is the translator program whose job is to convert this assembly language code into the equivalent machine language code the processor can execute directly.
This is different from a compiler, which translates a high level language, one using English-like statements and complex expressions, into machine language. Because assembly language and high level language sit at different levels of abstraction, they need different translator programs, and an assembler specifically handles assembly language.
Exam takeaway: match the translator to its source language, an assembler for assembly language and a compiler or interpreter for high level language, rather than treating all translators as interchangeable.
Ajụjụ 23 Ripọtì
EDVAC was produced using which of these concepts ?
Akọwa Nkọwa
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.
Ajụjụ 24 Ripọtì
___________________ is a program meant to be sent from one computer to another across the world wide Web.
Akọwa Nkọwa
The question describes a small program written so that it can travel from one computer to another over the internet and run inside another program, typically a web browser, once it arrives. This kind of small, portable program embedded in a web page is called an applet.
An applet is designed to be downloaded automatically along with a web page and executed within the browser, adding interactive features such as animations or calculations to what would otherwise be a static page. Mail refers to messages sent between users, not a program in itself; an algorithm is a step-by-step plan for solving a problem, not something that is transmitted and executed; and data packages are simply chunks of data moved across a network, not executable programs.
Exam takeaway: associate the idea of a program sent from one computer to another across the web to be run there specifically with an applet, since it is defined by being both a program and something that travels and executes remotely inside a browser.
Ajụjụ 25 Ripọtì
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.
Akọwa Nkọwa
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.
Ajụjụ 26 Ripọtì
In graphic design, what does the term DPI stand for?
Akọwa Nkọwa
Digital images are made up of tiny individual dots, and the quality or sharpness of a printed or displayed image depends on how many of those dots are packed into a given space.
DPI stands for Dots Per Inch. It measures how many individual dots of ink or toner a printer can place within one linear inch of paper. A higher DPI value means more dots are packed into that inch, which produces finer detail and a sharper, smoother-looking image, while a lower DPI produces a coarser, more visibly dotted result. Graphic designers pay close attention to DPI when preparing artwork for print, since an image that looks fine on a screen can appear blurry or pixelated once printed at a low DPI.
A common confusion is mixing up DPI with PPI (pixels per inch), which measures on-screen resolution rather than printed dot density; on an exam, DPI specifically refers to the printing measurement.
Ajụjụ 27 Ripọtì
The Caps key on a keyboard is used to___________
Akọwa Nkọwa
Keyboards include several special-purpose keys that change how ordinary letter keys behave rather than typing a character themselves. The Caps Lock key is one of these.
Pressing Caps Lock toggles the keyboard between typing letters in upper case, capital letters, and typing them in lower case, small letters. Once activated, every letter key pressed produces a capital letter until Caps Lock is pressed again to switch back.
This is distinct from moving through pages, deleting files, or inserting spaces, which are handled by other dedicated keys such as Page Up or Page Down, the Delete key, and the Space bar respectively. Caps Lock's sole function is the upper case and lower case switch.
Exam takeaway: remember Caps Lock as a toggle switch for letter case, separate from navigation, deletion, or spacing functions on the keyboard.
Ajụjụ 28 Ripọtì
Which key on a keyboard is used to access special functions like volume control or brightness?
Akọwa Nkọwa
Keyboards group keys by the job they do. Letter keys type text, number keys enter digits, and arrow keys move the cursor around a document, but none of these groups is designed to control hardware settings on the computer itself.
A dedicated row of keys, usually placed above the number row and labelled F1 through F12, is built specifically to trigger built-in shortcuts. On laptops in particular, several of these keys are shared with icons for volume up, volume down, mute, and screen brightness, activated either directly or by holding a modifier key such as Fn. This is why the key used to access special functions like volume control or brightness is the function key.
A useful way to remember this: any keyboard action that changes a system setting rather than inserting a character almost always lives on the function-key row.
Ajụjụ 29 Ripọtì
Which of the following is NOT a high-level programming language?
Akọwa Nkọwa
Programming languages are grouped into levels based on how close they are to the way a computer's hardware actually operates. A high-level language uses English-like keywords and structures (such as loops, functions, and readable variable names) that are far removed from the binary instructions a processor executes, which makes such languages easier for humans to read, write, and maintain. A low-level language, by contrast, is written in instructions that closely mirror the processor's own operations, using short mnemonic codes tied directly to specific hardware registers and memory addresses.
Among the options, the language built from short mnemonics that map almost one-to-one onto a processor's machine instructions is a low-level language: it requires a programmer to think in terms of registers, memory addresses, and individual CPU operations rather than abstract logic. The other three languages listed all use readable, structured syntax with built-in libraries and abstractions that let a programmer describe what should happen without worrying about the underlying hardware, which is exactly what defines a high-level language.
A common misconception is that "low-level" means simple or beginner-friendly; it actually means low-level in terms of abstraction from hardware, and such languages are typically harder to learn because they demand precise control over the machine itself.
Ajụjụ 30 Ripọtì
Computers that are small and low cost are referred to as ?
Akọwa Nkọwa
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".
Ajụjụ 31 Ripọtì
Which type of software acts as an intermediary between hardware and applications?
Akọwa Nkọwa
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.
Ajụjụ 32 Ripọtì
What is the difference between internal and external modem
Akọwa Nkọwa
A modem converts digital data from a computer into signals that can travel over a communication line, and back again, allowing a computer to connect to a network or the internet. The distinction between the two main types of modem lies in how each one is physically connected to the computer. One type is built as an expansion card, following either of two internal card standards, and is fitted directly inside the computer's case, plugging into a slot on the motherboard so that it draws power and exchanges data internally. The other type is a separate, standalone unit that sits outside the computer case and is traditionally connected to the machine through an external serial port, requiring its own power supply and a cable running to the computer.
The reverse pairing, describing the expansion-card modem as external and the serial-port modem as internal, gets the two types backwards and does not match how each is actually connected. Describing one type as always being a USB device confuses a specific, more modern connection method with the general external type, since traditional external modems used serial ports rather than USB. Stating that both types are expansion cards is also incorrect, since only the internal type plugs directly into the motherboard as a card; the external type is a separate unit rather than a card at all.
The clearest way to remember this distinction is that "internal" modems live inside the computer as expansion cards, while "external" modems sit outside the case and connect through a port.
Ajụjụ 33 Ripọtì
What is the permanent memory built into your computer called?
Akọwa Nkọwa
Computers contain memory chips that behave differently depending on whether they keep their contents after the power is switched off. A chip whose data is fixed at manufacture and remains available even without power is described as permanent, in contrast to memory that is only usable while the computer is running.
ROM (Read-Only Memory) is exactly this kind of permanent memory: it is built into the computer and retains the essential startup instructions it holds regardless of whether the power is on or off.
RAM cannot be the answer because it is temporary working memory, cleared every time the computer is switched off. The CPU is the processor that carries out instructions, not a storage chip, so it does not fit the description of memory. A CD-ROM is a removable optical disc, not memory built into the computer itself, so although its name contains "ROM", it is a different kind of storage device entirely.
Watch for CD-ROM appearing as a distractor in ROM questions; the shared name is a trap, since CD-ROM is a removable disc, while ROM, as tested here, refers to a chip permanently installed inside the machine.
Ajụjụ 34 Ripọtì
The joystick typically have a button on _________ used to select the option pointed by the cursor.
Akọwa Nkọwa
A joystick is an input device with a movable stick used mainly for controlling direction or position, most commonly in games and simulations. To let the user make a selection or trigger an action without letting go of the stick, joysticks are fitted with one or more buttons positioned on top of the stick, within easy reach of the thumb while the hand still grips and moves the stick.
Placing the button on top means the user can move the joystick with their fingers wrapped around it and press the button with their thumb at the same time, allowing quick selection of whatever the cursor is currently pointing at without needing a second hand or interrupting the movement of the stick.
A button on the bottom, left, or right side of the stick would be awkward to reach while still gripping and steering the stick, so manufacturers place the primary select button on top for ergonomic, one-handed operation.
Exam tip: remember that a joystick's design goal is single-handed control, so its main action button sits on top, where the thumb naturally rests.
Ajụjụ 35 Ripọtì
What is the full form of UDP?
Akọwa Nkọwa
Not all abbreviations that look alike expand to the same kind of word. Some describe a protocol, a set of rules for communication, while others might describe a unit of data; matching the right word class to the right letter is essential.
UDP stands for User Datagram Protocol. It is a lightweight, connectionless protocol used for sending data, called datagrams, across a network quickly, without the extra overhead of guaranteeing delivery or order, which makes it suitable for tasks like live video or voice calls where speed matters more than perfect reliability.
"User Datagram Packet" and "User Data Packet" incorrectly use "Packet" as the final word, when the standard term is "Protocol", since UDP describes a set of communication rules rather than a single unit of data. "Unique Data Protocol" changes the first word entirely and does not match the accepted expansion.
Contrast UDP with TCP: TCP guarantees delivery and order at the cost of speed, while UDP favours speed and accepts that some data may be lost, which is why the final word in its name is "Protocol", just like TCP.
Ajụjụ 36 Ripọtì
When does the output of a NOR gate =0?
Akọwa Nkọwa
A NOR gate is built from an OR gate followed by a NOT (inverter) gate, so its output is always the opposite of what a plain OR gate would produce for the same inputs.
An OR gate outputs 1 as soon as at least one of its inputs is 1, and it outputs 0 only when every input is 0. Because the NOR gate inverts this result, the NOR gate does the reverse: its output is 1 only when every input is 0, and its output becomes 0 as soon as at least one input is 1. This can be shown with the truth table for a two-input NOR gate:
| Input A | Input B | OR (A+B) | NOR (output) |
|---|---|---|---|
| 0 | 0 | 0 | 1 |
| 0 | 1 | 1 | 0 |
| 1 | 0 | 1 | 0 |
| 1 | 1 | 1 | 0 |
The table shows that the output falls to 0 in every row where at least one input equals 1, which matches the description of the output falling to 0 whenever 1 is present at input.
Exam takeaway: a NOR gate is the exact logical opposite of an OR gate, so wherever OR would output 1 (any input is 1), NOR outputs 0, and wherever OR would output 0 (all inputs are 0), NOR outputs 1.
Ajụjụ 37 Ripọtì
Which network device provides a central point for connecting devices within a network and manages data traffic between them?
Akọwa Nkọwa
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.
Ajụjụ 38 Ripọtì
What is the shortcut key to "undo" last action on a Microsoft word page?
Akọwa Nkọwa
Word processing software provides keyboard shortcuts as quick alternatives to using the mouse for common commands. Each shortcut is a fixed combination of keys assigned to one specific action, and these combinations are consistent across most Microsoft Office applications.
The shortcut that reverses, or "undoes", the most recent action performed in Microsoft Word is Ctrl + Z. Pressing it repeatedly continues stepping backward through the history of recent edits, one action at a time.
Ctrl + A selects all the text in the document, Ctrl + X cuts the selected text, removing it and copying it to the clipboard, and Ctrl + U applies or removes underline formatting on selected text. None of these three reverse a previous action, so none of them can be the undo command.
It helps to remember Ctrl + Z alongside its opposite, Ctrl + Y, which redoes an action that was just undone.
Ajụjụ 39 Ripọtì
What are some key components of an ICT system?
Akọwa Nkọwa
Information and Communication Technology, or ICT, refers to the tools and systems used to create, store, process, and communicate information electronically. Everyday items like printers, paper, pens, books, libraries, and classrooms are not themselves ICT, since they either are not electronic or do not process and transmit information digitally. Televisions, radios, and telephones are examples of communication technology, but they represent only individual devices rather than the full set of components that make up an ICT system.
An ICT system is properly described by three core components working together: hardware, the physical equipment such as computers, printers, and network cables; software, the programs and instructions that make the hardware perform tasks; and networks, the connections that allow devices to communicate and share data with one another. All three must be present for information to be captured, processed, stored, and communicated electronically.
A useful exam check is to ask whether an item is physical equipment, a set of instructions, or a connection for communication; hardware, software, and networks map exactly onto those three roles.
Ajụjụ 40 Ripọtì
At least how many keys is a keyboard made up of?
Akọwa Nkọwa
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.
Ị ga-achọ ịga n'ihu na omume a?