कौन-सी युक्ति दो अलग नेटवर्क जोड़कर पैकेट आगे भेजती है?
Which device connects two different networks and forwards packets?
उत्तर / हल देखें ▶
सही विकल्प: B — Router / राउटर
A router reads IP addresses and chooses the next hop. A hub only repeats bits on one LAN. / राउटर IP देखकर रास्ता चुनता है।
प्र. 2विकल्प / MCQ1 अंकनेटवर्क · Networks
वर्ष / Years:20102013201620192022
IP 192.168.1.5 सामान्यतः प्रयोग होती है
IP address 192.168.1.5 is typically used on a
उत्तर / हल देखें ▶
सही विकल्प: B — Private LAN / निजी LAN
192.168.x.x is a private range (RFC 1918) behind a home or school router. / निजी रेंज, घर/स्कूल LAN।
प्र. 3विकल्प / MCQ1 अंकडेटाबेस · DBMS
वर्ष / Years:20122015201820212024
प्राथमिक कुंजी होनी चाहिए
A primary key must be
उत्तर / हल देखें ▶
सही विकल्प: B — Unique and not null / अद्वितीय और खाली नहीं
Each row is identified by a unique, mandatory primary key. / हर पंक्ति की एक अनोखी पहचान।
प्र. 4विकल्प / MCQ1 अंकएसक्यूएल · SQL
वर्ष / Years:2011201520182022
पंक्तियाँ निकालने का SQL कमांड है
Which SQL command retrieves rows?
उत्तर / हल देखें ▶
सही विकल्प: B — SELECT
SELECT … FROM … WHERE … reads data; INSERT adds, UPDATE changes, DROP removes a table. / SELECT पढ़ता है।
प्र. 5विकल्प / MCQ1 अंकएसक्यूएल · SQL
वर्ष / Years:2010201420172021
केवल marks > 40 पंक्तियाँ रखने के लिए जोड़ते हैं
To keep only rows where marks > 40 you add
उत्तर / हल देखें ▶
सही विकल्प: B — WHERE marks > 40
WHERE filters rows before grouping. / WHERE शर्त लगाता है।
प्र. 6विकल्प / MCQ1 अंकप्रोग्रामिंग · Programming
वर्ष / Years:2013201620192023
यदि शुरू में शर्त गलत हो तो शून्य बार चलने वाला लूप सामान्यतः है
A loop that may run zero times if the condition is false at the start is typically a
उत्तर / हल देखें ▶
सही विकल्प: B — while / while
while tests first; do-while runs the body at least once. / while पहले जाँचता है।
प्र. 7विकल्प / MCQ1 अंकप्रोग्रामिंग · Programming
वर्ष / Years:2012201620202024
ऐरे सबसे उपयुक्त रूप से है
An array is best described as
उत्तर / हल देखें ▶
सही विकल्प: B — A named list of same-type elements / एक ही प्रकार के तत्वों की सूची
marks[0]..marks[n-1] store a sequence under one name. / एक नाम, कई समान तत्व।
प्र. 8विकल्प / MCQ1 अंकवेब · Web
वर्ष / Years:201120152019
HTML प्रयोग होता है
HTML is used to
उत्तर / हल देखें ▶
सही विकल्प: B — Structure a web page / वेब पेज की संरचना
HTML marks headings, paragraphs and links; CSS styles; JS behaves. / HTML ढाँचा, CSS सजाहट।
प्र. 9विकल्प / MCQ1 अंकसुरक्षा · Security
वर्ष / Years:2010201420182022
फायरवॉल का उद्देश्य है
A firewall is meant to
उत्तर / हल देखें ▶
सही विकल्प: B — Filter network traffic by rules / नियमों से नेटवर्क ट्रैफिक छानना
It allows or blocks packets between a LAN and the Internet. / पैकेट अनुमति/रोक।
प्र. 10विकल्प / MCQ1 अंकओएसआई · OSI
वर्ष / Years:201320172021
HTTP आमतौर पर TCP/IP मॉडल के किस स्तर से जुड़ा है?
HTTP is commonly associated with which layer of the TCP/IP model?
उत्तर / हल देखें ▶
सही विकल्प: B — Application / अनुप्रयोग
Web protocols sit at the application layer over TCP. / अनुप्रयोग परत।
प्र. 11विकल्प / MCQ1 अंकडेटाबेस · DBMS
वर्ष / Years:201220162020
विदेशी कुंजी के बारे में सत्य है
Which statement about a foreign key is true?
उत्तर / हल देखें ▶
सही विकल्प: B — It refers to the primary key of another (or same) table / दूसरी (या उसी) तालिका की प्राथमिक कुंजी से जुड़ती है
A foreign key maintains referential integrity between tables. / तालिकाओं के बीच संबंध।
प्र. 12विकल्प / MCQ1 अंकबूलियन · Boolean
वर्ष / Years:201420182023
2-इनपुट AND गेट का आउटपुट 1 तभी जब
The output of a 2-input AND gate is 1 only when
उत्तर / हल देखें ▶
सही विकल्प: B — Both inputs are 1
AND is 1 iff every input is 1. / दोनों 1 हों तभी 1।
प्र. 13लघु उत्तरीय2 अंकनेटवर्क · Networks
वर्ष / Years:2011201520192023
स्विच और हब में अंतर लिखिए।
Differentiate between a switch and a hub.
उत्तर / step-by-step हल देखें ▶
A hub floods every frame to all ports (one collision domain). A switch learns MAC addresses and forwards a frame to the needed port, so less collision and better privacy. Modern LANs use switches. / हब सबको भेजता; स्विच सही पोर्ट।
स्व-अंक:
प्र. 14लघु उत्तरीय2 अंकएसक्यूएल · SQL
वर्ष / Years:2010201420182022
70 से अधिक अंक वाले विद्यार्थियों के नाम और अंक घटते क्रम में दिखाने का SQL लिखिए।
Write an SQL statement to show name and marks of students who scored more than 70, sorted by marks descending.
उत्तर / step-by-step हल देखें ▶
SELECT name, marks FROM students WHERE marks > 70 ORDER BY marks DESC; / WHERE छानता है, ORDER BY सजाता है।
स्व-अंक:
प्र. 15लघु उत्तरीय2 अंकप्रोग्रामिंग · Programming
वर्ष / Years:2012201620202024
कंपाइलर और इंटरप्रेटर में क्या अंतर है?
What is the difference between a compiler and an interpreter?
उत्तर / step-by-step हल देखें ▶
A compiler translates the whole source to machine code (or bytecode) before running; errors appear in a batch. An interpreter executes line by line, useful for quick tests, usually slower at run time. Java often mixes both (compile to bytecode, then a VM). / पूरा अनुवाद बनाम पंक्ति-दर-पंक्ति।
स्व-अंक:
प्र. 16लघु उत्तरीय2 अंकडेटाबेस · DBMS
वर्ष / Years:201320172021
कई अलग स्प्रेडशीट की जगह DBMS क्यों?
Why use a DBMS instead of many separate spreadsheet files?
उत्तर / step-by-step हल देखें ▶
A DBMS reduces duplicate data, enforces keys and types, allows many users with permissions, and answers questions with SQL. Spreadsheets are fine for a class list of 40; a school of 2000 needs a database. / दोहराव कम, कुंजी, बहु-उपयोगकर्ता, SQL।
स्व-अंक:
प्र. 17लघु उत्तरीय2 अंकसुरक्षा · Security
वर्ष / Years:201120162019
फिशिंग दो वाक्यों में समझाइए और बचने का एक तरीका लिखिए।
Explain phishing in two sentences and one way to avoid it.
उत्तर / step-by-step हल देखें ▶
Phishing is a fake mail or site that looks like a bank or board portal to steal a password or OTP. Check the real domain, do not click a surprise link, and never type an OTP into a page you opened from SMS. / नकली साइट; असली पता देखें, OTP न दें।
स्व-अंक:
प्र. 18लघु उत्तरीय2 अंकवेब · Web
वर्ष / Years:201020152022
वेब पेज पर HTML, CSS और JavaScript क्या-क्या करते हैं?
What do HTML, CSS and JavaScript each do on a web page?
उत्तर / step-by-step हल देखें ▶
HTML is the structure (heading, table, form). CSS is look (colour, layout). JavaScript is behaviour (show a score, validate a form). A board answer should not mix the three jobs. / ढाँचा, सजाहट, व्यवहार।
स्व-अंक:
प्र. 19दीर्घ उत्तरीय4 अंकनेटवर्क · Networks
वर्ष / Years:2012201620202024
TCP/IP परतों को प्रत्येक पर एक प्रोटोकॉल या युक्ति सहित समझाइए।
Explain the TCP/IP layers with one protocol or device at each layer you name.
उत्तर / step-by-step हल देखें ▶
Link/network access: Ethernet, Wi-Fi, a switch — bits on a cable or radio. Internet: IP addressing and routing (router). Transport: TCP (reliable stream) or UDP (fast, no extra handshake). Application: HTTP, SMTP, DNS. In an answer draw four boxes and one example each; do not memorise all seven OSI names if the book uses four TCP/IP layers. / लिंक → IP/राउटर → TCP → HTTP।
स्व-अंक:
प्र. 20दीर्घ उत्तरीय4 अंकडेटाबेस SQL · DBMS SQL
वर्ष / Years:2011201520192023
तालिका STUDENT(roll, name, class, marks) पर SQL लिखिए: बनाना, एक पंक्ति, कक्षा 12 के अंक +5, 20 से कम हटाना।
A table STUDENT(roll, name, class, marks) is given. Write SQL to (i) create it, (ii) insert one row, (iii) raise marks by 5 for class 12, (iv) delete marks below 20.
उत्तर / step-by-step हल देखें ▶
CREATE TABLE STUDENT (roll INT PRIMARY KEY, name VARCHAR(40), class INT, marks INT); INSERT INTO STUDENT VALUES (101, 'Ravi', 12, 62); UPDATE STUDENT SET marks = marks + 5 WHERE class = 12; DELETE FROM STUDENT WHERE marks < 20; Mention PRIMARY KEY so roll cannot repeat. / CREATE, INSERT, UPDATE, DELETE — शर्त WHERE में।
n पूर्णांकों की ऐरे में सबसे बड़ी संख्या निकालने की तर्क/संक्षिप्त कोड लिखिए।
Write the logic (steps or short code) to find the largest number in an array of n integers.
उत्तर / step-by-step हल देखें ▶
Set max = a[0]. For i from 1 to n−1: if a[i] > max then max = a[i]. Print max. Edge case: n = 1, the first element is the answer. In an exam, indent the loop and name the array. Do not sort the whole array if the question only asks for the maximum — that wastes time. / पहला तत्व max; बाकी से तुलना।
स्व-अंक:
प्र. 22दीर्घ उत्तरीय4 अंकसाइबर सुरक्षा · Cyber safety
वर्ष / Years:201320172021
सोशल मीडिया और ऑनलाइन टेस्ट वाले इंटरमीडिएट विद्यार्थी के लिए चार साइबर-सुरक्षा आदतें लिखिए।
Describe four cyber-safety practices for an Intermediate student who uses social media and online tests.
उत्तर / step-by-step हल देखें ▶
Use a unique password plus 2-step verification on email. Do not post your admit-card photo with roll number visible. Download test apps only from the official store or school link. If a “UP Board result” SMS asks for a fee, ignore it — results are on the official site. Keep backups of project files on two devices. Report cyber-bullying to a teacher; do not reply in anger. / अलग पासवर्ड, दस्तावेज़ न पोस्ट, आधिकारिक लिंक, नकली फीस न दें।
स्व-अंक:
प्र. 23दीर्घ उत्तरीय4 अंकबूलियन · Boolean
वर्ष / Years:201220162020
AND, OR और NOT की सत्य तालिका बनाइए। अन्य तर्क इनसे क्यों बन सकते हैं?
Draw the truth table of AND, OR and NOT. Why are these gates enough to build other logic?
उत्तर / step-by-step हल देखें ▶
AND: 00→0, 01→0, 10→0, 11→1. OR: 00→0, others 1. NOT: 0→1, 1→0. NAND or NOR alone is functionally complete; AND+OR+NOT can express any Boolean function by sum-of-products (e.g. XOR = (A AND NOT B) OR (NOT A AND B)). In the copy, draw three small tables and one XOR expression. / तीन तालिका + XOR उदाहरण।
स्व-अंक:
प्र. 24दीर्घ उत्तरीय4 अंकपरियोजना · Project
वर्ष / Years:201420182023
स्कूल परियोजना रूपरेखा: डेटाबेस पर अंक सूची और संक्षिप्त रिपोर्ट।
Outline a simple school project: a student mark list using a database and a short report.
उत्तर / step-by-step हल देखें ▶
Aim: store roll, name, subject marks and print class average. Tools: a DBMS (or even a well-designed spreadsheet as a prototype) plus a one-page report in a word processor. Tables: STUDENT, MARKS (foreign key roll). Queries: top five, subject average, fail list. Ethics: no real Aadhaar, use dummy names. Conclusion: what you would add (charts, login). Examiners want aim, table design, two queries, and a screenshot or printout — not a 40-page copy-paste. / उद्देश्य, तालिका, दो क्वेरी, डमी डेटा, निष्कर्ष।
स्व-अंक:
कैसे पढ़ें
MCQ पर टैप करें — सही हरा, गलत लाल। फिर “हल देखें” से वर्ष और उत्तर खोलें। पेपर टेस्ट से पूरा खण्ड अ/ब/स एक साथ करें।
कंप्यूटर के रिपीटेड प्रश्न कैसे पढ़ें? ऊपर से चैप्टर या प्रश्न-प्रकार चुनें। MCQ पर टैप करें। हल में वर्ष और संक्षिप्त उत्तर दिखेगा।
बोर्ड जैसा पेपर कहाँ है? “बोर्ड पेपर जैसा टेस्ट” खोलें — खण्ड अ/ब/स, अंक और समय उसी शैली में।
Today's 3-step path
Follow this loop every day: mixed test, current affairs, then today's subject. A new set arrives tomorrow.