0% found this document useful (0 votes)
9 views22 pages

RPSC Programmer Topic Wise Test - 2024: Time: 02.00 Hours Questions: 100 Negative:0.33

Uploaded by

renmen001002
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views22 pages

RPSC Programmer Topic Wise Test - 2024: Time: 02.00 Hours Questions: 100 Negative:0.33

Uploaded by

renmen001002
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 22

RPSC PROGRAMMER TOPIC WISE TEST – 2024

test NUMBER -04


Time: 02.00 Hours Questions: 100 Negative:0.33

Q.1 Which of the following is not a characteristic of abstraction?

(A) Data hiding (B) Complexity reduction

(C) Increased security (D) Code reusability

Q.2 Can an abstract method be marked as final in an interface?

(A) Yes (B) No

(C) Sometimes (D) Only if it is marked as static

Q.3 Which of the following statements is true about interfaces?

(A) They can extend classes

(B) They can have instance variables with default values

(C) They can have final methods

(D) They can have synchronized methods

Q.4 What is an interface in Java?

(A) A class that cannot be instantiated

(B) A blueprint for a class

(C) A collection of abstract methods

(D) A class with only private methods

Q.5 Which of the following is a correct way to declare a constant in an interface?

(A) final int CONSTANT = 10;

(B) static final int CONSTANT = 10;

(C) final static int CONSTANT = 10;

(D) Both b and c

Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 01 of 022
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -04
Time: 02.00 Hours Questions: 100 Negative:0.33

Q.6 Which of the following is not a valid inheritance relationship in Java?

(A) Class A extends Class B

(B) Class A implements Interface B

(C) Class A extends Class B and implements Interface C

(D) Class A extends Class B and Class B extends Class A

Q.7 Which method is used to access superclass members from the subclass?

(A) super.methodName() (B) this.methodName()

(C) methodName.super() (D) methodName.this()

Q.8 Which of the following is a compile-time error in Java?


(A) Calling a private method from outside the class.

(B) Overloading methods with the same name but different parameters.

(C) Overriding a final method.

(D) Accessing a protected member from a different package without inheritance.

Q.9 What is encapsulation in Java?


(A) A process of hiding the implementation details and showing only the functionality to the
user
(B) A process of making all methods and variables public
(C) A process of hiding the functionality and showing only the implementation details to the
user
(D) A process of making all methods and variables private

Q.10 Which of the following is an example of encapsulation?

(A) Making all class members public

(B) Making all class members protected

(C) Making all class members private and providing public getter and setter methods

(D) Making all class members static


Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 02 of 022
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -04
Time: 02.00 Hours Questions: 100 Negative:0.33

Q.11 Which of the following is NOT a benefit of encapsulation?

(A) Improved code maintainability (B) Enhanced security

(C) Increased code coupling (D) Better reusability

Q.12 Which statement is used to throw an exception manually in Java?

(A) try (B) catch

(C) throw (D) finally

Q.13 What is the purpose of exception handling in Java?

(A) To ignore errors in the code

(B) To handle unexpected events that occur during the execution of a program

(C) To introduce bugs in the code intentionally

(D) To make the code run faster

Q.14 Which of the following is not a checked exception in Java?

(A) IOException (B) ClassNotFoundException

(C) NullPointerException (D) SQLException

Q.15 Which method is used to get a substring of a string in Java?

(A) sub() (B) getSubstring()

(C) substring() (D) extractSubstring()

Q.16 Which method is used to split a string into an array of substrings based on a delimiter in
Java?

(A) split() (B) divide()

(C) separate() (D) slice()

Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 03 of 022
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -04
Time: 02.00 Hours Questions: 100 Negative:0.33

Q.17 Which method is used to extract a single character from a string at a specified index in
Java?

(A) get() (B) charAt()

(C) extract() (D) read()

Q.18 Which method is used to compare two strings lexicographically in Java?

(A) compare() (B) compareTo()

(C) isEqual() (D) compareWith()

Q.19 Which component of JDK is responsible for running Java applications?

(A) JRE (Java Runtime Environment) (B) JVM (Java Virtual Machine)

(C) JDK (Java Development Kit) (D) Javac (Java Compiler)

Q.20 Given that Student is a class, how many reference variables and objects are created by the
following code?

Student studentName, studentId; studentName = new Student();

