Probability Engine · CSC412

Network and System Administration (BSc CSIT, CSC412): the questions likely to come

80 analyzed questions from 7 past papers (2074-2081), grouped by syllabus unit — each with its probability, how often it's been asked, and where to study the answer.

7
Papers analyzed
2074-2081
80
Analyzed questions
across 8 syllabus units
4
Very likely units
high-probability topics
5
Units = 80% of marks
study these first
Model answers for this subject are being written. Every question links to its original paper so you can study from the source meanwhile.
Pick a unit
U7 · Q1/24 · 208110 marks
Network Administration and Services

Explain DNS and DHCP. Compare their roles, describe their configuration, and discuss how they work together in a network.

20%
Occasional to appearAppeared in 1 of the last 1 board papers
Seen in
How well do you know this?rating moves you on
MODEL ANSWERU7 · 10 marks

DNS and DHCP

DNS (Domain Name System)

DNS is a hierarchical, distributed naming system that resolves human-readable domain names into IP addresses (and vice versa). When a host needs to reach www.example.com, its resolver queries DNS servers (root → TLD → authoritative) to obtain the corresponding IP (e.g. 93.184.216.34). It uses UDP/TCP port 53.

Configuration (Linux/BIND example): zone files declare records such as A, AAAA, CNAME, MX, NS, PTR.

; example.com zone file
@      IN  SOA  ns1.example.com. admin.example.com. ( 2024010101 3600 900 604800 86400 )
@      IN  NS   ns1.example.com.
www    IN  A    192.168.1.10
mail   IN  MX 10 mail.example.com.

Clients point to a resolver via /etc/resolv.conf (nameserver 8.8.8.8).

DHCP (Dynamic Host Configuration Protocol)

DHCP automatically assigns IP configuration to clients — IP address, subnet mask, default gateway, and DNS server addresses — eliminating manual setup. It uses UDP ports 67 (server) and 68 (client) and works through the DORA exchange: Discover → Offer → Request → Acknowledge.

Configuration (ISC dhcpd example):

subnet 192.168.1.0 netmask 255.255.255.0 {
  range 192.168.1.100 192.168.1.200;
  option routers 192.168.1.1;
  option domain-name-servers 192.168.1.10;
  default-lease-time 600;
}

Comparison of Roles

AspectDNSDHCP
PurposeName ↔ IP resolutionAssign IP configuration
Port53 (UDP/TCP)67/68 (UDP)
OutputIP address for a nameIP, mask, gateway, DNS
StateMostly static recordsDynamic leases

How They Work Together

When a host joins a network, DHCP first leases it an IP address, subnet mask, gateway, and the address of the DNS server to use. The client then uses that DNS server to resolve names into IP addresses for actual communication. Modern setups also use Dynamic DNS (DDNS): the DHCP server updates DNS records automatically when it hands out a lease, so a client's hostname always maps to its current IP. Thus DHCP handles who am I / how do I connect, and DNS handles where is the host I want to reach.

AI-generated answer · unverifiedView in 2081 paper →
U7 · Question 1 of 24
Question Priority · U7ranked by appearance likelihood — study top-down

Network Administration and Services

Analyzed next20%
1
★ TOP PICK

Explain DNS and DHCP. Compare their roles, describe their configuration, and discuss how they work together in a network.

10 marksSEEN IN
20%
2

What is a web server? Explain the architecture of Apache/Nginx, virtual hosting, and HTTPS configuration using SSL/TLS.

10 marksSEEN IN
18%
3

What is the Domain Name System? Explain forward and reverse lookup zones and configure a caching-only DNS server.

10 marksSEEN IN
16%
4

Explain DHCP in detail. Describe the DHCP message exchange (DORA process) and the steps to configure a DHCP server.

10 marksSEEN IN
14%
5

Explain TCP/IP configuration and troubleshooting. Discuss the common network troubleshooting tools (ping, traceroute, netstat, nslookup).

10 marksSEEN IN
13%
6

What is a mail server? Explain the working of SMTP, POP3, and IMAP and the steps to configure a mail server.

10 marksSEEN IN
13%
7

Explain the process of installing and configuring a web server (Apache). Discuss virtual hosting and access control.

