Module | Focus Area | Marks (Minimum) | Weightage Justification |
---|---|---|---|
1. Intro to CA & Org | Basics, Architectures, RISC vs CISC | 10 | Conceptual, Definitions |
2. Data Representation & Arithmetic | Booth’s, Division, Floating Point | 15 | Problem-heavy, Always asked |
3. ISA & Control Unit | Addressing Modes, ISA, MIPS | 20 | Core topic + Problem-based |
4. Memory System | Cache, RAM/ROM, Access time | 15 | Numerical & Theory |
5. I/O & Interfacing | DMA, Interrupts, Buses | 10 | Conceptual & Diagrams |
6. Subsystems | RAID, ECC, Disk Structures | 10 | Mostly theory |
Ahh nice, thanks for the extra context! Based on what your teacher said, you're 100% gonna see numericals or logic-based problems on congestion control algorithms — especially TCP congestion control mechanisms like:
This is TCP's heart and soul. Expect questions like:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dnsserver.c | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <unistd.h> | |
#include <arpa/inet.h> | |
#include <netdb.h> | |
#define PORT 8080 |
Question:
A 7-bit Hamming code
1011010
is received. Find and correct the error.
- 7-bit Hamming Code → Positions of parity bits are at powers of 2:
1, 2, 4
| Bit Position | Value | Parity Check Involvement |