Student stud_class = new Student();

(A) Three reference variables and two objects are created.

(B) Two reference variables and two objects are created.

(C) One reference variable and two objects are created.

(D) Three reference variables and three objects are created.

Q.21 What is the return type of the hashCode() method in the Object class?

(A) Object (B) int (C) long (D) void

Q.22 Evaluate the following Java expression, if x=3, y=5, and z=10;
++z + y - y + z + x++
(A) 24 (B) 23 (C) 20 (D) 25

Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 04 of 022
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -04
Time: 02.00 Hours Questions: 100 Negative:0.33

Q.23 Which of the following for loop declaration is not valid?

(A) for ( int i = 99; i >= 0; i / 9 )

(B) for ( int i = 7; i <= 77; i += 7 )

(C) for ( int i = 20; i >= 2; - -i )

(D) for ( int i = 2; i <= 20; i = 2* i )

Q.24 What do you mean by nameless objects?

(A) An object created by using the new keyword.

(B) An object of a superclass created in the subclass.

(C) An object without having any name but having a reference.

(D) An object that has no reference.

Q.25 Which option is false about the final keyword?

(A) A final method cannot be overridden in its subclasses.

(B) A final class cannot be extended.

(C) A final class cannot extend other classes.

(D) A final method can be inherited.

Q.26 Which of these classes are the direct subclasses of the Throwable class?

(A) RuntimeException and Error class

(B) Exception and VirtualMachineError class

(C) Error and Exception class

(D) IOException and VirtualMachineError class

Q.27 Which of the following is a reserved keyword in Java?

(A) object (B) strictfp (C) main (D) system

Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 05 of 022
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -04
Time: 02.00 Hours Questions: 100 Negative:0.33

Q.28 A relation in which every non-key attribute is fully functionally dependent on the primary
key and which has no transitive dependencies is in –

(A) 3NF (B) BCNF (C) 5NF (D) 2NF

Q.29 Given the functional dependencies.

x → w; x → y, y → z and z → pq Which of the following does not hold good?

(A) x → z (B) w → z (C) x → xy (D) None of these

Q.30 The following functional dependencies hold true for the relational schema R{V, W, X, Y,
Z}:

V → W VW → X Y → VX Y → Z

Which of the following is irreducible equivalent for this set of functional dependencies?

(A) V → W V → X Y → V Y → Z

(B) V → W W → X Y → V Y → Z

(C) V → W Y → X Y→Z

(D) V → W W → X Y → V Y → X Y→Z

Q.31 Let R(A, B, C, D) be a relation schema and F = {A → BC, AB → D, B → C} be the set of


functional dependencies defined over R. Which of the following represents the closure of the
attribute set {B}?

(A) {A , C, D} (B) {A, B, C} (C) {B} (D) {B,C)

Q.32 We have a database table with relational schema R(XYZPQ):

Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 06 of 022
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -04
Time: 02.00 Hours Questions: 100 Negative:0.33

(A) YZ → P is a functional dependency.

(B) None of the above

(C) Y→ X is a functional dependency

(D) ZP → Q is a functional dependency.

Q.33 Consider a relation R(A, B, C), which of the following statements is not true according to
inference rules for functional dependencies?

(A) If A → B and B → C, then A → C

(B) If AB → C, then A → B and B → C

(C) If A → B and A → C, then A → BC

(D) If A → B, then AC → BC

Q.34 Relation R has eight attributes ABCDEFGH. Fields of R contain only Atomic values.

F= {CH  G,A BC,B CFH, E A,F EG} is a set of functional Dependencies (FDs) so
that F+ is exactly the set of FDs that hold for R.How many candidate keys does the relation R
have?

(A) 3 (B) 4 (C) 5 (D) 6

Q.35 The following functional dependencies for relational schema R(PQRSTU) are given:
PQ → RS, ST → U, R → T, U → S, PT → R and T → P Which of the following is true?

(A){PT}+ = {PRST} (B){ST}+ = {PQRSTU}

(C){QT}+ = {PQRSTU} (D){PQ}+ = {PQRTU}

Q.36 Consider a relation with seven attributes ABCDEGH. The following dependencies are
given .

AB -> C, AC -> B, AD -> E, B -> D, BC -> A, E -> G. What is the key?

(A) ACEH (B) ACH