10 marksSEEN IN
11%
8

What is the difference between a switch and a router?

5 marksSEEN IN
20%
9

What is a reverse proxy?

5 marksSEEN IN
20%
10

Explain the Domain Name System (DNS). Describe the DNS hierarchy, types of DNS records, and the steps to configure a DNS server.

10 marksSEEN IN
10%
11

What is the function of /etc/resolv.conf?

5 marksSEEN IN
18%
12

What is port forwarding?

5 marksSEEN IN
18%
13

Write short notes on network monitoring protocols.

5 marksSEEN IN
18%
14

Explain DHCP relay agent.

5 marksSEEN IN
16%
15

Differentiate between static and dynamic routing.

5 marksSEEN IN
16%
16

Explain the structure of a DNS zone file.

5 marksSEEN IN
14%
17

What is a load balancer?

5 marksSEEN IN
14%
18

What is DNS resolution? Explain recursive and iterative queries.

5 marksSEEN IN
13%
19

Explain the DHCP lease process.

5 marksSEEN IN
13%
20

Write short notes on network address translation (NAT).

5 marksSEEN IN
13%
21

Differentiate between TCP and UDP.

5 marksSEEN IN
11%
22

What is SNMP? Explain its use in network management.

5 marksSEEN IN
11%
23

What is a proxy server?

5 marksSEEN IN
11%
24

What is DHCP? Explain how it assigns IP addresses dynamically.

5 marksSEEN IN
10%
03The mock

Sit a probable paper

A full mock exam built from the most likely questions, mirroring the real paper's structure. Every slot is a real past question.

Most Probable Paper

Mirrors the real structure · 60 marks · based on 7 past papers

Section A: Long Answer QuestionsAttempt any TWO questions.
  1. 1.

    Explain network security in detail. Discuss firewalls, VPNs, encryption, and best practices for securing servers and services.

    [10 marks]
    System and Network SecurityVery likelyfrom 2081 paper →

    This question has recurred in 3 of 7 years; so far only in internal assessments, not the board; and its topic (System and Network Security) appears in 86% of years.

  2. 2.

    Explain DNS and DHCP. Compare their roles, describe their configuration, and discuss how they work together in a network.

    [10 marks]
    Network Administration and ServicesVery likelyfrom 2081 paper →

    Asked once (2081); so far only in internal assessments, not the board; and its topic (Network Administration and Services) appears in 100% of years.

  3. 3.

    What is a web server? Explain the architecture of Apache/Nginx, virtual hosting, and HTTPS configuration using SSL/TLS.

    [10 marks]
    Network Administration and ServicesVery likelyfrom 2080 paper →

    Asked once (2080); so far only in internal assessments, not the board; and its topic (Network Administration and Services) appears in 100% of years.

Section B: Short Answer QuestionsAttempt any EIGHT questions.
  1. 1.

    Explain the role of the crontab file.

    [5 marks]
    Maintaining and Monitoring System Processes and PerformanceVery likelyfrom 2081 paper →

    This question has recurred in 2 of 7 years; so far only in internal assessments, not the board; and its topic (Maintaining and Monitoring System Processes and Performance) appears in 86% of years.

  2. 2.

    Explain the LDAP authentication process.

    [5 marks]
    Managing Users and GroupsLikelyfrom 2080 paper →

    This question has recurred in 2 of 7 years; so far only in internal assessments, not the board; and its topic recurs in 5 of 7 years.

  3. 3.

    What is the difference between a switch and a router?

    [5 marks]
    Network Administration and ServicesVery likelyfrom 2081 paper →

    Asked once (2081); so far only in internal assessments, not the board; and its topic (Network Administration and Services) appears in 100% of years.

  4. 4.

    What is a reverse proxy?

    [5 marks]
    Network Administration and ServicesVery likelyfrom 2081 paper →

    Asked once (2081); so far only in internal assessments, not the board; and its topic (Network Administration and Services) appears in 100% of years.

  5. 5.

    What is the function of /etc/resolv.conf?

    [5 marks]
    Network Administration and ServicesVery likelyfrom 2080 paper →

    Asked once (2080); so far only in internal assessments, not the board; and its topic (Network Administration and Services) appears in 100% of years.

  6. 6.

    What is port forwarding?

    [5 marks]
    Network Administration and ServicesVery likelyfrom 2080 paper →

    Asked once (2080); so far only in internal assessments, not the board; and its topic (Network Administration and Services) appears in 100% of years.

  7. 7.

    Write short notes on network monitoring protocols.

    [5 marks]
    Network Administration and ServicesVery likelyfrom 2080 paper →

    Asked once (2080); so far only in internal assessments, not the board; and its topic (Network Administration and Services) appears in 100% of years.

  8. 8.

    Explain DHCP relay agent.

    [5 marks]
    Network Administration and ServicesVery likelyfrom 2079 paper →

    Asked once (2079); so far only in internal assessments, not the board; and its topic (Network Administration and Services) appears in 100% of years.

  9. 9.

    Differentiate between static and dynamic routing.

    [5 marks]
    Network Administration and ServicesVery likelyfrom 2079 paper →

    Asked once (2079); so far only in internal assessments, not the board; and its topic (Network Administration and Services) appears in 100% of years.

