Your session has expired

Your progress and purchases are safe. Log in again to continue.

Log in again
Aspirant Academy

MCQ

Basic Computer MCQ - Practice Questions

Practice 714 questions across 108 topics with detailed explanations.

714Questions
108Topics
3Difficulty levels

Topics in Basic Computer

Basic Computer Science45 questionsInput, output and memory devices; storage hierarchy25 questionsBasic Computer: MS Office Common Features24 questionsMS Excel: formulas, functions and charts22 questionsMS Word and MS PowerPoint essentials20 questionsComputer fundamentals: generations, types and number systems20 questionsBasic Computer: Generations of Computers19 questionsInternet, networking, email, cyber security & e-Governance (e-Mitra, SSO)19 questionsBasic Computer: Types & Classification16 questionsBasic Computer: Abbreviations & Terminology16 questionsBasic Computer: Hardware-Software Relationship15 questionsBasic Computer: Input Devices15 questionsBasic Computer: Internet & WWW15 questionsBasic Computer: MS Excel Charts & Data Tools15 questionsBasic Computer: MS Excel Formulas & Functions15 questionsBasic Computer: MS Excel Interface & Cells15 questionsBasic Computer: Security & Viruses15 questionsBasic Computer: File System & Extensions15 questionsBasic Computer: Fundamentals & Characteristics15 questionsBasic Computer: General Shortcuts & Function Keys15 questionsBasic Computer: MS PowerPoint Interface & Views15 questionsBasic Computer: MS Word Interface & Editing15 questionsBasic Computer: MS Word Layout & Tools15 questionsBasic Computer: MS Word Shortcuts15 questionsBasic Computer: Memory Units15 questionsBasic Computer: Networking Basics15 questionsBasic Computer: Number Systems & Codes15 questionsBasic Computer: Operating System Basics15 questionsBasic Computer: Output Devices15 questionsBasic Computer: RAM & ROM15 questionsBasic Computer: Secondary Storage15 questionsBasic Computer: Windows & File Management15 questionsBasic Computer: Computer Organisation15 questionsBasic Computer: Email Basics14 questionsBasic Computer: MS PowerPoint Transitions & Animations14 questionsBasic Computer: MS Excel Shortcuts14 questionspatwar-s05-t0410 questionspatwar-s05-t0210 questionsMS Excel keyboard shortcuts3 questionsData storage units3 questionsFile extensions3 questionsSpreadsheet shortcuts2 questionsCharacteristics of computers2 questionsMS Word paragraph alignment2 questionsPrinter types2 questionsStorage devices2 questionsMicroprocessor history1 questionsMicrosoft Excel shortcut keys1 questionsMicrosoft Excel worksheet naming1 questionsMicrosoft Word interface1 questionsNTFS file system1 questionsNetwork protocols1 questionsNon-linear data structures1 questionsNumber system conversion1 questionsPARAM supercomputer series1 questionsPowerPoint animation1 questionsPowerPoint shortcut keys1 questionsPresentation software slide transitions1 questionsPrinter specifications1 questionsPrinter types and classification1 questionsProgramming language paradigms1 questionsSocial media and internet services1 questionsAlgorithms1 questionsSpreadsheet cell navigation1 questionsSpreadsheet data sorting1 questionsSpreadsheet functions1 questionsSpreadsheet software1 questionsSystem software and application software1 questionsTypes of computer networks1 questionsVirtual memory and page faults1 questionsWeb browsers1 questionsWord processing formatting1 questionsSocial networking websites1 questionsApplication software1 questionsApplications of computers in medicine1 questionsBinary Coded Decimal addition1 questionsBitwise operators1 questionsCentral processing unit1 questionsComputer bus architecture1 questionsComputer buses1 questionsComputer memory: EEPROM1 questionsComputer memory: RAM and ROM1 questionsComputer security: antivirus software1 questionsComputer storage units1 questionsControl unit functions1 questionsCybersecurity basics1 questionsDigital India Programme1 questionsDigital India initiatives1 questionsE-commerce phases1 questionsFile formats: audio files1 questionsFile system paths1 questionsICT and software licensing1 questionsInput hardware devices1 questionsInternet protocols1 questionsKeyboard key classification1 questionsLanguage translators1 questionsMS Excel functions1 questionsMS Office applications1 questionsMS Office keyboard shortcuts1 questionsMS Office shortcuts1 questionsMS PowerPoint animation effects1 questionsMS Word 2019: keyboard shortcuts1 questionsMS Word file menu1 questionsMS Word keyboard shortcuts1 questionsMS Word navigation keys1 questionsMS Word shortcut keys1 questionsMS Word views1 questionsMicroprocessor generations1 questions