(C) AC (D) None of All

Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 07 of 022
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -04
Time: 02.00 Hours Questions: 100 Negative:0.33

Q.37 Consider a relation R(A, B, C, D, E) with the following three functional dependencies.
AB → C ; BC → D ; C → E; The number of super keys in the relation R is

(A) 8 (B) 9 (C) 10 (D) 11

Q.38 Which of the following is NOT a super key in a relational schema with attributes V, W, X,
Y, Z and primary key VY ?

(A) V X Y Z (B) V W X Z

(C) V W X Y (D) V W X Y Z

Q.39 The maximum number of superkeys for the relation schema R (E, F, G, H) with E as the
key is

(A) 8 (B) 9 (C) 10 (D) 11

Q.40 Consider the relation scheme R = (E, F, G, H, I, J, K,L, M, N ) and the set of functional
dependencies

{{E, F}} → {G}, {F} → {I, J},{E, H} → {K, L},{K} → {M},{L} → {N}} on R.

What is the key for R?

(A) {E, F} (B) {E, F, H}

(C) {E, F, H, K, L} (D) {E}

Q.41 Suppose the following functional dependencies hold on a relation U with attributes P, Q,
R, S, and T:
• P → QR
• RS → T
Which of the following functional dependencies cannot be inferred from the above functional
dependencies?

(A) PS → T (B) R → T

(C) P → R (D) PS → Q

Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 08 of 022
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -04
Time: 02.00 Hours Questions: 100 Negative:0.33

Q.42 Consider the relation R(P, Q, S, T, X, Y, Z, W) with the following functional


dependencies PQ → X ; P → YX ; Q → Y ; Y → ZW
Consider the decomposition of the relation R into the constituent relations according to the
following two decomposition schemes
D1: R = [(P, Q, S, T); (P, T, X); (Q, Y); (Y, Z, W)]
D2: R = [(P, Q, S); (T, X); (Q, Y); (Y, Z, W)]

Which one of the following options is correct?

(A) D1 is a lossless decomposition, but D2 is a lossy decomposition.

(B) D1 is a lossy decomposition, but D2 is a lossless decomposition.

(C) Both D1 and D2 are lossless decompositions.

(D) Both D1 and D2 are lossy decompositions.

Q.43 Let the set of functional dependencies F = {QR → S,R → P, S → Q} hold on a relation
schema
X = (PQRS). X is not in BCNF. Suppose X is decomposed into two schemas Y and Z, where Y
= (PR) and Z = (Q R S).
Consider the two statements given below :
I. Both Y and Z are in BCNF
II. Decomposition of X into Y and Z is dependency preserving and lossless
Which of the above statements is/are correct ?

(A) Both I and II (B) I only (C) II only (D) Neither I nor II

Q.44 In a relational data model, which one of the following statements is TRUE?

(A) A relation with only two attributes is always in BCNF.

(B) If all attributes of a relation are prime attributes, then the relation is in BCNF.

(C) Every relation has at least one non-prime attribute.

(D) BCNF decompositions preserve functional dependencies.

Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 09 of 022
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -04
Time: 02.00 Hours Questions: 100 Negative:0.33

Q.45 Consider a relational table R that is in 3 NF, but not in BCNF. Which one of the following
statements is TRUE?

(A) R has a non-trivial functional dependency X → A, where X is not a superkey and A is a


prime attribute.

(B) R has a non-trivial functional dependency X → A, where X is not a superkey and A is a


nonprime attribute and X is not a proper subset of any key.

(C) R has a non-trivial functional dependency X → A, where X is not a superkey and A is a


nonprime attribute and X is a proper subset of some key.

(D) A cell in R holds a set instead of an atomic value.

Q.46 Consider the following four relational schemas. For each schema, all non-trivial
functional dependencies are listed. The underlined attributes are the respective primary keys.
Schema I:
Registration (rollno, courses)
Field 'courses' is a set-valued attribute containing the set of courses a student has registered for.
Non-trivial functional dependency:
rollno → courses
Schema II:
Registration (rollno, courseid, email)Non-trivial functional dependencies:
rollno, courseid → email
email → rollno
Schema III:
Registration (rollno, courseid, marks, grade)Non-trivial functional dependencies:
rollno, courseid → marks, grade
marks → grade
Schema IV:
Registration (rollno, courseid, credit) Non-trivial functional dependencies:
rollno, courseid → credit
courseid → credit
Which one of the relational schemas above is in 3 NF
but not in BCNF?
(A) Schema I (B) Schema II (C) Schema III (D) Schema IV

Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 010 of 022
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -04
Time: 02.00 Hours Questions: 100 Negative:0.33

