Full Mock Test (Computer Science)
Full Mock Test (Computer Science)
c) Data Breach
d) Data Backup
8. Which of the following is an example of a third-party E-
Commerce platform?
a) Amazon
b) eBay
c) Shopify
d) All of the above
9. In a relational database, what is a primary key?
a) A key used for encrypting data
b) A unique identifier for a table's records
c) A key used for foreign key relationships
d) A key used for sorting data
a) Router
b) Hub
c) Switch
d) Modem
15. Which layer of the OSI model is responsible for routing and
forwarding data packets between different networks?
a) Physical Layer
b) Data Link Layer
c) Network Layer
d) Transport Layer
16. Which of the following is NOT a primary color in the RGB color
model used in multimedia?
A) Red
B) Green
C) Blue
D) Yellow
17. Which multimedia file format supports both lossless and lossy
compression and is commonly used for images with transparency?
A) JPEG
B) PNG
C) MP4
D) WAV
A) TIFF
B) SVG
C) AVI
D) MOV
24. Which instruments are used for perceiving and acting upon the
environment?
a) Sensors and Actuators
b) Sensors
c) Perceiver
d) None of the mentioned
26. Which one of the following error will be handle by the operating
system?
a) power failure
28. The systems which allow only one process execution at a time,
are called __________
a) uniprogramming systems
b) uniprocessing systems
c) unitasking systems
d) none of the mentioned
37. The techniques which move the program blocks to or from the
physical memory is called as ______
a) Paging
b) Virtual memory organisation
c) Overlays
d) Framing
39. The virtual memory basically stores the next segment of data to
be executed on the _________
a) Secondary storage
b) Disks
c) RAM
d) ROM
42. Line Printers that print one line at a time are _________
a) Laser Printers
b) Inkjet Printers
c) Drum Printers
d) Chain Printers
b) A’B+AB’
c) A+B
d) A’B’
47. The Output is LOW if any one of the inputs is HIGH in case of a
_________ gate.
a) NOR
b) NAND
c) OR
d) AND
d) Addition operator
{
char str[] = "Hello World";
cout<<str[0];
return 0;
}
a) H
b) e
c) Error
d) o
b) functions
c) both members & functions
d) classes
d) 0114
b) Context-sensitive language
c) Regular language
d) Recursive language
91. Which normal form eliminates partial dependencies in a
relational database?
a) First Normal Form (1NF)
b) Second Normal Form (2NF)
c) Third Normal Form (3NF)
d) Fourth Normal Form (4NF)
b) PostgreSQL
c) MongoDB
d) Oracle
96. What does "Normalization" refer to in the context of database
design?
a) The process of reducing redundancy and improving data integrity
b) The process of encrypting sensitive data
c) The process of creating backup copies of the database
d) The process of converting data into a different format
97. What is the purpose of a database index?
a) To store large binary objects (BLOBs)
b) To enforce referential integrity constraints
c) To improve the speed of data retrieval by providing a faster access
path to data
d) To manage user access permissions
98. What does ACID stand for in the context of database
transactions?
a) Atomicity, Consistency, Isolation, Durability
b) Authentication, Confidentiality, Integrity, Data
c) Association, Concurrency, Identification, Deployment
d) Aggregation, Conformance, Isolation, Deployment
99. In the given query which of the keyword has to be inserted?
INSERT INTO employee _____ (1002,Joey,2000);
a) Table
b) Values
c) Relation
d) Field
100.
SELECT name ____ instructor name, course id
FROM instructor, teaches
WHERE instructor.ID= teaches.ID;