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 PageFree practice for SSC, UPSC, Banking & Railway exams. No login required.
Answer: Hashing
Hashing transforms input data of any size into a fixed-length hash value using algorithms like SHA-256 or MD5. It is one-way (irreversible), used for password storage, data integrity verification, and digital signatures. Unlike encryption, hashed data cannot be decrypted to original form.
Answer: 3NF
Third Normal Form (3NF) requires that a table is in 2NF and has no transitive dependencies (non-key attributes depending on other non-key attributes). This reduces redundancy and update anomalies. BCNF is a stricter version of 3NF handling certain edge cases in dependency relationships.
Answer: False
CoWIN is built on a modular, scalable architecture that can be repurposed for other immunization and health programs. The government has indicated plans to adapt CoWIN for routine vaccination drives, demonstrating the value of building flexible digital public infrastructure for healthcare delivery.
Answer: CDMA
CDMA (Code Division Multiple Access) allows multiple users to transmit simultaneously on same frequency by assigning unique spreading codes. Used in 3G networks. FDMA divides frequency, TDMA divides time slots, OFDMA (used in 4G/5G) combines frequency and time division with orthogonal subcarriers.
Answer: False
No antivirus can guarantee 100% detection due to zero-day exploits, polymorphic malware, and advanced persistent threats. Effective security requires layered approach: updated AV, firewall, patches, user awareness, backups, and behavioral analysis. Regular updates improve detection but cannot eliminate all risks.
Answer: BBPS
BBPS (Bharat Bill Payment System) is an integrated bill payment platform by NPCI that enables customers to pay recurring bills (electricity, water, gas, DTH, telecom) through multiple channels (online, bank branches, BCs, CSCs). Offers interoperability, instant confirmation, and grievance redressal.
Answer: Intranet
Intranet is a private network using TCP/IP protocols, accessible only to organization members. It hosts internal websites, documents, and applications. Extranet extends intranet to authorized external users (partners, vendors). Internet is the public global network. Firewalls protect intranets from external threats.
Answer: False
Defragmentation rearranges fragmented files on HDDs to improve read/write speed. However, SSDs have no moving parts and access data electronically, so defragmentation provides no benefit and may reduce SSD lifespan due to unnecessary write cycles. Modern OS automatically disables defrag for SSDs.
Answer: Blockchain
Blockchain is a decentralized, distributed ledger technology where transactions are recorded across multiple nodes, making it tamper-resistant and transparent. Beyond cryptocurrencies, it's used in supply chain, voting, identity management, and smart contracts. Key features: immutability, consensus, cryptography.
Answer: False
Database choice depends on use case. SQL (MySQL, PostgreSQL) excels at structured data, complex queries, and ACID transactions. NoSQL (MongoDB, Cassandra) is better for unstructured data, horizontal scaling, and high-velocity writes. Many systems use both (polyglot persistence) for different needs.
Answer: 1800 MHz
India's 4G LTE services primarily use 1800 MHz (Band 3) and 2300 MHz (Band 40) spectrum. 700 MHz is being rolled out for better rural coverage. 26 GHz and 60 GHz are mmWave bands considered for future 5G enhancements, not current 4G deployments.
Answer: Booting
Booting is the startup sequence when a computer is powered on. BIOS/UEFI performs POST (Power-On Self-Test), locates boot device, loads bootloader, which then loads the OS kernel into RAM. Cold boot = power-on start; warm boot = restart without power cycle.
Answer: False
While Aadhaar is widely used for DBT and service delivery, the Supreme Court has ruled that Aadhaar cannot be made mandatory for all services. It is mandatory for PAN linkage, certain welfare schemes, and telecom verification, but alternatives must be provided for other services as per privacy judgments.
Answer: Using 12+ characters with mix of types
Strong passwords should be at least 12 characters long with uppercase, lowercase, numbers, and special symbols. Avoid personal info, dictionary words, or patterns. Use unique passwords per account and store them in a password manager. Enable two-factor authentication for critical accounts.
Answer: Natural Language
Natural Language Processing (NLP) combines linguistics, computer science, and AI to enable machines to understand, interpret, and generate human language. Applications include chatbots, translation services, sentiment analysis, voice assistants, and automated content summarization.
Answer: IMPS
IMPS (Immediate Payment Service) enables instant interbank electronic fund transfer 24x7 using mobile number + MMID (Mobile Money Identifier) or account number + IFSC. Developed by NPCI, it supports transfers up to ₹5 lakh. NEFT/RTGS have timing restrictions; ECS is for bulk/recurring payments.
Answer: do-while
do-while loop checks the condition AFTER executing the loop body, guaranteeing at least one execution. In contrast, while and for loops check condition BEFORE execution, potentially skipping the body entirely if condition is initially false. Syntax varies by language but logic remains consistent.
Answer: Fingerprint
Authentication factors: 1) Something you know (password/PIN), 2) Something you have (smart card/token), 3) Something you are (biometrics like fingerprint, iris, face). Multi-factor authentication combines two or more factors for enhanced security. Fingerprint is a biometric ('something you are') factor.
Answer: SMTP
SMTP (Simple Mail Transfer Protocol) is used for sending emails from client to server or between mail servers. POP3 and IMAP are used for retrieving emails from server to client. SMTP typically uses port 25 (or 587 for secure submission).
Answer: .exe
.exe (executable) files contain programs that can be run directly by the Windows operating system. Users should be cautious opening .exe files from untrusted sources as they can contain malware. Other extensions: .txt (text), .pdf (document), .jpg (image) are data files, not executables.