Q.47 Given the following two statements:


S1: Every table with two single-valued attributes is in 1 NF, 2 NF, 3 NF and BCNF.
S2: AB → C, D → E, E → C is a minimal cover for the set of functional dependencies AB →
C,D → E, AB → E, E → C.
Which one of the following is CORRECT?

(A) S1 is TRUE and S2 is FALSE.

(B) Both S1 and S2 are TRUE.

(C) S1 is FALSE and S2 TRUE.

(D) Both S1 and S2 are FALSE.

Q.48 Relation R has eight attributes ABCDEFGH.


Fields of R contain only atomic values.
F = {CH → G, A → BC, B → CFH, E → A, F → E G} is a set of functional dependencies
(FDs) so that F+ is exactly the set of FDs that hold for R.
The relation R is
(A) in 1 NF, but not in 2 NF.

(B) in 2 NF, but not in 3 NF.

(C) in 3 NF, but not in BCNF.

(D) in BCNF.

Q.49 Which of the following is TRUE?

(A) Every relation in 3 NF is also in BCNF

(B) A relation R is in 3 NF if every non-prime attribute of R is fully functionally dependent on


every key of R

(C) Every relation in BCNF is also in 3 NF

(D) No relation can be in both BCNF and 3 NF

Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 011 of 022
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -04
Time: 02.00 Hours Questions: 100 Negative:0.33

Q.50 Consider the following relational schema:


Suppliers(sid: integer, sname: string, city: string, street: string)

Parts(pid: integer, pname:string, color:string)

Catalog (sid:integer, pid:integer, cost:real)

Assume that, in the suppliers relation above, each supplier and each street within a city has a
unique name, and (sname, city) forms a candidate key. No other functional dependencies are
implied other than those implied by primary and candidate keys. Which one of the following is
TRUE about the above schema?

(A) The schema is in BCNF

(B) The schema is in 3NF but not in BCNF

(C) The schema is in 2NF but not in 3NF

(D) The schema is not in 2NF

Q.51 Let R(A, B, C, D, E, P, G) be a relational schema in


which the following functional dependencies are known to hold:
AB→CD, DE→P, C→E, P→C and B→G.
The relational schema R is
(A) in BCNF (B) in 3NF, but not in BCNF

(C) in 2NF, but not in 3 NF (D) not in 2NF

Q.52 A database of research articles in a journal uses the following schema.

(VOLUME, NUMBER, STARTPAGE, ENDPAGE, TITLE, YEAR, PRICE)


The primary key is (VOLUME, NUMBER,STARTPAGE, ENDPAGE) and the following
functional dependencies exist in the schema.
(VOLUME, NUMBER, STARTPAGE, ENDPAGE)→ TITLE
(VOLUME, NUMBER) → YEAR
(VOLUME, NUMBER, STARTPAGE, ENDPAGE)→ PRICE
The database is redesigned to use the following schemas.
(VOLUME, NUMBER, STARTPAGE, ENDPAGE,TITLE, PRICE)
(VOLUME, NUMBER YEAR),
Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 012 of 022
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -04
Time: 02.00 Hours Questions: 100 Negative:0.33

Which is the weakest normal form that the new database satisfies, but the old one does not?

(A) 1 NF (B) 2 NF (C) 3 NF (D) BCNF

Q.53 Consider the relation schema: Singer(singerName, songName). What is the highest
normalform satisfied by the "Singer" relation schema?

(A) 1NF (B) 2NF (C) 3NF (D) BCNF

Q.54 Consider the following Table

The table is in which normal form?

(A) First Normal Form (B) Second Normal Form

(C) Third Normal Form but not BCNF (D) Third Normal Form and BCNF

Q.55 For a database relation R(a, b, c, d) where the domains of a, b, c, and d include only
atomic values, and only the following functional dependencies and those that can be inferred
from them hold:
a→c
b → d The relation is in.

(A) First normal form but not in second normal form

