Browse papers
A

Section A: Long Answer Questions

Attempt any TWO questions.

3 questions·10 marks each
1long10 marks

Explain the generations of computers and the technology used in each generation. Also describe the classification of computers based on size.

Generations of Computers

The evolution of computers is divided into five generations, classified by the electronic component (switching technology) used.

GenerationPeriodMain TechnologyCharacteristics
First1940–1956Vacuum tubesVery large, generated much heat, used machine language, magnetic drum memory. e.g. ENIAC, UNIVAC.
Second1956–1963TransistorsSmaller, faster, cheaper, less heat; assembly & high-level languages (FORTRAN, COBOL); magnetic core memory.
Third1964–1971Integrated Circuits (ICs)Many transistors on one chip; keyboards & monitors, operating systems, multiprogramming.
Fourth1971–presentMicroprocessors (VLSI)CPU on a single chip; personal computers, GUIs, networks. e.g. Intel 4004.
FifthPresent & beyondULSI / AI, parallel processingArtificial Intelligence, natural language, quantum and parallel computing.

Each generation made computers smaller, faster, cheaper, more reliable and more energy-efficient.

Classification of Computers Based on Size

  1. Microcomputers – Smallest and cheapest; built around a microprocessor; used by individuals. e.g. desktops, laptops, tablets, smartphones.
  2. Minicomputers – Medium-sized, multi-user systems used by small/medium organisations for departmental tasks.
  3. Mainframe computers – Large, powerful machines supporting hundreds of users simultaneously; used by banks, airlines and large enterprises for bulk data processing.
  4. Supercomputers – Fastest and most expensive; perform trillions of operations per second; used in weather forecasting, scientific simulation, nuclear research. e.g. Cray series.

Conclusion: Generations describe technological evolution over time, whereas size-based classification describes capacity and processing power at any given time.

computer-basics
2long10 marks

What is data representation? Explain the binary, octal and hexadecimal number systems with conversions among them.

Data Representation

Data representation is the way data (numbers, characters, images, etc.) is encoded and stored inside a computer. Since digital computers use two-state electronic devices, all data is ultimately represented using the binary system (0s and 1s, called bits). Number systems are characterised by their base/radix — the number of distinct digits used.

Number Systems

SystemBaseDigitsExample
Binary20,1101121011_2
Octal80–713813_8
Hexadecimal160–9, A–F2B162B_{16}

Conversions

Binary → Octal: group bits in 3s from the right.

1010112=(101)(011)=538101011_2 = (101)(011) = 53_8

Binary → Hexadecimal: group bits in 4s from the right.

1010112=(0010)(1011)=2B16101011_2 = (0010)(1011) = 2B_{16}

Octal → Binary: write each octal digit as 3 bits.

538=(101)(011)=101011253_8 = (101)(011) = 101011_2

Hexadecimal → Binary: write each hex digit as 4 bits.

2B16=(0010)(1011)=10101122B_{16} = (0010)(1011) = 101011_2

To Decimal (positional weighting): multiply each digit by base raised to its position.

1010112=125+024+123+022+121+120=4310101011_2 = 1{\cdot}2^5 + 0{\cdot}2^4 + 1{\cdot}2^3 + 0{\cdot}2^2 + 1{\cdot}2^1 + 1{\cdot}2^0 = 43_{10}

Decimal → other base: repeated division by the base, reading remainders bottom-to-top.

Thus octal and hexadecimal act as compact, human-readable shorthands for binary because 8=238 = 2^3 and 16=2416 = 2^4.

data-representation
3long10 marks

Explain the Internet and its services. Discuss the role of IP addresses, DNS and protocols in Internet communication.

The Internet

The Internet is a global, public network of interconnected computer networks that communicate using the standard TCP/IP protocol suite. It allows billions of devices worldwide to exchange information.

Internet Services

  • World Wide Web (WWW): linked hypertext documents accessed via browsers using HTTP/HTTPS.
  • Email: electronic messaging using SMTP, POP3, IMAP.
  • File Transfer (FTP): uploading/downloading files between hosts.
  • Remote login (Telnet/SSH): accessing remote machines.
  • Search engines, social media, VoIP, e-commerce, cloud and streaming services.

Role of IP Address, DNS and Protocols

IP Address: A unique numeric identifier assigned to each device on the network (e.g. IPv4 192.168.1.1, or IPv6). It enables addressing and routing so data packets reach the correct destination.

DNS (Domain Name System): A distributed directory that translates human-readable domain names (e.g. tu.edu.np) into machine IP addresses. Without DNS users would have to memorise numeric addresses.

