Computer GK Practice Question and Answer
8 Q: What is the maximum length of file name in DOS?
1285 063e4df442cab94e8399f17fa
63e4df442cab94e8399f17fa- 14false
- 25false
- 38true
- 412false
- Show AnswerHide Answer
- Workspace
- SingleChoice
Answer : 3. "8"
Q: What is virus that spreads in computer?
1268 063ecd3090fa4111f87e15c9e
63ecd3090fa4111f87e15c9e- 1It is hardwarefalse
- 2It is a computer programtrue
- 3It is system softwarefalse
- 4It is a windows toolfalse
- Show AnswerHide Answer
- Workspace
- SingleChoice
Answer : 2. "It is a computer program"
Explanation :
a virus that spreads in a computer is a type of malicious computer program. Computer viruses are software programs designed to replicate themselves and spread from one computer to another. They can attach themselves to legitimate programs or documents, and when the infected program or document is executed, the virus activates and starts spreading to other files and systems. Viruses can cause various harmful effects, such as corrupting or deleting files, stealing sensitive information, or disrupting computer operations. Antivirus software and best practices, such as avoiding suspicious downloads and email attachments, are used to protect computers from these malicious programs.
Q: Which of the following is not an OS?
1267 063eccaa335d86258ec99eed4
63eccaa335d86258ec99eed4- 1DOSfalse
- 2MUStrue
- 3UNIXfalse
- 4None of the abovefalse
- Show AnswerHide Answer
- Workspace
- SingleChoice
Answer : 2. "MUS"
Explanation :
"MUS" is not a recognized operating system abbreviation in common use. Operating systems are software programs that manage computer hardware and provide services for computer programs. Examples of well-known operating systems include Windows, macOS, Linux, and Unix. "MUS" does not correspond to any widely used operating system.
Q: What is a drone?
1265 064ba607f2dc867f593074918
64ba607f2dc867f593074918- 1An unmanned aerial vehicletrue
- 2Wi-Fi technologyfalse
- 3Web browserfalse
- 4Wireless chargerfalse
- Show AnswerHide Answer
- Workspace
- SingleChoice
Answer : 1. "An unmanned aerial vehicle"
Explanation :
1. In technical language, the drone is an unmanned aircraft. These drones are formally known as Unmanned Aerial Vehicles (UAVs) or Unmanned Aircraft Systems (UASs). Drones are flying robots that are controlled via remote or fly automatically through software-controlled flight plans, which are embedded systems that work with the help of sensors and GPS.
Q: What are the monitors that display the output as an adjustment of RGB radiation?
1261 063ecc0d10fa4111f87e11f9f
63ecc0d10fa4111f87e11f9f- 1monochrome monitorfalse
- 2color monitortrue
- 3gray-scale monitorfalse
- 4flat panel monitorfalse
- Show AnswerHide Answer
- Workspace
- SingleChoice
Answer : 2. "color monitor"
Explanation :
a color monitor is a type of display that can adjust and display output by manipulating the Red, Green, and Blue (RGB) radiation. In a color monitor, pixels are made up of red, green, and blue sub-pixels, and by varying the intensity of these colors, a wide range of colors can be displayed on the screen. Adjusting the intensity of RGB radiation allows the monitor to display different colors and shades, providing a full spectrum of colors to the viewer. This technology is commonly used in computer monitors, television screens, and other displays to produce vibrant and accurate color representations.
Q: What is it called when more than one if-statement is used together?
1257 063ede4ad7312b71d33e25815
63ede4ad7312b71d33e25815- 1if-else statementfalse
- 2nested statementtrue
- 3more if statementsfalse
- 4None of the abovefalse
- Show AnswerHide Answer
- Workspace
- SingleChoice
Answer : 2. "nested statement"
Explanation :
Certainly! A nested if statement refers to an if statement that is placed inside another if statement or other control structures. It allows for more specific conditions and complex decision-making in a program. The inner if statement is only executed if the outer if statement's condition is true.
Q: Which components are used in LAN for Ethernet?
1255 063edff5de6cd351b7500c59c
63edff5de6cd351b7500c59c- 1COAXfalse
- 2Fiberfalse
- 3STPfalse
- 4All of the abovetrue
- Show AnswerHide Answer
- Workspace
- SingleChoice
Answer : 4. "All of the above"
Explanation :
All three components—COAX (coaxial cables), Fiber (optical fiber cables), and STP (shielded twisted pair cables)—can be used in LANs for Ethernet connectivity, depending on specific network requirements and conditions. Different types of Ethernet cables, including coaxial, fiber optic, and shielded twisted pair, are used based on factors such as data transfer speed, distance, and susceptibility to electromagnetic interference.
Q: What is the difference between do-while and while condition?
1250 063e62b5c7407bd1b2d1dd823
63e62b5c7407bd1b2d1dd823- 1In do-while, a semicolon is used after the condition.false
- 2Semicolon is not used in Whilefalse
- 3While statement is after the conditionfalse
- 4none of the abovetrue
- Show AnswerHide Answer
- Workspace
- SingleChoice
Answer : 4. "none of the above"
Explanation :
The key difference lies in when the loop condition is checked. In the while loop, the condition is checked before the first iteration, potentially resulting in zero iterations. In the do-while loop, the condition is checked after the first iteration, ensuring that the loop body is executed at least once.