Questions from consolidated topics

Algorithms

Q1A set of step-by-step procedures for accomplishing a task is known as _______.

AFirmware Program
BSoftware bug
CHardware Program
DAlgorithm
Explanation

An algorithm is a finite, ordered set of steps used to solve a problem or complete a task. That exactly matches the idea of step-by-step procedures. A firmware programme is software stored in hardware to control a device, not the general name for a procedure. A software bug is an error or defect in a programme. A hardware programme is not the standard term for such instructions; hardware refers to physical components. Therefore the procedural definition points to algorithm.

Application software

Q1What is the name of the software used by a user to perform specific tasks on a computer?

AOperating system
BUtility software
CArtificial Intelligence
DApplication software
Explanation

Application software is designed for users to perform specific tasks, such as writing documents, preparing spreadsheets, browsing, or editing images. That is exactly what the question asks. An operating system manages hardware, files, memory, and other software, but it is not a task-specific user application. Utility software performs maintenance or support jobs such as antivirus scanning or file compression. Artificial intelligence is a field or capability used in some software, not the general name for user task software.

Applications of computers in medicine

Q1Which of the following is the application of computers mostly used in the medical field?

ATo create advertisements
BTo visualise 3D objects
CTo provide distance education
DTo provide assistance in surgery
Explanation

In the medical field, computers are widely used to assist in surgery through imaging, monitoring, robotic support and precise planning. Creating advertisements is mainly a commercial or media application, not a medical one. Visualising 3D objects can be useful in design and may sometimes support medical imaging, but the option is broader and less directly tied to the medical field than surgical assistance. Distance education is an educational application. The medical use asked in the question is assistance in surgery.

Binary Coded Decimal addition

Q1Compute the Binary Coded Decimal (BCD) addition: 2 + 3 = ?

A1111
B0000
C0101
D1000
Explanation

In Binary Coded Decimal, each decimal digit is represented separately by a four-bit code. The decimal sum of 2 and 3 is 5, and the BCD representation of the digit 5 is 0101. The code 1111 is not a valid BCD digit for a decimal value from 0 to 9. The code 0000 represents decimal 0, not the sum. The code 1000 represents decimal 8, so it does not match 2 + 3.

Bitwise operators

Q1Which of the following is not a bitwise operator?

A<<
B.
C&
D>>
Explanation

Bitwise operators work directly on the binary representation of values. The left-shift symbol << shifts bits to the left, the right-shift symbol >> shifts bits to the right, and the ampersand & is the bitwise AND operator. A full stop or dot is not a bitwise operator; in many programming contexts it is used for member access or as part of numeric notation, depending on the language. Therefore the dot is the item that does not belong to the set of bitwise operators.

Central processing unit

Q1What is the main function of the central processing unit (CPU) in computers?

ATo process data
BTo display data
CTo transmit data
DTo store data
Explanation

The central processing unit is the main processing component of a computer. It fetches instructions, decodes them, performs arithmetic and logical operations, and controls the execution of programs. Displaying data is mainly the role of output devices such as a monitor. Transmitting data is handled by communication devices and network interfaces. Storing data is the work of memory and storage devices such as RAM, hard disks, and solid-state drives, though the CPU coordinates their use.

