Q. In terms of voltage, how does AC differ from DC?
-
A.
AC voltage is constant
-
B.
DC voltage is constant
-
C.
AC voltage varies with time
-
D.
DC voltage varies with time
Solution
AC voltage varies with time, while DC voltage remains constant.
Correct Answer:
C
— AC voltage varies with time
Learn More →
Q. In the context of ASP, what does the term 'server-side scripting' refer to?
-
A.
Code executed on the client machine
-
B.
Code executed on the server before sending to the client
-
C.
Code that runs in the database
-
D.
Code that is compiled into an executable
Solution
Server-side scripting refers to code that is executed on the server before the results are sent to the client, which is a key feature of ASP.
Correct Answer:
B
— Code executed on the server before sending to the client
Learn More →
Q. In the context of concurrency control, what does 'locking' refer to?
-
A.
Preventing data from being accessed by multiple users simultaneously
-
B.
Encrypting data for security
-
C.
Creating backups of the database
-
D.
Indexing data for faster retrieval
Solution
Locking refers to preventing data from being accessed by multiple users simultaneously to maintain data integrity during transactions.
Correct Answer:
A
— Preventing data from being accessed by multiple users simultaneously
Learn More →
Q. In the context of data warehousing, what does ETL stand for?
-
A.
Extract, Transform, Load
-
B.
Evaluate, Test, Launch
-
C.
Execute, Transfer, Log
-
D.
Extract, Transfer, Load
Solution
ETL stands for Extract, Transform, Load, which is the process of moving data from source systems into a data warehouse.
Correct Answer:
A
— Extract, Transform, Load
Learn More →
Q. In the context of database design, what does 'denormalization' refer to?
-
A.
The process of reducing redundancy
-
B.
The process of increasing redundancy for performance
-
C.
The process of normalizing data
-
D.
The process of creating indexes
Solution
Denormalization refers to the process of increasing redundancy in a database to improve performance, often at the cost of data integrity.
Correct Answer:
B
— The process of increasing redundancy for performance
Learn More →
Q. In the context of DBMS architecture, what does 'three-tier architecture' refer to?
-
A.
Data, Application, Presentation
-
B.
Client, Server, Database
-
C.
User, Application, Database
-
D.
Data, Logic, User Interface
Solution
Three-tier architecture in DBMS refers to the separation of data, application logic, and presentation layers into three distinct tiers.
Correct Answer:
A
— Data, Application, Presentation
Learn More →
Q. In the context of DBMS architecture, what does the term 'data independence' mean?
-
A.
Data can be accessed without a database
-
B.
Changes to the data structure do not affect application programs
-
C.
Data is stored in a single location
-
D.
Data can be easily replicated
Solution
Data independence means that changes to the data structure do not require changes to application programs that access the data.
Correct Answer:
B
— Changes to the data structure do not affect application programs
Learn More →
Q. In the context of DBMS architecture, what does the term 'physical data independence' mean?
-
A.
Changes to the physical storage do not affect the logical schema
-
B.
Changes to the logical schema do not affect the physical storage
-
C.
Data can be accessed without knowing its physical location
-
D.
Data can be stored in multiple formats
Solution
Physical data independence means that changes to the physical storage of data do not affect the logical schema of the database.
Correct Answer:
A
— Changes to the physical storage do not affect the logical schema
Learn More →
Q. In the context of DBMS architecture, what is a 'client-server' model?
-
A.
A model where all data is stored on the client
-
B.
A model where the server handles all data processing
-
C.
A model where clients and servers share processing tasks
-
D.
A model that does not use a network
Solution
In a client-server model, clients and servers share processing tasks, with clients requesting services and servers providing them.
Correct Answer:
C
— A model where clients and servers share processing tasks
Learn More →
Q. In the context of DBMS architecture, what is a 'data model'?
-
A.
A way to visualize data
-
B.
A structure for organizing data
-
C.
A method for querying data
-
D.
A technique for data encryption
Solution
A data model is a structure for organizing data, defining how data is connected and how it can be accessed.
Correct Answer:
B
— A structure for organizing data
Learn More →
Q. In the context of distributed databases, what does the term 'partitioning' refer to?
-
A.
Dividing data into smaller, manageable pieces
-
B.
Combining multiple databases into one
-
C.
Creating backups of the database
-
D.
Encrypting sensitive data
Solution
Partitioning refers to dividing data into smaller, manageable pieces to improve performance and manageability in distributed databases.
Correct Answer:
A
— Dividing data into smaller, manageable pieces
Learn More →
Q. In the context of distributed databases, what is 'eventual consistency'?
-
A.
All nodes are always consistent
-
B.
Data will become consistent over time
-
C.
Data is never consistent
-
D.
Data is only consistent during transactions
Solution
Eventual consistency means that while data may not be immediately consistent across all nodes, it will become consistent over time.
Correct Answer:
B
— Data will become consistent over time
Learn More →
Q. In the context of DSP, what does FFT stand for?
-
A.
Fast Fourier Transform
-
B.
Frequency Filter Technique
-
C.
Fast Filter Transform
-
D.
Fourier Frequency Transform
Solution
FFT stands for Fast Fourier Transform, which is an efficient algorithm to compute the Discrete Fourier Transform (DFT).
Correct Answer:
A
— Fast Fourier Transform
Learn More →
Q. In the context of DSP, what does the term 'windowing' refer to?
-
A.
The process of filtering a signal
-
B.
The technique of segmenting a signal for analysis
-
C.
The conversion of a signal from analog to digital
-
D.
The adjustment of signal amplitude
Solution
Windowing refers to the technique of segmenting a signal into smaller parts for analysis, often used in FFT applications.
Correct Answer:
B
— The technique of segmenting a signal for analysis
Learn More →
Q. In the context of ER modeling, what does a 'weak entity' depend on?
-
A.
A primary key
-
B.
A strong entity
-
C.
A foreign key
-
D.
A composite key
Solution
A weak entity depends on a strong entity for its existence and does not have a primary key of its own.
Correct Answer:
B
— A strong entity
Learn More →
Q. In the context of ER modeling, what does a 'weak entity' represent?
-
A.
An entity that cannot exist without a strong entity
-
B.
An entity with no attributes
-
C.
An entity that has a composite key
-
D.
An entity that is not related to any other entity
Solution
A weak entity represents an entity that cannot exist without a strong entity, relying on it for its identification.
Correct Answer:
A
— An entity that cannot exist without a strong entity
Learn More →
Q. In the context of ER modeling, what does an 'entity' represent?
-
A.
A relationship between two tables
-
B.
A unique identifier for a record
-
C.
A real-world object or concept
-
D.
A set of attributes
Solution
An 'entity' represents a real-world object or concept in ER modeling.
Correct Answer:
C
— A real-world object or concept
Learn More →
Q. In the context of Object-Oriented Databases, what is 'encapsulation'?
-
A.
Hiding the internal state of an object
-
B.
Creating multiple instances of a class
-
C.
Normalizing data
-
D.
Establishing relationships between tables
Solution
Encapsulation is the concept of hiding the internal state of an object and requiring all interaction to be performed through an object's methods.
Correct Answer:
A
— Hiding the internal state of an object
Learn More →
Q. In the context of transactions, what does ACID stand for?
-
A.
Atomicity, Consistency, Isolation, Durability
-
B.
Atomicity, Concurrency, Integrity, Durability
-
C.
Accuracy, Consistency, Isolation, Durability
-
D.
Atomicity, Consistency, Isolation, Data
Solution
ACID stands for Atomicity, Consistency, Isolation, and Durability, which are the properties that guarantee reliable transactions.
Correct Answer:
A
— Atomicity, Consistency, Isolation, Durability
Learn More →
Q. In the context of XML and ADO.NET, what does the DataSet represent?
-
A.
A single table of data
-
B.
An in-memory representation of data
-
C.
A direct connection to the database
-
D.
A method for data normalization
Solution
The DataSet in ADO.NET represents an in-memory collection of data, which can include multiple tables and relationships.
Correct Answer:
B
— An in-memory representation of data
Learn More →
Q. In the context of XML and ADO.NET, what does the term 'serialization' refer to?
-
A.
Converting XML data into a database format
-
B.
Transforming a DataSet into XML format
-
C.
Storing XML data in a binary format
-
D.
Creating a schema for XML data
Solution
Serialization in this context refers to the process of converting a DataSet or other data structure into XML format for storage or transmission.
Correct Answer:
B
— Transforming a DataSet into XML format
Learn More →
Q. In the TCP/IP model, which layer is responsible for ensuring reliable data transmission?
-
A.
Application Layer
-
B.
Transport Layer
-
C.
Internet Layer
-
D.
Network Access Layer
Solution
The Transport Layer in the TCP/IP model is responsible for ensuring reliable data transmission through protocols like TCP.
Correct Answer:
B
— Transport Layer
Learn More →
Q. In Verilog, which keyword is used to define a module?
-
A.
define
-
B.
module
-
C.
entity
-
D.
architecture
Solution
In Verilog, the keyword 'module' is used to define a module, which is a fundamental building block of the design.
Correct Answer:
B
— module
Learn More →
Q. In Verilog, which operator is used for bitwise AND?
Solution
The '&' operator is used for bitwise AND operations in Verilog.
Correct Answer:
B
— &
Learn More →
Q. In VHDL, which keyword is used to define a new entity?
-
A.
component
-
B.
entity
-
C.
architecture
-
D.
signal
Solution
The keyword 'entity' is used in VHDL to define a new entity, which represents a hardware component.
Correct Answer:
B
— entity
Learn More →
Q. In which application is Direct Current (DC) commonly used?
-
A.
Electric power transmission
-
B.
Battery-powered devices
-
C.
Home appliances
-
D.
Electric motors
Solution
Direct Current (DC) is commonly used in battery-powered devices.
Correct Answer:
B
— Battery-powered devices
Learn More →
Q. In which layer of the OSI model does IP routing operate?
-
A.
Application layer
-
B.
Transport layer
-
C.
Network layer
-
D.
Data link layer
Solution
IP routing operates at the Network layer (Layer 3) of the OSI model.
Correct Answer:
C
— Network layer
Learn More →
Q. In which layer of the OSI model does NAT primarily operate?
-
A.
Application layer
-
B.
Transport layer
-
C.
Network layer
-
D.
Data link layer
Solution
NAT primarily operates at the Network layer (Layer 3) of the OSI model, where it modifies the IP address information in packet headers.
Correct Answer:
C
— Network layer
Learn More →
Q. In which layer of the OSI model does the TCP protocol operate?
-
A.
Application Layer
-
B.
Transport Layer
-
C.
Network Layer
-
D.
Session Layer
Solution
TCP (Transmission Control Protocol) operates at the Transport Layer (Layer 4) of the OSI model.
Correct Answer:
B
— Transport Layer
Learn More →
Q. In which logic family is the output state determined by the input states without any delay?
-
A.
TTL
-
B.
CMOS
-
C.
Static Logic
-
D.
Dynamic Logic
Solution
Static Logic families provide output states that are determined by input states without any delay.
Correct Answer:
C
— Static Logic
Learn More →
Showing 211 to 240 of 1509 (51 Pages)