Skip to content

Mixed Set 01 — Section B (PYQ-weighted)

50 MCQs · DSSSB TGT CS style · Negative marking −0.25 · Answer key with explanations at end.

Target mix: Networks 8 · Digital 8 · Pedagogy 7 · Business 6 · Programming/DS 6 · Fundamentals 5 · Graphics 3 · OS 3 · DBMS 2 · Web 1 · Algo 1


Networks (8)

Q1. Which OSI layer is responsible for end-to-end reliable delivery and flow control?

  • (a) Network
  • (b) Transport
  • (c) Data Link
  • (d) Physical

Q2. The default port number for HTTPS is:

  • (a) 21
  • (b) 80
  • (c) 443
  • (d) 25

Q3. In IPv4, a Class C default subnet mask is:

  • (a) 255.0.0.0
  • (b) 255.255.0.0
  • (c) 255.255.255.0
  • (d) 255.255.255.255

Q4. Which device operates primarily at Layer 3 and routes packets between networks?

  • (a) Hub
  • (b) Repeater
  • (c) Router
  • (d) Passive switch (L2 only)

Q5. TCP differs from UDP mainly because TCP:

  • (a) Is connectionless and unreliable
  • (b) Provides connection-oriented reliable delivery
  • (c) Has no port numbers
  • (d) Cannot be used on the Internet

Q6. A symmetric encryption algorithm uses:

  • (a) Only public keys for both encrypt and decrypt
  • (b) The same secret key for encrypt and decrypt
  • (c) No keys at all
  • (d) Hash functions for reversible encryption

Q7. CSMA/CD is associated with traditional:

  • (a) Token Ring only
  • (b) Ethernet (shared medium collision detection)
  • (c) Bluetooth pairing
  • (d) DNS resolution

Q8. Which protocol resolves IP addresses to MAC addresses on a LAN?

  • (a) ARP
  • (b) FTP
  • (c) SMTP
  • (d) SNMP

Digital Electronics (8)

Q9. The Boolean expression (A + \bar{A}) simplifies to:

  • (a) 0
  • (b) 1
  • (c) A
  • (d) (\bar)

Q10. A 2-to-4 decoder has how many output lines active (typically one-hot) for a valid input?

  • (a) All four always ON
  • (b) Exactly one (for each valid code)
  • (c) Exactly two
  • (d) None

Q11. The 2’s complement of 0101 (assuming 4-bit) is:

  • (a) 1010
  • (b) 1011
  • (c) 0101
  • (d) 1110

Q12. Which gate outputs 1 only when all inputs are 1?

  • (a) OR
  • (b) XOR
  • (c) AND
  • (d) NAND

Q13. A full adder has how many inputs?

  • (a) 1
  • (b) 2
  • (c) 3
  • (d) 4

Q14. In positive logic, logic-1 is represented by:

  • (a) The more negative voltage level
  • (b) The more positive voltage level
  • (c) Always 0 V only
  • (d) Open circuit only

Q15. A flip-flop is a:

  • (a) Combinational circuit only
  • (b) Sequential bistable memory element
  • (c) Type of multiplexer
  • (d) Analog amplifier only

Q16. De Morgan’s law states (\overline{A · B} =)

  • (a) (\bar{A} · \bar)
  • (b) (\bar{A} + \bar)
  • (c) (A + B)
  • (d) (A · B)

Pedagogy (7)

Q17. Bloom’s taxonomy cognitive domain begins (lowest level) with:

  • (a) Evaluation
  • (b) Knowledge / Remembering
  • (c) Synthesis only
  • (d) Creating only (original 1956 top)

Q18. Formative assessment is mainly used to:

  • (a) Certify final grades only at year-end
  • (b) Provide ongoing feedback during learning
  • (c) Rank teachers nationally
  • (d) Replace the curriculum

Q19. Inclusive education primarily emphasizes:

  • (a) Segregating children with special needs always
  • (b) Educating all learners together with appropriate support
  • (c) Teaching only gifted students
  • (d) Removing all assessments

Q20. Constructivist approach views the learner as:

  • (a) A passive recipient of facts only
  • (b) An active constructor of knowledge
  • (c) A blank tape for drilling only
  • (d) Unimportant to pedagogy

Q21. NEP 2020 emphasizes (among other things):

  • (a) Rigid early stream separation only
  • (b) Multidisciplinary education and foundational literacy/numeracy
  • (c) Banning all technology in schools
  • (d) Ending teacher education

Q22. Microteaching is primarily meant to:

  • (a) Replace school internships entirely
  • (b) Practice and refine specific teaching skills in a scaled-down setting
  • (c) Conduct board examinations
  • (d) Design national curriculum alone

