Computer Knowledge Practice Question and Answer
8 Q: Which device is designed to send packets using package addresses?
857 063ee0676b0030e718d802957
63ee0676b0030e718d802957- 1Specialty Hubfalse
- 2switching hubtrue
- 3Port Hubfalse
- 4filtering hubfalse
- Show Answer
- Workspace
- SingleChoice
Answer : 2. "switching hub"
Explanation :
A switching hub, also known as a network switch, is designed to send packets using package addresses. A network switch operates at the data link layer of the OSI model and uses MAC addresses to forward data frames to specific devices within a local area network (LAN). Unlike a hub, which simply broadcasts data to all devices in the network, a switch intelligently forwards packets only to the device intended to receive the data, increasing network efficiency and reducing unnecessary network traffic.
Q: Computer language FORTRAN is useful in which field?
1123 062ff6b11047feb079270c5d9
62ff6b11047feb079270c5d9- 1businessfalse
- 2Drawingfalse
- 3Sciencetrue
- 4Commercefalse
- Show Answer
- Workspace
- SingleChoice
Answer : 3. "Science"
Explanation :
FORTRAN (short for "Formula Translation") is a high-level programming language that is particularly well-suited for scientific and engineering applications. It was developed for numeric and scientific computing and is widely used in fields such as physics, engineering, mathematics, and other scientific disciplines. FORTRAN allows for efficient processing of mathematical and scientific computations, making it a popular choice for complex scientific simulations, mathematical modeling, and computational research.
Q: Which is the fastest printer?
1634 062ff8463a6d1894ab156d9aa
62ff8463a6d1894ab156d9aa- 1Laser Printertrue
- 2Jet printerfalse
- 3Thermal Printerfalse
- 4Daisy wheel printerfalse
- Show Answer
- Workspace
- SingleChoice
Answer : 1. "Laser Printer"
Explanation :
Laser printers are generally known for their speed and efficiency, making them one of the fastest types of printers available for everyday office use. They use laser technology to print text and images, which allows for high-speed printing without compromising print quality. Laser printers are especially well-suited for printing large volumes of text documents quickly and are commonly used in office environments where fast and high-quality printing is required.
Q: What is Oracle?
1482 062ff6254a6d1894ab1562ee2
62ff6254a6d1894ab1562ee2- 1an operating systemfalse
- 2word processor softwarefalse
- 3Database softwaretrue
- 4none of thesefalse
- Show Answer
- Workspace
- SingleChoice
Answer : 3. "Database software"
Explanation :
Oracle is a multinational computer technology corporation that specializes in developing and marketing database software and technology, cloud-engineered systems, and enterprise software products. One of its primary offerings is the Oracle Database, which is a widely used relational database management system (RDBMS). Oracle Database is designed to handle large volumes of data and complex transactions, making it popular among enterprises for various applications, including online transaction processing (OLTP), data warehousing, and business intelligence.
Q: What is the computer language COBOL useful for?
1088 062ff6aa9a6d1894ab15654da
62ff6aa9a6d1894ab15654da- 1Professional worktrue
- 2Graphic workfalse
- 3Scientific workfalse
- 4none of thesefalse
- Show Answer
- Workspace
- SingleChoice
Answer : 1. "Professional work"
Explanation :
COBOL (Common Business Oriented Language) is a high-level programming language primarily used for business, finance, and administrative systems within companies and governments. It is particularly useful for handling large-scale, data-centric applications in areas such as accounting, payroll, inventory management, and other business-related tasks. COBOL is known for its readability and ease of use, making it suitable for professionals working on applications that require extensive data processing and business logic. Despite being an older language, COBOL continues to be used in many legacy systems, especially in industries where stability and reliability are paramount.
Q: Which language is called 'foundation stone' for teaching languages like FORTRAN, ALGOL, PASCAL etc.?
1943 062ff67cb8921e519c1480859
62ff67cb8921e519c1480859- 1BASICtrue
- 2COBOLfalse
- 3FORTRANfalse
- 4none of thesefalse
- Show Answer
- Workspace
- SingleChoice
Answer : 1. "BASIC"
Explanation :
The language considered the "foundation stone" for teaching languages like FORTRAN, ALGOL, PASCAL, and many others is ALGOL (Algorithmic Language). ALGOL was a significant early programming language that influenced the design of subsequent programming languages, providing important concepts and structures used in the development of languages like FORTRAN, PASCAL, and C. While BASIC is also a widely used beginner-friendly programming language, ALGOL had a substantial impact on the development of programming language theory and design.
Q: What is the key combination to move down one paragraph in MS PowerPoint?
1087 063ac1725fb04114b2d3ba319
63ac1725fb04114b2d3ba319- 1down arrowfalse
- 2shift+down arrowfalse
- 3ctrl+down arrowtrue
- 4Alt+Down Arrowfalse
- Show Answer
- Workspace
- SingleChoice
Answer : 3. "ctrl+down arrow "
Explanation :
Actually, in MS PowerPoint (and most other word processing applications), the key combination to move down one paragraph is "Enter". Pressing the "Enter" key moves the cursor to the next paragraph. If you want to move the cursor down one line within the same paragraph, you can use the "Down Arrow" key. There isn't a specific default key combination to move down one paragraph in PowerPoint; it's more about using the "Enter" key to start a new paragraph.
Q: Which command is used to remove a table from the database in SQL?
870 063e9ee077312b71d33d794fb
63e9ee077312b71d33d794fb- 1DELETE TABLEfalse
- 2DROP TABLEtrue
- 3ERASE TABLEfalse
- 4UNATTACH TABLEfalse
- Show Answer
- Workspace
- SingleChoice
Answer : 2. "DROP TABLE "
Explanation :
In SQL, the DROP TABLE command is used to remove a table from the database. When you execute DROP TABLE, it deletes the table along with all its data, indexes, triggers, constraints, and permissions. It should be used with caution as it permanently removes the table and all associated objects from the database.