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: 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: 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.
Answer: margin
Margin creates space outside an element's border, separating it from neighboring elements. Padding creates space inside the border (between content and border). Border-spacing applies to table cells. Gap is used in flexbox/grid layouts. Fundamental CSS concept for web development questions.
Answer: chmod
chmod (change mode) modifies file/directory permissions in Linux using symbolic (u+rwx) or octal (755) notation. Permissions control read (r), write (w), and execute (x) access for owner, group, and others. Critical for system security and frequently tested in technical government exams.
Answer: Photovoltaic
Photovoltaic (PV) cells use semiconductor materials (typically silicon) to convert photons from sunlight directly into electrical current via the photovoltaic effect. Solar thermal uses heat to generate steam for turbines. PV is the technology behind solar panels widely promoted under India's National Solar Mission.
Answer: False
Section 66A was struck down by the Supreme Court in Shreya Singhal v. Union of India (2015) for violating freedom of speech. It criminalized 'offensive' online content but was overly broad. Current IT Act provisions focus on cybercrime, data protection, and intermediary liability. Important for legal awareness in government exams.
Answer: True
Root (superuser) in Linux has UID 0 and bypasses all permission checks, allowing full system control. This power requires careful usage to avoid security risks. Best practice: use sudo for specific administrative tasks instead of logging in as root. Critical concept for system administration questions in technical exams.
Answer: pwd
pwd (print working directory) displays the absolute path of the current directory in Linux/Unix systems. ls lists directory contents, cd changes directory, and dir is a Windows command. Essential for navigation and scripting in command-line environments frequently tested in SSC JE and Railway exams.
Answer: All of these
India's AI ecosystem includes: RAISE summit for global dialogue on ethical AI, Bhashini for inclusive AI in Indian languages, National AI Portal (by MeitY & NASSCOM) for resources and collaboration. Supported by research centers (C3i, T-Hub), industry partnerships, and policy frameworks. Aims to balance innovation with ethics, inclusion, and national interest.
Answer: False
IRDAI regulations require any entity underwriting insurance policies to be a registered insurer or corporate agent. InsurTech startups typically partner with licensed insurers as technology providers, aggregators, or distribution partners. Regulatory sandbox allows testing innovations, but core risk-bearing activities remain with regulated entities to protect policyholders.
Answer: Simultaneous Multiple Round Auction
SMRA (Simultaneous Multiple Round Auction) allows bidders to bid on multiple spectrum lots across bands in multiple rounds, with prices rising based on demand. Used in India's 2G/3G/4G/5G auctions. Promotes price discovery, reduces exposure risk (bidding on complementary blocks), and enhances efficiency vs sequential auctions.
Answer: ->
Arrow operator (->) accesses structure members via pointer: ptr->member equivalent to (*ptr).member. Dot operator (.) is for direct structure variables. Understanding pointer arithmetic and memory layout is crucial for systems programming, embedded development, and technical exams. Common source of segmentation faults if misused.
Answer: True
Algorithmic accountability mandates transparency in AI systems: documenting data sources, model design, testing results, and decision logic. Enables auditing, bias detection, and redressal. Supported by DPDP Act, sectoral guidelines, and global frameworks. Critical for high-stakes AI in finance, healthcare, and governance where decisions impact rights and opportunities.
Answer: AML Transaction Monitoring
AML (Anti-Money Laundering) transaction monitoring uses AI/ML to analyze transactions in real-time, flag suspicious patterns, and generate regulatory reports (STRs). Reduces manual effort, improves detection accuracy, and ensures compliance with RBI/FIU-IND guidelines. Part of broader RegTech suite including KYC automation, risk assessment, and audit trails.
Answer: Wi-Fi
Wi-Fi Offloading redirects mobile data traffic from cellular networks to Wi-Fi hotspots to reduce congestion and improve user experience. Implemented via ANDSF (Access Network Discovery and Selection Function) in 4G/5G. Benefits: cost savings for users/operators, better indoor coverage. Requires seamless authentication and handover mechanisms.
Answer: Both B and C
Thevenin's Theorem: any linear circuit = voltage source (Vth) + series resistance (Rth). Norton's Theorem: equivalent = current source (In) + parallel resistance (Rn). They are duals; conversion: Vth = In × Rn. Essential for circuit analysis, load matching, and troubleshooting. Applicable to AC circuits using impedance.
Answer: OECD AI Principles
OECD AI Principles (2019) provide values-based guidelines for trustworthy AI: inclusive growth, human-centered values, transparency, robustness, and accountability. Adopted by 40+ countries including India. Influences national policies, corporate governance, and international cooperation on AI. Complements technical standards from ISO/IEC and IEEE.
Answer: Common
Common Wallet framework (proposed by RBI) aims to enable interoperability among PPIs (wallets) so users can transact across different wallet providers seamlessly. Similar to UPI's interoperability for bank accounts. Would enhance competition, user choice, and financial inclusion. Implementation details and timeline under regulatory consultation.
Answer: True
Zener diode operates in reverse breakdown region to maintain constant voltage across load despite input variations or load changes. Used in voltage regulators, reference circuits, and overvoltage protection. Key parameter: Zener voltage (Vz). Different from regular diodes which block reverse current until breakdown (which may damage them).
Answer: Bubble Sort
Bubble Sort with optimization (stop if no swaps in a pass) achieves O(n) best-case for already sorted input. However, average/worst-case remains O(n²). For exams: know trade-offs - Bubble (simple, inefficient), Quick (fast average, worst O(n²)), Merge (stable, O(n log n) always), Heap (in-place, O(n log n)).