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: in-the-loop
Human-in-the-loop (HITL) ensures humans can monitor, override, or intervene in AI decisions, especially in high-stakes domains. Critical for accountability, error correction, and ethical compliance. Complements human-on-the-loop (supervision) and human-out-of-the-loop (full automation for low-risk tasks). Balances automation benefits with human judgment.
Answer: Machine Learning
ML models analyze transaction patterns (amount, location, time, device) to detect anomalies indicating fraud. Techniques: supervised learning (labeled fraud data), unsupervised anomaly detection, and real-time scoring. Used by banks, UPI apps, and payment gateways. Continuous learning adapts to evolving fraud tactics while minimizing false positives.
Answer: True
Beamforming uses antenna arrays to steer radio waves directionally toward users instead of omnidirectional broadcast. Benefits: higher signal-to-noise ratio, extended coverage, reduced interference, and energy efficiency. Critical for mmWave 5G which has limited propagation. Implemented via digital, analog, or hybrid beamforming techniques.
Answer: Transistor
Transistor (BJT or FET) amplifies weak signals by using small input current/voltage to control larger output current. Configurations: common emitter (high gain), common collector (impedance matching). Foundation of audio amplifiers, radio receivers, and sensor interfaces. Operational amplifiers (op-amps) integrate multiple transistors for precision amplification.
Answer: O(1)
Array access by index is O(1) constant time because memory address is calculated directly: base_address + index * element_size. No traversal needed. Contrasts with linked lists (O(n) for access). This efficiency makes arrays ideal for random access patterns, but insertion/deletion in middle is O(n) due to element shifting.
Answer: False
Neo-banks in India are tech-first platforms that partner with licensed banks/NBFCs to offer banking services. RBI does not grant independent banking licenses to neo-banks yet. They focus on UX, analytics, and niche segments while regulated partners handle core banking, compliance, and balance sheet activities. Regulatory evolution ongoing.
Answer: MIMO
MIMO (Multiple Input Multiple Output) uses multiple antennas at transmitter and receiver to send/receive multiple data streams simultaneously over same frequency. Increases spectral efficiency, data rates, and link reliability. Evolution: SU-MIMO (single user) to MU-MIMO (multi-user). Foundational for 4G LTE-Advanced and 5G NR performance.
Answer: Rectifier
Rectifier converts AC to DC using diodes. Types: half-wave (single diode, inefficient), full-wave (center-tapped or bridge, better efficiency). Used in power supplies for electronics, battery chargers, and DC motor drives. Filter capacitors smooth the pulsating DC output. Critical component in virtually all electronic devices powered from mains.
Answer: True
DPDP Act 2023 mandates explicit, informed, and specific consent for processing sensitive personal data (biometrics, health, sexual orientation, etc.). Consent must be withdrawable, and purpose limitation applies. Additional safeguards: data minimization, storage limitation, and enhanced rights for data principals. Critical for AI systems using sensitive data.
Answer: Digital Lending Guidelines 2022
RBI's Digital Lending Guidelines (2022) require: lending only by regulated entities (banks/NBFCs), direct fund flow between lender and borrower (no third-party pools), standardized key fact statements, cooling-off period, and grievance redressal. Aims to protect consumers from predatory apps, data misuse, and unfair recovery practices.
Answer: AND
AND gate outputs 1 (HIGH) only when all inputs are 1. Truth table: 0+0→0, 0+1→0, 1+0→0, 1+1→1. Fundamental for digital circuits, arithmetic units, and control logic. NAND/NOR are universal gates (can implement any Boolean function). XOR outputs 1 when inputs differ; useful for parity checks and adders.
Answer: False
Recursion typically uses MORE memory due to call stack overhead for each recursive call. Risk of stack overflow for deep recursion. Iteration uses constant memory with loops. However, recursion can simplify code for tree/graph problems, divide-and-conquer algorithms. Tail recursion optimization (in some languages) can mitigate memory issues.
Answer: All of these
AI governance in India is multi-stakeholder: NITI Aayog leads strategy (#AIforAll), MeitY handles policy/regulation and DPDP Act, DST funds R&D through NM-ICPS. BIS develops technical standards; CERT-In addresses security. Collaborative approach ensures balanced innovation, ethics, and national interest in AI deployment.
Answer: Account Aggregator
Account Aggregator (AA) ecosystem enables consent-based sharing of financial data between institutions. Users control data sharing via AA apps. FIPs (banks, mutual funds) provide data; FIUs (lenders, wealth apps) consume for personalized services. Reduces documentation, speeds up credit decisions, and promotes competition in financial services.
Answer: DSS
DSS (Dynamic Spectrum Sharing) allows 4G LTE and 5G NR to coexist on same frequency band by dynamically allocating resources based on real-time demand. Enables faster 5G rollout using existing spectrum without refarming. Trade-off: slight capacity reduction vs accelerated coverage. Key for operators transitioning from 4G to 5G.
Answer: do-while
do-while loop checks condition AFTER executing the body, ensuring at least one iteration. Syntax: do { ... } while(condition);. Useful for menu-driven programs, input validation where first attempt is always needed. while/for check condition BEFORE execution, potentially skipping body entirely if condition initially false.
Answer: Fairness
AI Fairness addresses bias in data, algorithms, and outcomes that may disadvantage groups based on race, gender, caste, religion, etc. Techniques: bias detection metrics, debiasing algorithms, diverse training data, and fairness-aware modeling. Critical for ethical deployment in hiring, lending, policing, and public services.
Answer: Penny Drop
Penny Drop verification sends ₹1 to a bank account using account number and IFSC; successful credit confirms account validity and name match. Used for KYC, onboarding, and fraud prevention in fintech. Automated via NPCI's APIs. Faster and more reliable than manual document verification, enhancing user experience and compliance.
Answer: True
VoNR allows native voice service on 5G SA (Standalone) core, eliminating need for EPS Fallback to 4G/VoLTE. Benefits: faster call setup, HD+ voice quality, simultaneous voice+data on 5G, and seamless handover. Requires 5G SA network deployment, compatible devices, and IMS integration. Key milestone in 5G maturity.
Answer: Capacitor
Capacitor stores energy in electric field between two conductive plates separated by dielectric. Measured in Farads. Applications: filtering, timing circuits, power factor correction, energy storage. Inductor stores energy in magnetic field; resistor dissipates energy as heat; transformer transfers energy between circuits via electromagnetic induction.