Computer bus architecture

Q1A set of wires that carries a group of bits simultaneously, that is, in parallel, and has an associated control scheme is known as:

Awires
Bdata cables
CBus
DRegisters
Explanation

A bus is the communication pathway made of several lines that transfers bits together in parallel and works with control signals for timing and coordination. Plain wires only describe the physical conductors, not the organised communication system. Data cables are external or internal connecting media, but the term does not capture the control scheme of a computer pathway. Registers are small, fast storage locations inside the processor; they hold data temporarily instead of carrying a group of bits between units.

Computer buses

Q1Data are transferred between different components of a computer system using physical wires called:

ACPU
BFlowchart
CBus
DWAN
Explanation

In computer architecture, a bus is the set of physical communication lines used to transfer data, addresses, and control signals between components such as the processor, memory, and input-output units. The CPU is the processing unit itself, not the wires that carry signals. A flowchart is a diagram used to represent steps in an algorithm or process. WAN means Wide Area Network, a network spread over a large geographical area. The physical pathways inside a computer system are therefore called a bus.

Computer memory: EEPROM

Q1What is the full form of "EEPROM"?

AElectronically Erasable Programmable Read-Only Memory
BElectrically Erasable Programmable Read-Only Memory
CErasable Electrically Process Read-Only Memory
DElectrically Erasable Programmable Read Memory
Explanation

EEPROM stands for Electrically Erasable Programmable Read-Only Memory. The word electrically is essential because the memory can be erased using electrical signals. Electronically erasable changes the standard expansion and is not the accepted full form. Erasable Electrically Process Read-Only Memory has the terms in a wrong and ungrammatical order, and process is not part of the expansion. Electrically Erasable Programmable Read Memory drops Only, so it no longer expands ROM correctly. The official key therefore matches the standard computer-memory term.

Computer memory: RAM and ROM

Q1________ is a memory used to store data temporarily, whereas ________ stores data permanently, which cannot be altered or deleted.

ARAM; ROM
BROM; RAM
CCompiler; ROM
DRAM; Operating system
Explanation

RAM is volatile memory, so it temporarily stores data and instructions while a computer is running. Its contents are lost when power is switched off. ROM is non-volatile memory and stores fixed instructions permanently, so ordinary users cannot easily alter or delete its contents. Reversing the pair makes the memory types wrong. A compiler is software that translates programs, not a memory used for temporary storage. An operating system manages computer resources and user interaction; it is not the permanent memory named in the second blank.

Sample questions

1In MS Excel, which keyboard shortcut is used to save the current workbook without opening the Save As dialogue each time?

A Ctrl+S
B Ctrl+P
C Ctrl+N
D Ctrl+O

2In MS Office applications such as Word, Excel and PowerPoint, which keyboard shortcut is commonly used to copy selected text, cells or objects to the Clipboard?

A Ctrl+C
B Ctrl+V
C Ctrl+X
D Ctrl+Z

3Consider the following statements about common computer terms. Statement 1: RAM is volatile memory and usually loses its stored data when power is switched off. Statement 2: ROM is normally used to store firmware or start-up instructions. Statement 3: ALU performs arithmetic and logical operations inside the CPU. Which of the above statements are correct?

A Statement 1 and Statement 2 only
B Statement 2 and Statement 3 only
C Statement 1 and Statement 3 only
D Statement 1, Statement 2 and Statement 3

4Which of the following is NOT a usual characteristic of a computer?

A High speed
B Accuracy when instructions and data are correct
C Independent common sense
D Diligence without tiredness

5Which option correctly identifies the type of computer generally used for very high-speed scientific calculations such as weather forecasting and complex simulations?

A Microcomputer
B Minicomputer
C Supercomputer
D Embedded computer

Explore more subjects