Protocols: Agreed rules that govern communication. Key ones:

  • TCP/IP – core suite; IP handles addressing/routing, TCP ensures reliable, ordered delivery.
  • HTTP/HTTPS – web page transfer (HTTPS adds encryption).
  • SMTP/POP3/IMAP – email; FTP – file transfer; DNS protocol – name resolution.

Communication flow: A user types a domain → DNS resolves it to an IP address → TCP/IP breaks the message into packets, routes them across the network, and reassembles them reliably at the destination, where the relevant application protocol (e.g. HTTP) interprets the data.

internet
B

Section B: Short Answer Questions

Attempt any EIGHT questions.

9 questions·5 marks each
4short5 marks

List and explain the characteristics of a computer.

Characteristics of a Computer

  1. Speed: Performs millions/billions of operations per second (measured in MIPS/FLOPS).
  2. Accuracy: Produces error-free results; mistakes usually arise from wrong input (GIGO – Garbage In, Garbage Out).
  3. Automation: Once a program is loaded, it executes tasks automatically without human intervention.
  4. Diligence: Works continuously without fatigue, boredom or loss of concentration, retaining the same accuracy.
  5. Versatility: Can perform many different types of tasks (calculation, document editing, communication, multimedia).
  6. Storage / Memory: Stores huge amounts of data and retrieves it instantly when needed.

(Limitations: it lacks intelligence and decision-making of its own — it only follows instructions.)

computer-basics
5short5 marks

Differentiate between primary memory and secondary memory.

Primary Memory vs Secondary Memory

BasisPrimary MemorySecondary Memory
DefinitionMain/internal memory directly accessible by the CPUExternal/auxiliary storage not directly accessed by the CPU
VolatilityMostly volatile (RAM loses data on power-off)Non-volatile (retains data permanently)
SpeedVery fastSlower than primary
CostCostlier per byteCheaper per byte
CapacitySmaller (GBs)Much larger (GB–TB)
ExamplesRAM, ROM, CacheHard disk, SSD, CD/DVD, USB flash drive
PurposeHolds data/instructions currently in usePermanent storage of programs and data

Summary: Primary memory is fast, temporary working storage close to the CPU; secondary memory is slower, permanent, high-capacity storage used for long-term retention.

memory
6short5 marks

Explain system software with examples.

System Software

System software is a set of programs that controls and manages the operation of computer hardware and provides a platform on which application software runs. It acts as an interface between the user/application software and the hardware.

Types and Examples

  1. Operating System (OS): Manages hardware resources, memory, processes, files and provides the user interface. e.g. Windows, Linux, macOS, Android.
  2. Language Translators: Convert source code into machine code — compiler (whole program at once), interpreter (line by line), assembler (assembly → machine code).
  3. Device Drivers: Enable the OS to communicate with hardware devices (printer driver, graphics driver).
  4. Utility Programs: Maintain and optimise the system — antivirus, disk defragmenter, backup, compression tools.

