10 RPSC Programmer Computech
10 RPSC Programmer Computech
COMPUTECH
120 Test Date 01-09-2024
100
100 RPSC Programmer Paper -10
13 (Mock Test Paper – 10)
Do not open this Test Booklet Untile you are asked to do so.
36. The Solution to Silly Window (a) A-1, B-2, C-3 (b) A-2, B-3, C-1
Syndrome problem is/are: (c) A-3, B-1, C-2 (d) A-2, B-1, C-3
A. Nagle‟s Algorithm 40. The direct broadcast address of the
B. Clark‟s Algorithm IP address 205. 18. 136. 187 with
C. Jacobson‟s Algorithm subnet Mask 255.255.255.240 is
D. Piggy backing Algorithm (a) 205.18.136.187 (b) 205.18.255.255
Choose the correct answer from (c) 205.18.136.255 (d) 205.18.136.191
the options given below: 41. Database application were build
(a) A and B only (b) A and C only directly on top of file system to
(c) C and D only (d) B and D only overcome the following drawbacks
37. Match List I with List of conventional file- system
LIST I 1. Data redundancy and inconsistency
A. Dijkstra‟s algorithm 2. Difficulty in accessing data
B. Prim‟s algorithm 3. Data isolation problem
C. Warshall‟s algorithm 4. Concurrent Access Anomalies
D. Kruskal‟s algorithm 5. Cost reduced
List-II (a) 1, 2, 3 only
I. Calculate path matrix (b) 1, 2, 3, 4 only
II. Stores minimum cost edge (c) 2, 3, 4, 5 only
III. Stores the total cost from a (d) 1, 2, 3, 4, 5 only
source mode to the current 42. Isolation of the transaction in
mode database is ensured by ____
IV. Find minimum spaning tree (a) Transaction manager
Choose the correct answer from (b) Application programmer
the options given below: (c) Concurrency control
(a) A-I, B-II, C-III, D-IV (d) Recovery manager
(b) A-III, B-II, C-I, D-IV 43. In Database system indices are
(c) A-II, B-I, C-IV, D-III important for
(d) A-III, B-IV, C-II, D-I (a) Provide a quicker way to store
38. In remote procedure call, the data
client program must be bound with (b) Efficient processing of
a small library procedure called transaction
................... (c) Decrement the amount of disk
(a) Server stub (b) Marshalling space utilized
(c) Client hub (d) Client stub (d) Increase the cost of
39. Match the following implementation
List – I (Packets 44. What is data integrity ?
Source IP Destination IP (a) It is the contained in database
A Data 250.255.255.255 40.40.40.40 that is non redundant
B Data 22.21.23.24 255.255.255.255 (b) It is the data contained in
C Data 24.23.22.21 24.22.25.24 database that is accurate and
List – II consistent
1. Unicast packet within network (c) It is the data contained in
2. This packet never exists database that is secured
3. Limited broadcasting (d) It is the data contained in
Codes: database that is shared
45. Which of these following account Choose the correct answer from
are created automatically when the option given below.
you install Oracle Database and (a) (A)-(III), (B)-(II), (C)-(I), (D)-(IV)
granted the DBA role ? (b) (A)-(IV), (B)-(I), (C)-(II), (D)-(III)
1. SYS: An administrative user (c) (A)-(II), (B)-(III), (C)-(IV), (D)-(I)
account (d) (A)-(IV), (B)-(I), (C)-(III), (D)-(II)
2. SYSBACKUP : The account used 49. Which of the following cannot be
to perform backup and recovery used to modify the data in a
tasks. database
3. SYSTEM: An administrative (a) Update (b) Insert
user account (c) Delete (d) Drop
(a) 1 and 2 only (b) 1 and 3 only 50. Which one of the following
(c) 2 and 3 only (d) 1, 2 and 3 only statements is NOT correct about
46. Consider the following valid the B* tree data structure used for
Database users authentication by creating an index of a relation
Oracle database table?
1. Authentication by the (a) Each leaf node has a pointer to
Operating System the next leaf node
2. Authentication by the Network (b) Non-leaf nodes have pointers to
using SSL data records
3. Authentication Using Third- (c) B* Tree is a height-balanced tree
Party Services like- PKI, (d) Key values in each node are kept
RADIUS is sorted order
4. Password authentication in 51. A related database contains two
database table Student and Performance as
Choose the correct one or more shown below:
statement in given below ?
(a) 1, 2 and 4 only (b) 1 and 4 only
(c) 4 only (d) 1, 2, 3 and 4 only
47. Which of the following is a
compare operator in SQL ?
(a) != (b) Like
(c)Not In (d) all of the above The primary key of the Student
48. Match List-I with List-II table is Roll_no. For the
List – I List II Performance table, the columns
(A) BCNF iff (i) every ID is implied Roll_no and Subject_code together
by the candidate keys from the primary key. Consiquery
(B) 5 NF iff (ii) all underlying given below:
domains contain SELECT S.Student_name, sum
scalar values only (P.Mark)
(C) 1 NF iff (iii) every MVD is FROM Student S, Performance P
implied by the Where P.Marks > 84
candidate keys GROUP BY S.Student_name;
(D) 4 NF iff (IV) every FD is The number of rows returned by
implied by the the above SQL query is ___
candidate keys (a) 0 (b) 9
(c) 7 (d) 5
60. Which –one of the following 64. Which of the following is not a
statement about normal forms is built in aggregate function in SQL?
FALSE? (a) Avg (b) Max
(a) BCNF is stricter than 3NF (c) Total (d) Count
65. Observe the given SQL query and
(b) Loss less, dependency-preserving
choose the correct option.
decomposition into 3NF is always
SELECT branch_name, COUNT
possible
(DISTINCT customer_name)
(c) Loss less, dependency-preserving FROM depositor, account
decomposition into BCNF is WHERE depositor.account_number
always possible = account.account_number
(d) Any relation with two attributes in GROUP BY branch_id
BCNF (a) The query is syntactically correct
61. A given relation is known to be in but gives the wrong answer
third normal from. Select the (b) The query is syntactically wrong
statement which can be inferred (c) The query is syntactically correct
from this. and gives the correct answer
(d) The query contains one or more
(a) All attributes contribute to the wrongly named clauses.
primary key 66. Choose the correct command to
(b) Each non-key attribute determine delete an attribute A from a
the primary key relation R
(c) Each non-key attribute is (a) alter table R delete A
determine by the primary key (b) alter table R drop A
(c) alter table drop A from R
(d) Every determinant is a candidate
(d) delete A from R
key
67. create table apartment(ownerID
62. In the following, T1 and T2 are varchar (5), ownername
transactions and A is an object. varchar(25), floor numeric(4,0),
Which of the following has the primary key (ownerID));
potential of making T2 Choose the correct option
irrecoverable? regarding the above statement
(a) T2 writes A after T1 wrote A; T1 is (a) The statement is syntactically
uncommitted wrong
(b) T2 reads A after T1 wrote A; T1 is (b) It creates a relation with three
uncommitted attributes ownerID, ownername,
floor in which floor cannot be
(c) T2 write A after T1 wrote A; T1 is null.
committed (c) It creates a relation with three
(d) T2 reads A after T1 read A; T1 is attributes ownerID, ownername,
uncommitted floor in which ownerID cannot be
63. Amongest the ACID properties of a null.
transaction, the „Durability‟ (d) It creates a relation with three
property requires that the changes attributes ownerID, ownername,
made to the database by a floor in which ownername must
successful transaction persist. consist of at least 25 characters.
68. What does the following query do?
(a) Except in case of an Operating
select name, ID, branch
System crash
from student, department
(b) Except in case of a Disk crash where student.branch =
(c) Except in case of a power failure department.branch;
(d) Always, even if there is a failure of
any kind
(a) It gives all values of name, ID, 74. ____ means that the data used
branch from both the relations during the execution of a
only if all those attributes are transaction cannot be used by a
second transaction until the first
present in both
one is completed.
(b) It gives all values of name, ID, (a) Consistency (b) Atomicity
branch from their respective (c) Durability (d) Isolation
relations 75. The type of data organization
(c) It gives the values of name, ID, which does not allow cross block
branch from their respective boundaries is called
relations where the values in the (a) unspanned organization
branch attribute are same (b) spanned organization
(d) It gives the values of name, ID, (c) factor organization
branch from their respective (d) indexed organization
relations where all the values are 76. If B is an attribute and A→B, Then
matching with each other B is said to be ________ by a.
69. The type of data in SQL which (a) Logically implied
includes TIME and DATE fields (b) Functionally implied
plus six positions for other decimal (c) Logically determined
fractions is classified as (d) Functionally determined
(a) Timestamp 77. Fifth Normal form is concerned
(b) interval stamp with
(c) Boolean stamp (a) Functional dependency
(d) literal string stamp (b) Multivalued dependency
(c) Join dependency
70. The data type DATE consists of ten
(d) Domain-key
positions where as the data type 78. What are the desirable properties
TIME consists of of a decomposition ?
(a) four positions (b) five positions (a) Partition constraint
(c) eight positions (d) ten positions (b) Dependency preservation
71. Which of the following database (c) Redundancy
model. We have a parent-child (d) Security
relationship? 79. The join operations that do not
A. Hierarchical databases retain mismatched tuples are
B. Network databases called as _________ operations
C. Relational databases (a) outer join (b) natural join
Choses the correct answer from
the options below: (c) full outer join (d) inner join
(a) A, B (b) A, C (c) B, C (d) A, B, C 80. Consider the following statement
72. A transaction that has not been about PL/SQL
completed successfully is called as 1. Triggers
_______ 2. Packages
(a) Compensating transaction
(b) Aborted transaction 3. Functions
(c) Active transaction Which of the following is/are a part
(d) Partially committed transaction of PL/SQL
73. Which of the following has “all-or- (a) 1 and 2 only (b) 2 and 3 only
none” property ?
(c) 1 and 3 only (d) 1, 2 and 3 only
(a) Atomicity
(b) Durability 81. प्रथम आधु ननक ओलंनिक खेल ं की मेजबानी
(c) Isolation नकस शहर ने की थी?
(d) All of the mentioned
(a) पेररस (b) एथें स 90. सूिी- I क सूिी - II से सुमेनलत करते हुए सही
(c) लंदन (d) रोम कूि का ियन कीनजए-
82. राजस्थान में "अबू झ सावा" नकस नदन मनाते
हैं ?
(a) गणगौर (b) बसंत पंचमी
(c) कार्तिक पूर्णिमा (d) आखा तीज
83. नित्तौड़गढ़ के 'नवजय स्तंभ' िर िहला स्मारक
डाक निकि नकस वर्ष जारी नकया गया था?
(a) (A)-(i), (B)-(ii), (C)-(ii), (D)-(iv)
(a) 1949 (b) 1056
(b) (A)-(iv), (B)-(ii), (C)-(iii), (D)-(i)
(c) 1974 (d) 1086
(c) (A)-(ii), (B)-(iii), (C)-(iv), (D)-(i)
84. 'गीतांजनल' िु स्तक के लेखक कौन हैं ?
(d) (A)-(iv), (B)-(iii), (C)-(ii), (D)-(i)
(a) र्िक्रम सेठ (b) रर्िंद्रनाथ टै गोर
(91-93) ननदे श: ननम्ननलखखत जानकारी का
(c) हररिंशराय बच्चन (d) गंगा दास
ध्यानिूवषक अध्ययन करें और आगे नदए गए
85. ओलंनिक खेल ं में िहली बार मनहलाओं की
प्रश् ं के उत्तर दें ।
प्रनतय नगताएं नकस वर्ष शानमल की गईं?
नीिे दी गई जानकारी तीन अलग-अलग
(a) 1900 (b) 1920
िरीक्षाओं A, B और C में उिखस्थत छात्र ं की
(c) 1960 (d) 1984
संख्या के संबंध में है िार अलग-अलग वर्ों
86. हाल ही में केंद्रीय नवत्त मंत्री ननमषला सीतारमण
2015, 2016, 2017 और 2018 में।
ने राजस्थान के नकस शहर में नए जीएसिी
2015 में:
भवन का उद् घािन नकया है ?
िरीक्षा A में उिखस्थत नवद्यानथषय ं की संख्या
(a) जयपुर (b) बीकाने र
िरीक्षा B में उिखस्थत नवद्यानथषय ं की तुलना में
(c) जोधपुर (d) उदयपुर
द गु नी थी। तीन िरीक्षाओं में सखिनलत
87. स्वनिल कुसाले ने हाल ही में िे ररस ओलंनिक
नवद्यानथषय ं की कुल संख्या 1640 थी। िरीक्षा B
2024 में नकस खेल प्रनतय नगता में कांस्य िदक
में उिखस्थत नवद्यानथषय ं की संख्या िरीक्षा C में
जीता?
उिखस्थत नवद्यानथषय ं की तुलना में 40 अनधक
(a) शू र्टं ग (b)मु क्केबाजी
थी।
(c) कुश्ती` (d)बैडर्मं टन
2016 में:
88. हाल ही में खबर ं में रहा 'INS SHALKI' क्या
िरीक्षा B में उिखस्थत छात्र ं की संख्या िरीक्षा
है ?
(a) Diesel Electric Submarine A में उिखस्थत छात्र ं की तुलना में 40% अनधक
(b)Aircraft carrier (c)Stealth Destroyer थी, जबनक िरीक्षा C में उिखस्थत छात्र ं की
(d) Recovery vessel संख्या िरीक्षा B में उिखस्थत छात्र ं की तुलना
89. ननम्ननलखखत में से नकसने सल्तनत काल के द में 20% अनधक थी। तीन ं िरीक्षाओं में
बु ननयादी नसक्के (िांदी का िं का और तांबे का नमलाकर कुल छात्र 2448 थे।
जीतल) जारी नकए? 2017 में:
(a) अलाउद्दीन खखलजी (b) इल्तु तर्मश िरीक्षा A और िरीक्षा B में उिखस्थत छात्र ं का
(c) इब्राहीम लोदी (d) कुतुबुद्दीन ऐबक अनुिात 7:9 था। िरीक्षा C में उिखस्थत छात्र ं
की संख्या िरीक्षा B में उिखस्थत छात्र ं की
तुलना में 25% अनधक थी। तीन ं िरीक्षाओं में
कुल नमलाकर 2180 छात्र उिखस्थत हुए।
िरीक्षाओं में सफलता प्राि्त की, जबनक 2018 99. नदए गए कथन ं क सत्य मानें और ननणषय लें
नक कौन सा ननष्कर्ष तानकषक रूि से कथन ं
में इसका प्रनतशत 20%, 10% और 40% था।
का अनु सरण करता है ।
इन द वर्ों में नकतने छात्र ं ने तीन ं िरीक्षाएं
कथन: क ई भी लड़की कूद नही ं सकती। कुछ
उत्तीणष की ं?
लड़नकयााँ तैराक हैं
(a) 750 (b) 780
ननष्कर्ष I: िु रुर् तैराक कूद सकते हैं ।
(c) 840 (d) 860
ननष्कर्ष II: कुछ तैराक कूद सकते हैं ।
94. Insect, 'Entomology' से उसी प्रकार
(a) न तो 1 और न ही 2 अनु सरण करता है
संबंनधत है नजस प्रकार
'Fungi',_____________से संबंनधत है ? (b) केिल र्नष्कर्ि 1 अनु सरण करता है
(a) फाइकोलॉजी (b) साइटोलॉजी (c) 1 और 2 दोनों अनु सरण करते हैं
(c) िायरोलॉजी (d) माइकोलॉजी (d) केिल र्नष्कर्ि 2 अनु सरण करता है
95. ननम्ननलखखत प्रश् में, वह नवकल्प ज्ञात कीनजए 100. एक नननित क ड में, TOUCH क 68 नलखा
ज प्रश् निह्न का स्थान लेगा। जाता है । उस क ड में ERROR कैसे नलखा
Pediatricians: Children :: Podiatrists:? जाएगा?
(a) Ankle (b) Intestine (a) 61 (b) 54
(c) Uterus (d) Liver (c) 59 (d) 55