04The receipts

Behind the numbers

The raw evidence the predictions are computed from: marks per unit per year, syllabus weights, trends, and coverage.

Show the heatmap, topic table and coverage analysis

The receipt: marks per unit, per year

Each row is a syllabus unit, each column an exam year, each cell the marks that unit earned that year. Click any cell to see the actual questions behind it.

Marks:nonefew → many
2074
2075
2077
2078
2079
2080
2081
Total
U7Network Administration and Services
160
U4Managing File Systems and Storage
80
U8System and Network Security
80
U6Maintaining and Monitoring System Processes and Performance
70
U3Managing Users and Groups
40
U1Introduction to System Administration
40
U2Setting up a System
30
U5Backups and System Recovery
25
#Syllabus unitProbabilityAppearedAvg marksSyllabus weightExam vs syllabusTrendQuestions
1U7Network Administration and ServicesVery likely100%22.916%7 lecture hrsOver-examinedexam 30% · syllabus 16%Steadynone repeat24 total
2U4Managing File Systems and StorageVery likely100%11.413%6 lecture hrsBalancedexam 15% · syllabus 13%Steadynone repeat15 total
3U8System and Network SecurityVery likely86%13.311%5 lecture hrsBalancedexam 15% · syllabus 11%Steady1 recurring11 total
4U6Maintaining and Monitoring System Processes and PerformanceVery likely86%11.711%5 lecture hrsBalancedexam 13% · syllabus 11%Steady1 recurring11 total
5U3Managing Users and GroupsLikely71%813%6 lecture hrsBalancedexam 8% · syllabus 13%Steady1 recurring5 total
6U1Introduction to System AdministrationLikely57%1011%5 lecture hrsBalancedexam 8% · syllabus 11%Steadynone repeat5 total
7U2Setting up a SystemLikely71%613%6 lecture hrsUnder-examinedexam 6% · syllabus 13%Steadynone repeat6 total
8U5Backups and System RecoveryPossible43%8.311%5 lecture hrsUnder-examinedexam 5% · syllabus 11%Steadynone repeat3 total

Study smart, not hard

Drag the slider: studying the top 5 units in priority order covers ~82% of all observed marks.

  1. ~80% line

Lecture time vs exam marks

Where the exam pays more than the curriculum spends: ● lectures vs ● exam marks, as a share of the whole course. A long teal-leading bar = high-yield unit.

U7Network Administration and Services
16% of lectures → 30% of markshigh yield
U4Managing File Systems and Storage
13% of lectures → 15% of marks
U8System and Network Security
11% of lectures → 15% of marks
U6Maintaining and Monitoring System Processes and Performance
11% of lectures → 13% of marks
U3Managing Users and Groups
13% of lectures → 8% of marks
U1Introduction to System Administration
11% of lectures → 8% of marks
U2Setting up a System
13% of lectures → 6% of markslow yield
U5Backups and System Recovery
11% of lectures → 5% of markslow yield

Topics are the official CSC412 syllabus units. Predictions are data-driven probabilities computed from 7 past papers (2074-2081) by mapping each real question to its syllabus unit. They indicate what has historically been likely, not guaranteed questions. Always study the full syllabus.