Key point: Unlike application software (which serves the end user's specific tasks), system software serves the computer system itself.

software
7short5 marks

Explain any four input devices of a computer.

Four Input Devices

  1. Keyboard: The most common input device; converts pressed keys (letters, numbers, symbols, control keys) into coded signals for the computer.
  2. Mouse: A pointing device that controls the on-screen cursor; used to point, click, drag and select graphical objects.
  3. Scanner: Optically captures printed text, images or documents and converts them into a digital form that can be stored or edited.
  4. Microphone: Captures sound/voice and converts analog audio into digital signals for recording, voice commands or communication.

(Other examples: light pen, joystick, touch screen, webcam, barcode reader, OMR/OCR/MICR readers.)

io-devices
8short5 marks

Convert (172)10 into binary, octal and hexadecimal.

Convert (172)10(172)_{10}

To Binary (divide by 2)

DivisionQuotientRemainder
172÷2860
86÷2430
43÷2211
21÷2101
10÷250
5÷221
2÷210
1÷201

Reading remainders bottom-to-top:

(172)10=(10101100)2(172)_{10} = (10101100)_2

To Octal (group binary in 3s from right)

10101100=(010)(101)(100)=(254)810\,101\,100 = (010)(101)(100) = (254)_8

Check: 264+58+4=128+40+4=172.2{\cdot}64 + 5{\cdot}8 + 4 = 128+40+4 = 172.

To Hexadecimal (group binary in 4s from right)

10101100=(1010)(1100)=(AC)161010\,1100 = (1010)(1100) = (AC)_{16}

Check: A16+C=1016+12=160+12=172.A{\cdot}16 + C = 10{\cdot}16 + 12 = 160+12 = 172.

Result: (172)10=(10101100)2=(254)8=(AC)16(172)_{10} = (10101100)_2 = (254)_8 = (AC)_{16}.

data-representation
9short5 marks

What is a network topology? Explain the star topology.

Network Topology

Network topology is the physical or logical arrangement (layout) of nodes (computers/devices) and the connecting links in a computer network. It describes how devices are interconnected and how data flows. Common types: bus, star, ring, mesh, tree and hybrid.

Star Topology

In a star topology, all nodes are connected to a central device (hub or switch) by individual point-to-point links. All communication between nodes passes through this central device.

Diagram (described): A central hub/switch in the middle with separate cables radiating out to each computer, forming a star-like shape.

Advantages

  • Easy to install, manage and add/remove nodes.
  • Failure of one cable or node does not affect the rest of the network.
  • Easy fault detection and centralised management.

Disadvantages

  • Requires more cable than bus/ring.
  • The central hub/switch is a single point of failure — if it fails, the whole network goes down.
networks
10short5 marks

What is a DBMS? List its advantages.

DBMS

A Database Management System (DBMS) is system software that allows users to create, store, organise, retrieve, manipulate and manage data in a database in an efficient and controlled way. It acts as an interface between users/applications and the physical database. Examples: MySQL, Oracle, MS SQL Server, MS Access, PostgreSQL.

Advantages of DBMS

  1. Controls data redundancy – minimises duplicate storage of the same data.
  2. Data consistency and integrity – enforces rules so data stays accurate and valid.
  3. Data sharing – multiple users/applications can access the same data concurrently.
  4. Data security – access controls, authentication and authorisation protect data.
  5. Backup and recovery – built-in mechanisms restore data after failures.
  6. Data independence – applications are insulated from changes in data storage structure.
  7. Efficient querying – fast retrieval and updates using query languages (SQL).
database
11short5 marks

Explain the components of multimedia.

Components of Multimedia

Multimedia is the integration of multiple forms of media — text, graphics, audio, video and animation — to present information interactively. Its five basic components are:

  1. Text: The fundamental element used to convey information, titles, labels and content. Various fonts, sizes and styles improve readability.
  2. Graphics / Images: Still pictures, drawings, charts and photographs (e.g. JPEG, PNG, GIF) that illustrate and enhance content.
  3. Audio / Sound: Music, narration, sound effects and speech (e.g. MP3, WAV) that add an auditory dimension.
  4. Video: Moving visual images with sound (e.g. MP4, AVI) used for demonstrations and realistic presentation.
  5. Animation: A sequence of images displayed rapidly to create the illusion of motion, used to visualise concepts and add appeal.

(These components are combined and controlled through multimedia authoring software and require suitable hardware such as sound cards, speakers and displays.)

multimedia
12short5 marks

Write short notes on computer security threats.

Computer Security Threats

A computer security threat is any potential danger that can exploit a vulnerability to harm a computer system, steal/damage data, or disrupt operations. Major threats include:

  1. Malware (Malicious Software):
    • Virus – attaches to files and spreads, corrupting data.
    • Worm – self-replicates across networks without a host file.
    • Trojan horse – disguised as legitimate software but performs harmful actions.
    • Spyware / Adware – secretly monitors activity or shows unwanted ads.
  2. Ransomware: Encrypts a user's data and demands payment for the decryption key.
  3. Hacking / Unauthorised access: Intruders gain access to systems to steal or alter data.
  4. Phishing: Fraudulent emails/websites trick users into revealing passwords or financial details.
  5. Denial of Service (DoS/DDoS): Floods a system with traffic to make services unavailable.
  6. Data theft and identity theft: Stealing confidential or personal information.

Protection measures: antivirus software, firewalls, strong passwords, regular updates, data backups, encryption and user awareness.

security

Frequently asked questions

Where can I find the BSc CSIT (TU) Introduction to Information Technology (BSc CSIT, CSC109) question paper 2081?
The full BSc CSIT (TU) Introduction to Information Technology (BSc CSIT, CSC109) 2081 (regular) question paper is available free on Kekkei. You can read every question online and attempt the paper under timed exam conditions.
Does the Introduction to Information Technology (BSc CSIT, CSC109) 2081 paper come with solutions?
Yes. Every question on this Introduction to Information Technology (BSc CSIT, CSC109) past paper includes a step-by-step solution, plus instant AI feedback when you attempt it on Kekkei.
How many marks is the BSc CSIT (TU) Introduction to Information Technology (BSc CSIT, CSC109) 2081 paper?
The BSc CSIT (TU) Introduction to Information Technology (BSc CSIT, CSC109) 2081 paper carries 60 full marks and is meant to be completed in 180 minutes, across 12 questions.
Is practising this Introduction to Information Technology (BSc CSIT, CSC109) past paper free?
Yes — reading and attempting this Introduction to Information Technology (BSc CSIT, CSC109) past paper on Kekkei is completely free.