Computer Knowledge Practice Question and Answer
8 Q: Which of the following option enables to select more than one slide in the presentation?
1265 061ced9797d37a335232b1cd6
61ced9797d37a335232b1cd6- 1Alt + Click on each slidetrue
- 2Shift + Drag each slidefalse
- 3Shift + Click on each slidefalse
- 4Ctrl + Click on each slidefalse
- Show AnswerHide Answer
- Workspace
- SingleChoice
Answer : 1. "Alt + Click on each slide"
Q: E-commerce stands for___.
1262 060a21c693c86b05632612ba7
60a21c693c86b05632612ba7- 1Educational Commercefalse
- 2Electronic Commercetrue
- 3Electrical Commercefalse
- 4Engineering Commercefalse
- Show AnswerHide Answer
- Workspace
- SingleChoice
Answer : 2. "Electronic Commerce "
Q: Which is not a feature of software technology?
1261 063a992a05770eb565d476f0d
63a992a05770eb565d476f0d- 1It is soft technical approach.false
- 2It is also called instructional technology.false
- 3It is called Educational Technology First.true
- 4Its main basis is psychology.false
- Show AnswerHide Answer
- Workspace
- SingleChoice
Answer : 3. "It is called Educational Technology First."
Q: A 32 bit microprocessor has the word length equal to
1258 060b890ccaea2402e59c203b0
60b890ccaea2402e59c203b0- 12 bytesfalse
- 24 bytestrue
- 31 bytesfalse
- 48 bytesfalse
- Show AnswerHide Answer
- Workspace
- SingleChoice
Answer : 2. "4 bytes"
Q: What is it called when more than one if-statement is used together?
1258 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: Displays details about the chart?
1257 061cde5f07d65a306e5689445
61cde5f07d65a306e5689445- 1Data Seriesfalse
- 2Chart Titletrue
- 3Value Axisfalse
- 4Gridlinesfalse
- Show AnswerHide Answer
- Workspace
- SingleChoice
Answer : 2. "Chart Title"
Q: Which components are used in LAN for Ethernet?
1256 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?
1253 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.

