Tech Quiz Questions and Answers PDF
Document Details

Uploaded by SelectiveDatePalm2015
Jose Rizal Memorial State University
Tags
Related
- 3rd Grade Preparatory Computer and Information Technology Past Paper (2017/2018) PDF
- Paradigms & Computer Programming Foundation Exam Paper - 2024 - PDF
- Core Computer Science_C1-13-70 PDF
- Икт рк1+рк2 (копия) 2.docx PDF
- KIT-Kalaignarkarunanidhi Institute of Technology C Programming Past Paper PDF
- Computer Science and IT PDF - Amity University
Summary
This document is a tech quiz covering general computer and software technology, programming concepts, networking, and emerging technologies. The questions provide concise answers, suitable for learning and testing the understanding of software development, and computer science principles. The document also includes questions on data science and analytics.
Full Transcript
### **Tech Quiz Bee Questions and Answers** #### **General Technology** 1. **What does CPU stand for?** Answer: Central Processing Unit. 2. **Who is known as the father of computers?** Answer: Charles Babbage. 3. **What is the binary system in computing?** Answer: A number system...
### **Tech Quiz Bee Questions and Answers** #### **General Technology** 1. **What does CPU stand for?** Answer: Central Processing Unit. 2. **Who is known as the father of computers?** Answer: Charles Babbage. 3. **What is the binary system in computing?** Answer: A number system that uses only 0 and 1. 4. **What does RAM stand for?** Answer: Random Access Memory. 5. **What is the primary function of a GPU?** Answer: To handle graphics rendering. 6. **What does HTML stand for?** Answer: HyperText Markup Language. 7. **What is the full form of URL?** Answer: Uniform Resource Locator. 8. **What is the purpose of an operating system?** Answer: To manage hardware and software resources. 9. **What is the most widely used operating system in the world?** Answer: Windows. 10. **What does IoT stand for?** Answer: Internet of Things. 11. **What is the difference between hardware and software?** Answer: Hardware is physical; software is a set of instructions. 12. **What is cloud computing?** Answer: Storing and accessing data over the internet instead of local storage. 13. **What is the full form of VPN?** Answer: Virtual Private Network. 14. **What is the purpose of a firewall?** Answer: To block unauthorized access to a network. 15. **What is the difference between HTTP and HTTPS?** Answer: HTTPS is secure (encrypted), while HTTP is not. 16. **What is a cookie in web browsing?** Answer: A small file stored on a user’s device to track information. 17. **What is the full form of PDF?** Answer: Portable Document Format. 18. **What is the purpose of a compiler?** Answer: To convert high-level code into machine code. 19. **What is the difference between a compiler and an interpreter?** Answer: A compiler converts the entire program at once, while an interpreter does it line by line. 20. **What is the full form of SQL?** Answer: Structured Query Language. #### **Programming and Coding** 21. **What is the most popular programming language as of 2023?** Answer: Python. 22. **What does IDE stand for?** Answer: Integrated Development Environment. 23. **What is the difference between Python 2 and Python 3?** Answer: Python 3 is the newer version with better features and syntax. 24. **What is a loop in programming?** Answer: A structure that repeats a block of code. 25. **What is the purpose of a function in programming?** Answer: To reuse code and perform specific tasks. 26. **What is object-oriented programming (OOP)?** Answer: A programming paradigm based on objects and classes. 27. **What are the four pillars of OOP?** Answer: Encapsulation, Abstraction, Inheritance, and Polymorphism. 28. **What is the difference between Java and JavaScript?** Answer: Java is a compiled language, while JavaScript is a scripting language. 29. **What is a variable in programming?** Answer: A container for storing data. 30. **What is the difference between “==” and “===” in JavaScript?** Answer: “==” checks value equality, while “===” checks value and type equality. 31. **What is recursion in programming?** Answer: A function calling itself. 32. **What is the purpose of Git?** Answer: Version control for tracking code changes. 33. **What is the difference between “git pull” and “git fetch”?** Answer: “git pull” updates the local repository, while “git fetch” only downloads changes. 34. **What is a framework in programming?** Answer: A pre-built structure for developing applications. 35. **What is the difference between frontend and backend development?** Answer: Frontend deals with the user interface, while backend deals with server-side logic. 36. **What is the purpose of an API?** Answer: To allow communication between different software systems. 37. **What is the difference between a library and a framework?** Answer: A library is a collection of functions, while a framework provides a structure for development. 38. **What is the full form of JSON?** Answer: JavaScript Object Notation. 39. **What is the difference between SQL and NoSQL databases?** Answer: SQL databases are relational, while NoSQL databases are non-relational. 40. **What is the purpose of Docker?** Answer: To containerize applications for easy deployment. #### **Networking and Internet** 41. **What is an IP address?** Answer: A unique identifier for devices on a network. 42. **What is the difference between IPv4 and IPv6?** Answer: IPv4 uses 32-bit addresses, while IPv6 uses 128-bit addresses. 43. **What is DNS?** Answer: Domain Name System, which translates domain names to IP addresses. 44. **What is the purpose of a router?** Answer: To direct data packets between networks. 45. **What is the difference between TCP and UDP?** Answer: TCP is connection-oriented, while UDP is connectionless. 46. **What is a MAC address?** Answer: A unique identifier for network interfaces. 47. **What is the purpose of a subnet mask?** Answer: To divide an IP address into network and host portions. 48. **What is the difference between a hub and a switch?** Answer: A hub broadcasts data to all devices, while a switch sends data to specific devices. 49. **What is the full form of LAN?** Answer: Local Area Network. 50. **What is the purpose of a proxy server?** Answer: To act as an intermediary between a user and the internet. #### **Artificial Intelligence and Machine Learning** 51. **What is AI?** Answer: Artificial Intelligence, the simulation of human intelligence in machines. 52. **What is the difference between AI and ML?** Answer: AI is a broader concept, while ML is a subset of AI focused on learning from data. 53. **What is a neural network?** Answer: A system of algorithms modeled after the human brain. 54. **What is supervised learning?** Answer: A type of ML where the model is trained on labeled data. 55. **What is unsupervised learning?** Answer: A type of ML where the model finds patterns in unlabeled data. 56. **What is reinforcement learning?** Answer: A type of ML where the model learns by trial and error. 57. **What is the purpose of TensorFlow?** Answer: An open-source library for machine learning. 58. **What is overfitting in ML?** Answer: When a model performs well on training data but poorly on new data. 59. **What is the difference between classification and regression?** Answer: Classification predicts categories, while regression predicts continuous values. 60. **What is the full form of NLP?** Answer: Natural Language Processing. #### **Cybersecurity** 61. **What is phishing?** Answer: A cyber attack that uses fake emails or websites to steal information. 62. **What is malware?** Answer: Malicious software designed to harm systems. 63. **What is the difference between encryption and decryption?** Answer: Encryption scrambles data, while decryption unscrambles it. 64. **What is a DDoS attack?** Answer: Distributed Denial of Service, overwhelming a server with traffic. 65. **What is two-factor authentication (2FA)?** Answer: A security method that requires two forms of verification. 66. **What is a zero-day vulnerability?** Answer: A security flaw unknown to the vendor. 67. **What is the purpose of a CAPTCHA?** Answer: To distinguish humans from bots. 68. **What is the difference between symmetric and asymmetric encryption?** Answer: Symmetric uses one key, while asymmetric uses a public-private key pair. 69. **What is a brute force attack?** Answer: A trial-and-error method to crack passwords. 70. **What is the full form of SSL?** Answer: Secure Sockets Layer. #### **Hardware** 71. **What is the purpose of a motherboard?** Answer: To connect all hardware components. 72. **What is the difference between HDD and SSD?** Answer: HDD uses spinning disks, while SSD uses flash memory. 73. **What is a BIOS?** Answer: Basic Input/Output System, firmware for hardware initialization. 74. **What is the purpose of a heat sink?** Answer: To dissipate heat from a CPU or GPU. 75. **What is the difference between USB 2.0 and USB 3.0?** Answer: USB 3.0 is faster than USB 2.0. 76. **What is the full form of HDMI?** Answer: High-Definition Multimedia Interface. 77. **What is the purpose of a power supply unit (PSU)?** Answer: To provide power to the computer. 78. **What is the difference between DDR3 and DDR4 RAM?** Answer: DDR4 is faster and more power-efficient than DDR3. 79. **What is a GPU?** Answer: Graphics Processing Unit, used for rendering images. 80. **What is the purpose of a sound card?** Answer: To process audio data. #### **Mobile Technology** 81. **What is the full form of GSM?** Answer: Global System for Mobile Communications. 82. **What is the difference between iOS and Android?** Answer: iOS is Apple’s OS, while Android is Google’s OS. 83. **What is the purpose of a SIM card?** Answer: To store subscriber information. 84. **What is the full form of NFC?** Answer: Near Field Communication. 85. **What is the difference between 4G and 5G?** Answer: 5G is faster and has lower latency than 4G. 86. **What is the purpose of an accelerometer in smartphones?** Answer: To detect device orientation. 87. **What is the full form of GPS?** Answer: Global Positioning System. 88. **What is the difference between a smartphone and a feature phone?** Answer: Smartphones have advanced computing capabilities. 89. **What is the purpose of a gyroscope in smartphones?** Answer: To measure rotation and orientation. 90. **What is the full form of LTE?** Answer: Long-Term Evolution. #### **Emerging Technologies** 91. **What is blockchain?** Answer: A decentralized digital ledger. 92. **What is the purpose of cryptocurrency?** Answer: To serve as a digital currency. 93. **What is the difference between Bitcoin and Ethereum?** Answer: Bitcoin is a cryptocurrency, while Ethereum is a platform for decentralized apps. 94. **What is quantum computing?** Answer: Computing using quantum bits (qubits). 95. **What is the purpose of AR (Augmented Reality)?** Answer: To overlay digital content on the real world. 96. **What is the difference between AR and VR?** Answer: AR enhances the real world, while VR creates a virtual world. 97. **What is the full form of IoT?** Answer: Internet of Things. 98. **What is the purpose of 3D printing?** Answer: To create physical objects from digital models. 99. **What is the difference between machine learning and deep learning?** Answer: Deep learning is a subset of ML using neural networks. 100. **What is the full form of AI?** Answer: Artificial Intelligence. #### **Software and Applications** 101. **What is the purpose of Microsoft Excel?** Answer: To create spreadsheets and analyze data. 102. **What is the difference between Microsoft Word and Google Docs?** Answer: Word is offline, while Docs is online. 103. **What is the full form of PDF?** Answer: Portable Document Format. 104. **What is the purpose of Adobe Photoshop?** Answer: To edit images. 105. **What is the difference between open-source and proprietary software?** Answer: Open-source is free to modify, while proprietary is owned by a company. 106. **What is the full form of SaaS?** Answer: Software as a Service. 107. **What is the purpose of Slack?** Answer: Team communication and collaboration. 108. **What is the difference between a web app and a mobile app?** Answer: Web apps run in browsers, while mobile apps run on devices. 109. **What is the full form of CRM?** Answer: Customer Relationship Management. 110. **What is the purpose of Zoom?** Answer: Video conferencing. #### **Gaming and Entertainment** 111. **What is the full form of VR?** Answer: Virtual Reality. 112. **What is the purpose of a game engine?** Answer: To develop video games. 113. **What is the difference between Unity and Unreal Engine?** Answer: Unity is easier for beginners, while Unreal is more powerful. 114. **What is the full form of FPS?** Answer: Frames Per Second. 115. **What is the purpose of a GPU in gaming?** Answer: To render graphics. 116. **What is the difference between a console and a PC for gaming?** Answer: Consoles are dedicated gaming devices, while PCs are multipurpose. 117. **What is the full form of DLC?** Answer: Downloadable Content. 118. **What is the purpose of Steam?** Answer: A platform for buying and playing games. 119. **What is the difference between single-player and multiplayer games?** Answer: Single-player is for one person, while multiplayer involves multiple players. 120. **What is the full form of RPG?** Answer: Role-Playing Game. #### **Data Science and Analytics** 121. **What is the purpose of data science?** Answer: To extract insights from data. 122. **What is the difference between data science and data analytics?** Answer: Data science focuses on prediction, while analytics focuses on analysis. 123. **What is the full form of ETL?** Answer: Extract, Transform, Load. 124. **What is the purpose of a data warehouse?** Answer: To store and analyze large datasets. 125. **What is the difference between structured and unstructured data?** Answer: Structured data is organized, while unstructured data is not. 126. **What is the full form of CSV?** Answer: Comma-Separated Values. 127. **What is the purpose of Tableau?** Answer: Data visualization. 128. **What is the difference between a bar chart and a histogram?** Answer: A bar chart compares categories, while a histogram shows distribution. 129. **What is the full form of BI?** Answer: Business Intelligence. 130. **What is the purpose of a pivot table?** Answer: To summarize and analyze data. #### **Operating Systems** 131. **What is the full form of OS?** Answer: Operating System. 132. **What is the purpose of Linux?** Answer: An open-source operating system. 133. **What is the difference between Windows and macOS?** Answer: Windows is developed by Microsoft, while macOS is developed by Apple. 134. **What is the full form of GUI?** Answer: Graphical User Interface. 135. **What is the purpose of a kernel in an OS?** Answer: To manage system resources. 136. **What is the difference between 32-bit and 64-bit OS?** Answer: 64-bit can handle more memory and perform faster. 137. **What is the full form of CLI?** Answer: Command Line Interface. 138. **What is the purpose of Task Manager in Windows?** Answer: To monitor and manage running processes. 139. **What is the difference between a process and a thread?** Answer: A process is an independent program, while a thread is a subset of a process. 140. **What is the full form of BIOS?** Answer: Basic Input/Output System. #### **Web Development** 141. **What is the full form of CSS?** Answer: Cascading Style Sheets. 142. **What is the purpose of JavaScript?** Answer: To add interactivity to web pages. 143. **What is the difference between frontend and backend development?** Answer: Frontend deals with the user interface, while backend deals with server-side logic. 144. **What is the full form of API?** Answer: Application Programming Interface. 145. **What is the purpose of a CDN?** Answer: To deliver content faster by distributing it across servers. 146. **What is the difference between a static and dynamic website?** Answer: Static websites have fixed content, while dynamic websites generate content on the fly. 147. **What is the full form of CMS?** Answer: Content Management System. 148. **What is the purpose of Bootstrap?** Answer: To create responsive web designs. 149. **What is the difference between HTTP and FTP?** Answer: HTTP is for web pages, while FTP is for file transfers. 150. **What is the full form of XML?** Answer: Extensible Markup Language.