(B) Second normal form but not in third normal form

(C) Third normal form

(D) BCNF

Q.56 Anomalies are avoided by splitting the offending relation into multiple relations, is also
known as _____.

(A) Accupressure (B) Decomposition

(C) Precomposition (D) Both decomposition & precomposition


Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 013 of 022
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -04
Time: 02.00 Hours Questions: 100 Negative:0.33

Q.57 If a relation has a 4NF and no join dependency, and when it joins, it should be___, it is
considered 5NF.

(A) Lossful (B) Lesser

(C) Lossless (D) Full

Q.58 In a certain code FIRE is coded as DGPC. What will be the last letter of the coded word
for SHOT./एक निनित कोड में FIRE को DGPC के रूप में कोनडत ककया जाता है। SHOT के निए कू टबद्ध
शब्द का अंनतम अक्षर क्या होगा ?

(A) Q (B) R

(C) S (D) P

Q.59 In a certain language PRACTICE is coded as PICCTRAE, how is FLAMES coded in that code
?/ एक निनित भाषा में PRACTICE को PICCTRAE के रूप में कोनडत ककया जाता हैए उसी कोड में FLAMES
को कै से कोनडत ककया जाता है ?

(A) FEMALE (B) FALSE (C) FALSE (D) FLAMES

Q.60 If HARD is coded 1357 and SOFT is coded as 2468, what do the figures 21448 stand for ?/
यकद HARD को 1357 और SOFT को 2468 कोनडत ककया गया है तो अंक 21448 का क्या अर्थ है ?

(A) SHOOP (B) SHOOL

(C) SCOOL (D) SHOOT

Q.61 If Dust is called Air, Air is called Fire, Fire is called Water, Water is called Colour, Colour is
called Rain and Rain is called Dust, where do Fish live ?/ यकद धूि को वायु कहा जाता है वायु को
अनि कहा जाता है अनि को जि कहा जाता है जि को रं ग कहा जाता है रं ग को वषाथ कहा जाता है और वषाथ
को धूि कहा जाता है तो मछनियााँ कहााँ रहती हैं?

(A) Dust (B) Fire

(C) Colour (D) Water

Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 014 of 022
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -04
Time: 02.00 Hours Questions: 100 Negative:0.33

Q.62 In a certain code JA KI MO PE means AT A FROG'S LEAP, MO LA KI SO means TAKE A LEAP


AHEAD and RE BO JA NA means INSECTS ARE FROG'S DIET. Which of the following is code for
AT in that language?/एक निनित कोड में JA KI MO PE का अर्थ है मेंढक की छिांग, MO LA KI SO का
अर्थ है आगे छिांग िगािा और RE BO JA NA का अर्थ है कीडे मेंढक का आहार हैं। निम्ननिनित में से कौि सा
उस भाषा में AT के निए कोड है?

(A) a (B) pe

(C) bo (D) re

Q.63 In a certain language, WEAK is coded as 9%2$ and SKIT is coded as #$7@, then how will
WAIT be coded in the same language?/एक निनित भाषा में, WEAK को 9%2$ के रूप में कोनडत ककया
जाता है और SKIT को #$7@ के रूप में कोनडत ककया जाता है, तो उसी भाषा में WAIT को कै से कोनडत ककया
जाएगा?

(A) 9267 (B) 927@

(C) 92@6 (D) 9@67

Q.64 If A = 4, K = 3, N = 2, P = 1, then the sum of which set of the letters makes the highest
number?/यकद A = 4, K = 3, N = 2, P = 1 है, तो अक्षरों के ककस समूह का योग सबसे बडी संख्या बिाता है?

(A) KANPK (B) NPAKN

(C) PKANA (D) NAKNA

Q.65 In a certain code, the words COME AT ONCE were written as XLNVZGLMXV. In the same
code, which of the following would code OK?/एक निनित कोड में, COME AT ONCE शब्द को
XLNVZGLMXV के रूप में नििा गया र्ा। उसी कोड में, निम्ननिनित में से कौि सा कोड OK होगा?

(A) KL (B) LM

(C) KM (D) LP

Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 015 of 022
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -04
Time: 02.00 Hours Questions: 100 Negative:0.33