Q23. Continuous and Comprehensive Evaluation (CCE) aims to assess:

  • (a) Only one final written test
  • (b) Scholastic and co-scholastic aspects continuously
  • (c) Only sports performance
  • (d) Only attendance registers

Business / E-Commerce / KM (6)

Q24. In accounting, the dual aspect concept means:

  • (a) Every transaction has two aspects (debit and credit)
  • (b) Assets are never recorded
  • (c) Only cash transactions exist
  • (d) Profit is always zero

Q25. B2C e-commerce refers to:

  • (a) Business selling to consumers
  • (b) Business selling only to government
  • (c) Consumer-to-consumer auctions only
  • (d) Intranet file sharing only

Q26. Working capital is generally:

  • (a) Fixed assets − long-term liabilities
  • (b) Current assets − current liabilities
  • (c) Only cash in hand forever
  • (d) Share capital only

Q27. Knowledge Management (KM) is mainly about:

  • (a) Capturing, sharing and using organizational knowledge
  • (b) Only hardware inventory
  • (c) Replacing all databases with paper
  • (d) Network cabling standards

Q28. GDP measures:

  • (a) Total market value of final goods and services produced in a country in a period
  • (b) Only government salaries
  • (c) Only imports
  • (d) Stock market index alone

Q29. EDI in e-commerce stands for:

  • (a) Electronic Data Interchange
  • (b) Extra Disk Interface
  • (c) Encrypted Desktop Icon
  • (d) End Device Identifier

Programming / DS / OOP (6)

Q30. Time complexity of binary search on a sorted array of n elements is:

  • (a) O(n)
  • (b) O(log n)
  • (c) O(n²)
  • (d) O(1) always for any n

Q31. Which data structure follows LIFO?

  • (a) Queue
  • (b) Stack
  • (c) Circular linked list only
  • (d) Priority queue always FIFO

Q32. In OOP, encapsulation primarily means:

  • (a) Bundling data with methods and restricting direct access
  • (b) Using only global variables
  • (c) Avoiding classes entirely
  • (d) Compiling to machine code only

Q33. A queue follows:

  • (a) LIFO
  • (b) FIFO
  • (c) Random access only like arrays always
  • (d) Hash collision resolution only

Q34. In Java, which keyword prevents inheritance of a class?

  • (a) static
  • (b) final
  • (c) void
  • (d) transient

Q35. Worst-case time complexity of quicksort is:

  • (a) O(n log n)
  • (b) O(n)
  • (c) O(n²)
  • (d) O(log n)

Fundamentals & Architecture (5)

Q36. 1 KB traditionally (binary) equals:

  • (a) 1000 bytes
  • (b) 1024 bytes
  • (c) 1000 bits
  • (d) 512 bytes

Q37. The CPU component that performs arithmetic and logic is the:

  • (a) ALU
  • (b) CU only without ALU
  • (c) Hard disk
  • (d) Modem

Q38. Cache memory is:

  • (a) Slower than main memory and cheaper always
  • (b) Faster, smaller memory closer to the CPU
  • (c) Same as virtual memory swap file only
  • (d) Only ROM

Q39. ASCII is a:

  • (a) Character encoding standard
  • (b) Network routing protocol
  • (c) Database normal form
  • (d) GPU shading language

Q40. Von Neumann architecture stores:

  • (a) Program and data in the same memory space
  • (b) Only instructions in registers forever
  • (c) No programs at all
  • (d) Only analog signals

Graphics / Multimedia / Mobile (3)

Q41. Raster graphics store images as:

  • (a) Mathematical curves only
  • (b) A grid of pixels
  • (c) Only audio samples
  • (d) SQL tables

Q42. The primary colours in the RGB model are:

  • (a) Red, Green, Blue
  • (b) Cyan, Magenta, Yellow
  • (c) Red, Yellow, Blue only for print
  • (d) Black and White only

Q43. In mobile computing, 4G is associated with:

  • (a) Only wired Ethernet
  • (b) High-speed cellular broadband generation
  • (c) Floppy disk standards
  • (d) CRT refresh rates

Operating Systems (3)

Q44. A process in the ready state is:

  • (a) Waiting for I/O completion only
  • (b) Waiting to be assigned the CPU
  • (c) Terminated permanently
  • (d) Not loaded in memory at all

Q45. Deadlock can occur when which set of conditions holds (Coffman)?

  • (a) Mutual exclusion, hold-and-wait, no preemption, circular wait
  • (b) Only paging
  • (c) Only multitasking without sharing
  • (d) Round-robin alone

Q46. In Linux, the command to list directory contents is commonly:

  • (a) ls
  • (b) dirprint
  • (c) showall
  • (d) listx

DBMS (2)

