Subjectwise MCQ
Statewise Prepration
Govt. Examwise MCQ
338 Computer MCQ GK question in English हिन्दी
Are you preparing for SSC and Bank competitive exams? So you must have knowledge of Reasoning, Math as well as computer knowledge. In almost all government jobs examinations, some questions related to computers are asked under GK. Which have their own importance. Here you can check for detailed computer information and computer related questions which are very useful in any government examination. Here, I am providing the Computer GK Quiz Questions for learners who are preparing for competitive exams. In this post, I have updated the most important questions, answers with the latest Computer questions.
HTTP uses which port by default?
Port 80 — standard web traffic.
IP address uniquely identifies:
End device in network communication.
TCP stands for:
Reliable, connection-oriented transport protocol.
OSI model has how many layers?
Seven — layers from physical to application.
A full binary tree of height h has:
Maximum nodes in perfectly balanced tree.
Merge sort’s time complexity is:
Efficient, stable sort.
Which structure uses key-value pairs?
Hash map — fast lookups.
A stack follows which access order?
Last In First Out — push/pop operations.
CSS is used to
Cascading Style Sheets — visual styling.
Which symbol marks the end of a statement in C/C++?
semicolon separates statements.
A nibble is equal to:
4 bits — half a byte.
Unicode’s primary purpose is to:
Universal character encoding for global languages.
In ASCII, what decimal code represents capital ‘A’?
65 — standard character encoding.
Binary “1010” represents the decimal number:
10 — 1×8 + 0×4 + 1×2 + 0×1
The smallest unit of data in computing is called a:
Arithmetic Logic Unit — performs mathematical and logical operations.
What is the main function of an operating system?
Design hardware
Which device is considered the brain of the computer?
CPU — executes instructions and processes data.
In networking, what is the purpose of a “subnet mask”?
A subnet mask identifies the network and host portions of an IP address. It allows efficient routing and management of IP address blocks. Subnetting improves security and performance of networks.
What does “overfitting” mean in machine learning?
Overfitting occurs when a model learns training data too well, including noise and outliers. It fails to generalize to new data. Techniques like cross-validation and regularization are used to prevent it.
What does “virtual memory” refer to?
Virtual memory allows a computer to compensate for shortages of physical memory by using disk space. This helps run larger applications by extending RAM virtually. It slows down performance compared to real RAM.
Which logic gate returns false only when all inputs are true?
NAND (Not AND) returns false only if all inputs are true. It is considered a universal gate because all logical operations can be built using only NAND gates. It’s essential in hardware design.
What does the term "deadlock" refer to in operating systems?
A deadlock occurs when processes wait indefinitely for resources held by each other. This creates a circular dependency, halting progress. Operating systems use algorithms to prevent or detect deadlocks.
Which of the following is NOT a functional programming language?
Pascal is a procedural programming language and not designed for functional programming paradigms. In contrast, Haskell and Scala are purely or partly functional. Python supports functional features but isn’t a functional language by design.
Which computer architecture uses a single bus for instructions and data?
von Neumann architecture stores both data and program instructions in the same memory. This design is simple but suffers from the "von Neumann bottleneck." It's used in most general-purpose computers.
What is the full form of JSON?
JSON is a lightweight data interchange format based on JavaScript syntax. It's widely used in web APIs and data transmission. It is human-readable and easy to parse by machines.
17. In Python, what will print(0.1 + 0.2 == 0.3) output?
Due to floating-point precision errors, 0.1 + 0.2 results in a value slightly more than 0.3. Thus, the equality test returns False. This is a classic floating-point arithmetic caveat in computing.
Which scheduling algorithm is used in real-time operating systems?
Rate Monotonic Scheduling is a priority-based real-time algorithm where shorter cycles get higher priority. It ensures predictable task execution. It's commonly used in embedded and control systems.
In Big Data, what does the “4 Vs” stand for?
Big Data is defined by its high Volume (data size), Velocity (speed), Variety (types), and Veracity (uncertainty). These characteristics pose challenges for traditional data processing. The 4 Vs guide the design of scalable data systems.