Q.66 In a certain system of coding, the word STATEMENT is written as TNEMETATS. In the
same system of coding, what should be the code for the word POLITICAL?/कोडडंग की एक निनित
प्रणािी में, STATEMENT शब्द को TNEMETATS के रूप में नििा जाता है। कोडडंग की उसी प्रणािी में,
POLITICAL शब्द के निए क्या कोड होिा चानहए?

(A) LACITILOP (B) LCATILIOP

(C) OPILITACL (D) None of these

Q.67 In a coding language, the letters of the English alphabet are arranged in such a manner
that all the vowels are put in the end and the remaining letters are arranged from the first
letter onwards. The rearranged alphabets are used to denote the position occupied by letters
in the original alphabets. What is the code of META?/ककसी कोडडंग भाषा में अंग्रेजी वणथमािा के
अक्षरों को इस प्रकार व्यवनथर्त ककया जाता है कक सभी थवर अंत में आ जाते हैं और शेष अक्षर पहिे अक्षर से
आगे व्यवनथर्त हो जाते हैं। पुिव्यथवनथर्त अक्षरों का उपयोग मूि वणथमािा में अक्षरों के थर्ाि को दशाथिे के
निए ककया जाता है। META का कोड क्या है?

(A) TEAM (B) PWLV (C) LWPV (D) QGYB

Q.68 भोमट के भीि आंदोिि को ककस िाम से जािा जाता है

(A) एकी आंदोिि (B) भगत आंदोिि

(C) जिजानत आंदोिि (D) अिेकी आंदोिि

Q.69 हुरडा सम्मेिि कब हुआ?

(A) 17 जुिाई 1734 भीिवाडा (B) 17 जुिाई 1735 भीिवाडा

(C) 17 जिवरी 1735 भीिवाडा (D) 17 जिवरी 1734 भीिवाडा

Q.70 मेवाड का वतथमाि शासि िामक पुथतक ककसिे नििी?

(A) मोतीिाि तेजावत (B) जमिािाि बजाज

(C) मानणक्य िाि वमाथ (D) जय िारायण व्यास

Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 016 of 022
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -04
Time: 02.00 Hours Questions: 100 Negative:0.33

Q.71 माधोडसंह व गोडवंद डसंह का संबंध निम्न में से ककस ककसाि आन्दोिि से र्ा-

(A) नबजौनिया ककसाि आन्दोिि (B) मेवाड भीि आन्दोिि

(C) बेगू ककसाि आन्दोिि (D) अिवर ककसाि आन्दोिि

Q.72 नवजयडसंह पनर्क का मूि िाम क्या र्ा -

(A) भूपडसंह (B) िरे न्रिार्

(C) मूिशंकर (D) रामदास

Q.73 निम्न सूची में से उि िेताओं को चुनिए नजन्होंिे नबजोनिया ककसाि आंदोिि में भाग निया -
1. साधू सीताराम दास 2. नवजयडसंह पनर्क
3. मानणक्य िाि वमाथ 4. िारायणजी पटेि
सही कू ट चुनिए -
(A) 1 और 2 (B) 1, 2 और 3

(C) 1, 2 और 4 (D) 1, 2, 3 और 4

Q.74 सम्प सभा की थर्ापिा ककसिे की -

(A) मानणक्यिाि वमाथ (B) जयिारायण व्यास

(C) बिवंतडसंह मेहता (D) गोनवन्द नगरी

Q.75 िोकसभा चुिाव-2024 के निए उम्मीदवारों की िचथ सीमा को बढाकर ककतिा ककया गया है?

(A) 85 िाि (B) 75 िाि

(C) 95 िाि (D) 1 करोड

Q.76 भारतीय अंडर-19 किके ट टीम के कप्ताि उदय प्रताप सहारण को िोकसभा चुिाव के निए ककस नजिे
का यूर् आइकि बिाया गया है -

(A) श्रीगंगािगर (B) हिुमािगढ

(C) जोधपुर (D) भीिवाडा


Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 017 of 022
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -04
Time: 02.00 Hours Questions: 100 Negative:0.33

Q.77 हाि ही में भारत की पहिी नजयो हैररटेज साइट (भू-नवरासत थर्ि) ककसे घोनषत ककया गया है -

(A) सांभर झीि, जयपुर (B) के विादेव घि पक्षी नवहार, भरतपुर

(C) रामगढ िे टर, बारााँ (D) आमेर दुग,थ जयपुर