Q47. In the relational model, a primary key:

  • (a) May contain duplicate NULL rows freely
  • (b) Uniquely identifies each tuple and disallows duplicates
  • (c) Is always a foreign key of another table only
  • (d) Stores only images

Q48. SQL command to remove a table structure is:

  • (a) DELETE TABLE
  • (b) DROP TABLE
  • (c) REMOVE TABLE
  • (d) ERASE TABLE

Web (1)

Q49. HTML is primarily used to:

  • (a) Style page layout exclusively (like CSS’s main role)
  • (b) Structure content of web pages
  • (c) Query relational databases
  • (d) Compile Java bytecode

Algorithms (1)

Q50. Dijkstra’s algorithm is used to find:

  • (a) Minimum spanning tree only (always)
  • (b) Shortest paths from a source in a weighted graph (non-negative weights)
  • (c) Only sorting of integers
  • (d) Huffman coding trees only

Answer key with explanations

QTopicAnsExplanation
1NetworksbTransport layer (TCP) handles end-to-end reliability and flow control.
2NetworkscHTTPS uses TCP port 443 by default.
3NetworkscClass C default mask is 255.255.255.0 (/24).
4NetworkscRouters forward based on IP (Layer 3).
5NetworksbTCP is connection-oriented and reliable; UDP is not.
6NetworksbSymmetric crypto: one shared secret key both ways.
7NetworksbClassic shared Ethernet used CSMA/CD.
8NetworksaARP maps IP → MAC on local networks.
9Digitalb(A + \bar{A} = 1) (complement law).
10DigitalbStandard binary decoder asserts one output line.
11DigitalbInvert 0101 → 1010, add 1 → 1011.
12DigitalcAND is 1 iff every input is 1.
13DigitalcFull adder inputs: A, B, Cin.
14DigitalbPositive logic: higher voltage = logic 1.
15DigitalbFlip-flop stores 1 bit; sequential element.
16Digitalb(\overline{A·B} = \bar{A}+\bar).
17PedagogybLowest cognitive level: knowledge/remember.
18PedagogybFormative = during learning, for improvement.
19PedagogybInclusion = all learners with support, together.
20PedagogybConstructivism = active knowledge construction.
21PedagogybNEP 2020: multidisciplinary + foundational literacy.
22PedagogybMicroteaching practices discrete teaching skills.
23PedagogybCCE covers scholastic + co-scholastic continuously.
24BusinessaDual aspect → debit and credit for every entry.
25BusinessaB2C = business-to-consumer commerce.
26BusinessbWorking capital = CA − CL.
27BusinessaKM = create, share, apply organizational knowledge.
28BusinessaGDP = value of final goods/services in a period.
29BusinessaEDI = Electronic Data Interchange.
30Prog/DSbBinary search halves search space → O(log n).
31Prog/DSbStack = Last In First Out.
32Prog/DSaEncapsulation hides internal state behind interface.
33Prog/DSbQueue = First In First Out.
34Prog/DSbfinal class cannot be subclassed in Java.
35Prog/DScQuicksort worst case (already sorted + bad pivot) O(n²).
36Fundamentalsb1 KiB / traditional KB = 1024 bytes.
37FundamentalsaALU performs arithmetic and logical operations.
38FundamentalsbCache is small, fast memory near CPU.
39FundamentalsaASCII encodes characters as numeric codes.
40FundamentalsaVon Neumann: shared memory for code and data.
41GraphicsbRaster = pixel grid (bitmap).
42GraphicsaRGB primaries: Red, Green, Blue.
43Graphics/Mobileb4G = fourth-generation cellular broadband.
44OSbReady = runnable, waiting for CPU scheduling.
45OSaFour Coffman conditions characterize deadlock.
46OSals lists files/directories in Linux/Unix.
47DBMSbPrimary key uniquely identifies rows; no duplicates.
48DBMSbDROP TABLE removes table definition (and data).
49WebbHTML marks up / structures web content.
50AlgobDijkstra: single-source shortest paths (w ≥ 0).

Counts written

Topic areaTargetWritten
Networks88 (Q1–Q8)
Digital Electronics88 (Q9–Q16)
Pedagogy77 (Q17–Q23)
Business / E-Commerce / KM66 (Q24–Q29)
Programming / DS / OOP66 (Q30–Q35)
Fundamentals / Architecture55 (Q36–Q40)
Graphics / Multimedia / Mobile33 (Q41–Q43)
Operating Systems33 (Q44–Q46)
DBMS22 (Q47–Q48)
Web11 (Q49)
Algorithms11 (Q50)
Total5050

Also created this request:

  • section-b/mis-dss-expert/notes.md — MIS/DSS/EIS/ES + Physics skip block
  • practice/topic-mcqs/14-mis-dss-expert.md12 MCQs + answer key