Create a custom practice set
Pick category, difficulty, number of questions, and time limit. Start instantly with your own quiz.
Generate QuizPick category, difficulty, number of questions, and time limit. Start instantly with your own quiz.
Generate QuizNo weekly quiz is published yet. Check the weekly page for the latest updates.
View Weekly PageFilter by category, type, and difficulty. Reading is open for everyone.
Answer: getElementById()
getElementById('id') returns the element with specified ID (case-sensitive). querySelector() uses CSS selectors for more flexibility. getElementsByClassName/TagName return collections. DOM manipulation is core to interactive web development and frequently tested in programming sections of exams.
Answer: -a
ls -a lists all files including hidden ones (starting with .). ls -l shows detailed list; ls -h makes sizes human-readable; ls -la combines both. Hidden files store configuration data. Understanding command-line flags is fundamental for Linux administration questions in technical exams.
Answer: Panchamrit Strategy
Panchamrit (five nectars) announced at COP26 includes: 500 GW non-fossil capacity by 2030 (updated from 450 GW), 50% energy from renewables, 1 billion tonne CO2 reduction, net-zero by 2070. National Solar Mission is a component; Green Energy Corridor enables transmission; Surya Mitra trains solar technicians.
Answer: False
Section 79 of IT Act provides safe harbor to intermediaries if they: (1) only provide access, (2) don't initiate/modify transmission, (3) observe due diligence and remove content upon actual knowledge. IT Rules 2021 add grievance redressal and traceability requirements. Critical for understanding platform liability.
Answer: Queue
Queue follows FIFO: first element added is first removed. Operations: enqueue (add rear), dequeue (remove front). Used in CPU scheduling, print spooling, breadth-first search. Stack follows LIFO. Understanding fundamental data structure behaviors is essential for programming exams.
Answer: margin
CSS Box Model: content (actual text/image) → padding (space inside border) → border (edge around padding) → margin (space outside border). Understanding this model is crucial for layout design and responsive web development. Frequently tested in web technology sections of technical exams.
Answer: grep
grep (global regular expression print) searches files for lines matching a pattern/string. Supports regex, recursive search, and context display. find locates files by name/path; locate uses a database; search is not a standard command. Essential for log analysis and text processing in system administration.
Answer: True
Green hydrogen is produced via water electrolysis powered by renewable energy (solar, wind), resulting in zero-carbon fuel. Contrasts with grey hydrogen (from fossil fuels) and blue hydrogen (fossil fuels + carbon capture). India's National Green Hydrogen Mission aims to make India a global hub for production and export.
Answer: Data Protection Board of India
Data Protection Board of India is an independent regulatory body established under DPDP Act 2023 to enforce provisions, adjudicate disputes, and impose penalties. CERT-In handles cybersecurity incidents; RBI regulates financial data; TRAI oversees telecom. Understanding regulatory roles is key for governance questions.
Answer: h+1
Minimum nodes occur in a skewed tree (each node has only one child): height h has h+1 nodes. Maximum nodes in a perfect binary tree of height h is 2^(h+1)-1. Understanding tree properties is essential for algorithm analysis questions in technical government exams.
Answer: <canvas>
<canvas> provides a bitmap area for rendering graphics via JavaScript (lines, shapes, images, animations). <svg> is for vector graphics defined in XML. Both enable interactive visuals, but canvas is pixel-based and better for games/real-time rendering. Important for web development fundamentals.
Answer: False
kill sends signals to processes; default is SIGTERM (15) which requests graceful termination, allowing cleanup. SIGKILL (9) forces immediate termination but doesn't allow cleanup. Processes can ignore or handle signals. Understanding process signals is important for system administration questions.
Answer: Lithium-ion battery
Lithium-ion batteries offer high energy density, long cycle life, and declining costs, making them ideal for residential solar storage. Lead-acid is cheaper but heavier with shorter lifespan. Flow batteries suit grid-scale storage. India's PLI scheme promotes domestic Li-ion cell manufacturing for energy transition.
Answer: Digital Personal Data Protection
DPDP Act 2023 establishes framework for processing digital personal data, defining rights of data principals and obligations of data fiduciaries. Replaces Section 43A of IT Act 2000. Aligns with global standards while addressing India-specific needs. Critical for compliance questions in banking and UPSC exams.
Answer: Preorder
Preorder traversal: Root → Left Subtree → Right Subtree. Inorder: Left → Root → Right (gives sorted order for BST). Postorder: Left → Right → Root. Level-order uses queue for breadth-first traversal. Tree traversals are frequently tested in SSC JE and programming exams.
Answer: False
JavaScript was designed for client-side execution in web browsers to enable interactive web pages. Server-side JavaScript (Node.js) is possible but not the primary use case. Understanding client-server architecture is fundamental for web technology questions in SSC and banking exams.
Answer: top
top provides dynamic real-time view of running processes, CPU usage, memory consumption, and system load. ps shows snapshot of processes; free displays memory stats; df shows disk space. Essential for system monitoring and troubleshooting in technical exams and real-world administration.
Answer: FAME
FAME (Faster Adoption and Manufacturing of Electric Vehicles) India scheme provides demand incentives for EVs and charging infrastructure. FAME-II (2019) focuses on electrification of public transport and shared mobility. Part of India's commitment to reduce carbon emissions and achieve net-zero by 2070.
Answer: Section 66C
Section 66C prescribes punishment (up to 3 years imprisonment + fine) for identity theft: fraudulently using another person's electronic signature, password, or unique identification feature. Section 66D covers cheating by personation using computer resources. Important for legal awareness in banking and SSC exams.
Answer: False
A standard BST degenerates to a linked list (O(n) search) if elements are inserted in sorted order. Balanced BSTs (AVL, Red-Black) maintain O(log n) by self-balancing after insertions/deletions. Understanding tree balancing is crucial for algorithm questions in SSC JE and banking IT exams.