Q.78 In a DFD external entities are represented by a

(A) rectangle (B) ellipse (C) diamond shaped box (D) circle

Q.79 A data flow can

(A) only emanate from an external entity

(B) only terminate in an external entity

(C) may emanate and terminate in an external entity

(D) may either emanate or terminate in an external entity but not both

Q.80 External Entities may be a

(A) source of input data only

(B) source of input data or destination of results

(C) destination of results only

(D) repository of data

Q.81 A data store in a DFD represents

(A) a sequential file (B) a disk store

(C) a repository of data (D) a random access memory

Q.82 5.3.2 A physical DFD specifies


(A) what processes will be used
(B) who generates data and who processes it
(C) what each person in an organization does
(D) which data will be generated

Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 018 of 022
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -04
Time: 02.00 Hours Questions: 100 Negative:0.33

Q.83 A physical DFD

(A) has no means of showing material flow

(B) does not concern itself with material flow

(C) can show only stored material

(D) can show the flow of material

Q.84 A context diagram

(A) describes the context of a system

(B) is a DFD which gives an overview of the system

(C) is a detailed description of a system

(D) is not used in drawing a detailed DFD

Q.85 A context diagram is used

(A) as the first step in developing a detailed DFD of a system

(B) in systems analysis of very complex systems

(C) as an aid to system design

(D) as an aid to programmers

Q.86 ata flow in a DFD must have

(i) an arrow showing direction of flow of data (ii) a meaningful name

(iii) a label such as: xyz (iv) no arrows as they are confusing

(A) i and iii (B) ii and iv (C) iii and iv (D) i and ii

Q.87 A data cannot flow between a store and


(i) a store (ii) a process (iii) an external entity

(A) i and iii (B) i and ii (C) ii and iii (D) ii

Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 019 of 022
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -04
Time: 02.00 Hours Questions: 100 Negative:0.33

Q.88 Data cannot flow between two data stores because

(A) it is not allowed in a DFD

(B) a data store is a passive repository of data

(C) data can get corrupted

(D) they will get merged

Q.89 Data cannot flow from an external entity to an external entity because

(A) it will get corrupted

(B) it is not allowed in DFD

(C) an external entity has no mechanism to read or write

(D) both are outside the context of the system

Q.90 Which of the following is an important factor that can affect the accuracy and efficacy of
estimates?
(A) Project size (B) Planning process

(C) Project complexity (D) Degree of structural uncertainty

Q.91 A 66.6% risk is considered as

(A) very low (B) low (C) moderate (D) high

Q.92 The project planner examines the statement of scope and extracts all important software
functions which is known as

(A) Association (B) Decomposition

(C) Planning process (D) All of the mentioned

Q.93 What is related to the overall functionality of the delivered software?

(A) Function-related metrics (B) Product-related metrics

(C) Size-related metrics (D) None of the mentioned

Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 020 of 022
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -04
Time: 02.00 Hours Questions: 100 Negative:0.33

Q.94 Which technique is applicable when other projects in the same analogy application
domain have been completed?

(A) Algorithmic cost modelling (B) Expert judgement

(C) Estimation by analogy (D) Parkinson’s Law

Q.95 What is the main objective of software project planning?

(A) Estimation of resources. (B) Estimation of cost.

(C) Estimation of schedule. (D) All of the above

Q.96 Software feasibility is based on which of the following

(A) business and marketing concerns

(B) scope, constraints, market

(C) technology, finance, time, resources

(D) technical prowess of the developers

Q.97 LOC-based estimation techniques require problem decomposition based on

(A) information domain values (B) project schedule

(C) software functions (D) process activities

Q.98 FP-based estimation techniques require problem decomposition based on

(A) information domain values (B) project schedule

(C) software functions (D) process activities

Q.99 Process-based estimation techniques require problem decomposition based on

(A) project schedule (B) software functions

(C) process activities (D) B & C

Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 021 of 022
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -04
Time: 02.00 Hours Questions: 100 Negative:0.33

Q.100 COCOMO II is an example of a suite of modern empirical estimation models that require
sizing information expressed as:

(A) function points (B) lines of code

(C) object points (D) any of the above

Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 022 of 022
MOB: 7014528940 / 8949174075 www.infiqueclasses.com

You might also like