0% found this document useful (0 votes)
14 views16 pages

02

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)
14 views16 pages

02

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/ 16

RPSC PROGRAMMER TOPIC WISE TEST – 2024

test NUMBER -02


Time: 02.00 Hours Questions: 100 Negative:0.33

Q.1.What is the output of the following code ? } while (i < 3);


int i = 0; (A) 0 (B) 1 2 3
while (i < 3) { (C) 0 1 2 3 (D) Infinite loop
if(i==3){ Q.4.Which of the following loops will execute the
body of loop even when condition controlling the
System.out.print(i);
loop is initially false?
continue; }
(A) do-while (B) while
i++;
(C) for (D) none of the mentioned
System.out.print(i);
Q.5.Which of these jump statements can skip
break;} processing the remainder of the code in its body for
(A) 1 (B) 1 2 3 a particular iteration?

(C) 0 1 2 3 (D) Infinite loop (A) break (B) return

Q.2.What is the output of the following code ? (C) exit (D) continue
int x = 014; Q.6.if given array in x[100][112] and base address
of 1200 so what will be address of x[80][20] ?
int y = 0b1111;
(A) 17200 (B) 19160
int z = x++ + ++y;
(C)19000 (D) 19200
System.out.println(z);
Q.7.What will be the output of the following Java
(A)30 (B)31 program?
(C)32 (D)28 int var1 = 5;
Q.3.What is the output of the following code ? int var2 = 6;
int i = 0; if ((var2 = 1) == var1)
do { System.out.print(var2);
System.out.print(i + " "); else
break;
Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 01 of 016
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -02
Time: 02.00 Hours Questions: 100 Negative:0.33

System.out.print(++var2); System.out.println(a);
(A) 1 (B) 2 }
(C) 3 (D) 4 System.out.println(b);
Q.8.What will be the output of the following Java } } }
program?
(A) 5 10 (B) 10 5
final int a=10,b=20;
(C) 5 (D) 10
while(a<b) Q.10.Which of these is an incorrect array
{ declaration?
System.out.println("Hello"); (A) int arr[] = new int[5]
} (B) int [] arr = new int[5]
(A) Infinite (B) run time error (C) int arr[] = new int[5]
(C) Hello world (D) compile time error (D) int arr[] = int [5] new
Q.9.What will be the output of the following Java Q.11.What will be the output of the following Java
program? code?
class Output int array_variable [] = new int[10];
{ public static void main(String args[]) for (int i = 0; i < 10; ++i)
{ int a = 5; int b = 10; { array_variable[i] = i;
first: System.out.print(array_variable[i] + " ");
{ second: i++; }
{ third: (A) 0 2 4 6 8
{ if (a == b >> 1) (B) 1 3 5 7 9
break second; (C) 0 1 2 3 4 5 6 7 8 9
} (D) 1 2 3 4 5 6 7 8 9 10

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

Q.12.Which of the following is a correct method Q.17.This pointer can be used directly to
declaration in Java? ___________
(A) public int myMethod(int a, int b) (A) To manipulate self-referential data structures
(B) public myMethod(int a, int b): int (B) To manipulate any reference to pointers to
(C) myMethod(int a, int b) -> int member functions
(C) To manipulate class references
(D) myMethod: int(a, b)
(D) To manipulate and disable any use of pointers
Q.13.In Java, every method must be part of ...?
Q.18. Which of the following statements is true
(A) an object (B) a class
about pointers in Java?
(C) a package (D) a project
(A) Java does not support pointers
Q.14.If a method does not access instance variables,
(B) Pointers are extensively used in Java for
it can be declared as...?
memory manipulation
(A) void (B) public
(C) Pointers in Java are declared using the *
(C) private (D) static operator
Q.15.What does the method signature consist of? (D) Java pointers are similar to those in languages
(A) Method name only like C and C++

(B) Method name and parameters Q.19.which of the following is a valid declaration
and initialization of a string array in java?
(C) Method name, parameters, and return type
(A)String[] names = {"Alice", "Bob", "Charlie"};
(D) Method name and return type
(B)String names[] = {"Alice", "Bob", "Charlie"};
Q.16.When are method parameters evaluated?
(C)String[3] names = {"Alice", "Bob", "Charlie"};
(A) At compile time
(D)All of the above
(B) At runtime
(C) At load time
(D) After method completion

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

Q.20.What will be the output of the following Java (C) 6 (D) 1


code? Q.22.What will be the output of the following
class array_output program?
{ int count = 1;
public static void main(String args[]) while (count <= 15) {
{ System.out.println(count % 2 == 1 ? "***" :
"+++++");
int array_variable[][] = {{ 1, 2, 3}, { 4 , 5, 6},
{ 7, 8, 9}}; ++count;
int sum = 0; }
for (int i = 0; i < 3; ++i) (A)15 times ***
for (int j = 0; j < 3 ; ++j) (B)15 times +++++
sum = sum + array_variable[i][j]; (C)8 times *** and 7 times +++++
System.out.print(sum / 5); (D)Both will print only once
} Q.23.What will be the output of the following Java
} program?
int a = 1;int b = 2;int c; int d;
(A) 8 (B) 9
(C) 10 (D) 11 c = ++b;
d = a++;
Q.21.What will be the output of the following Java
code? c++;
int arr[] = new int[] {0 , 1, 2, 3, 4, 5, 6, 7, 8, 9}; b++;
int n = 6; ++a;
n = arr[arr[n] / 2]; System.out.println(a + " " + b + " " + c);
System.out.println(arr[n] / 2); (A) 3 2 4 (B) 3 2 3
(A) 3 (B) 0 (C) 2 3 4 (D) 3 4 4
Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 04 of 016
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -02
Time: 02.00 Hours Questions: 100 Negative:0.33

Q.24.What will be the output of the following Java System.out.println(d + " " + e);
code? (A) false false (B) true true
boolean a = true;
(C) true false (D) false true
boolean b = false;
Q.27. What will be the output of the following
boolean c = a ^ b; program ?
System.out.println(!c); int i=3,*j,**k;
(A) 0 (B) 1 j=&i;
(C) false (D) true k=&j;
Q.25.What will be the output of the following Java printf("%d%d%d",*j,**k,*(*k));
code?
(A) 444 (B) 000
int x = 3;
(C) 333 (D) 433
int y = ~ x; Q.28. Which one of the options given below refers
int z; to the degree (or arity) of a relation in relational
database systems?
z = x > y ? x : y;
System.out.print(z); (A) Number of attributes of its relation schema.
(B) Number of tuples stored in the relation.
(A) 0 (B) 1
(C) 3 (D) -4 (C) Number of entries in the relation.
(D) Number of distinct domains of its relation
Q.26.What will be the output of the following Java
schema.
code?
boolean a = true; Q.29. Given an instance of the STUDENTS relation
as shown below:
boolean b = !true;
boolean c = a | b;
boolean d = a & b;
boolean e = d ? b : c;
Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 05 of 016
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -02
Time: 02.00 Hours Questions: 100 Negative:0.33

3. Bank Account_Num: Unique account number at


the bank. A student can have multiple accounts or
joint accounts. This attribute stores the primary
account number.
4. Name: Name of the student
5. Hostel_Room: Room number of the hostel
Which of the following option is INCORRECT?
For (Student Name, Student Age) to be a key for
(A) BankAccount_Num is a candidate key.
this instance, the value X should NOT be equal to
______. (B) Registration_Num can be a primary key.
(A) 19 (B) 91 (C) UID is a candidate key if all students are from
the same country.
(C) 29 (D) 0
Q.30. A prime attribute of a relation scheme R is an (D) If S is a super key such that S ∩ UID is NULL
attribute that appears then S ∪ UID is also a super key.
(A) in all candidate keys of R. Q.32. Consider the following statements S1 and S2
about the relational data model:
(B) in some candidate key of R.
S1: A relation scheme can have at most one foreign
(C) in a foreign key of R.
key.
(D) only in the primary key of R.
S2: A foreign key in a relation scheme R cannot be
Q.31. Consider a relational table with a single used to refer to tuples of R.
record for each registered student with the following
Which one of the following choices is correct?
attributes.
(A) Both S1 and S2 are true
1. Registration_Num: Unique registration number of
each registered student (B) S1 is true and S2 is false
2. UID: Unique identity number, unique at the (C) S1 is false and S2 is true
national level for each citizen. (D) Both S1 and S2 are false

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

Q.33. Consider the following tables T1 and T2. Q.35. In an Entity-Relationship (ER) model,
In table T1, P is the primary key and Q is the suppose R is a many-to-one relationship from entity
foreign key referencing R in table T2 with on delete set E1 to entityset E2. Assume that E1 and E2
cascade and on-update cascade. In table T2, R is the participate totally in R and that the cardinality of E1
is greater than the cardinality of E2.
primary key and S is the foreign key referencing P
in table T1 with on-delete set NULL and on-update Which one of the following is true about R?
cascade. In order to delete record ⟨3, 8⟩ from table (A) Every entity in E1 is associated with exactly
T1, the number of additional records that need to be one entity in E2.
deleted from table
(B) Some entity in E1 is associated with more than
T1 is one entity in E2.
(C) Every entity in E2 is associated with exactly one
entity in E1.
(D) Every entity in E2 is associated with at most
one entity in E1.
Q.36. An ER model of a database consists of entity
types A and B. These are connected by a
(A) 0 (B) 1 relationship R which does not have its own
attribute. Under which one of the following
(C) 2 (D) 3
conditions, can the relational table for R be merged
Q.34. Which one of the following is used to with that of A?
represent the supporting many-one relationships of
(A) Relationship R is one-to-many and the
a weak entity set in an entity-relationship diagram?
participation of A in R is total.
(A) Diamonds with double/bold border.
(B) Relationship R is one-to-many and
(B) Ovals with double/bold border theparticipation of A in R is partial.
(C) Ovals that contain underlined identifiers (C) Relationship R is many-to-one and the
(D) Rectangles with double/bold border participation of A in R is total.
(D) Relationship R is many-to-one and the
participation of A in R is partial.
Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 07 of 016
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -02
Time: 02.00 Hours Questions: 100 Negative:0.33

Q.37. Consider an Entity-Relationship (ER) model Q.39. Consider the following ER diagram
in which entity sets E1 and E2 are connected by an
m: n relationship R12 . E1 and E3 are connected by
a 1: n (1 on the side of E1 and n on the side of E3)
relationship R13. E1 has two single-valued
attributes a11 and a12 of which a11 is the key
attribute. E2 has two single valued attributes a21 The minimum number of tables needed to represent
and a22 of which a21 is the key attribute. E3 has
M, N, P R1, R2 is
two single valued attributes a31 and a32 of which
a31 is the key attribute. The relationships do not (A) 2 (B) 3
have any attributes. If a relational model is derived (C) 4 (D) 5
from the above ER model, then the minimum
number of relations that would be generated if all Q.40. Consider the following ER diagram
the relations are in 3 NF
is__________.
(A) 3 (B) 4
(C) 5 (D) 6
Q.38. Given the basic ER and relational models, Which of the following is a correct attribute set for
which of the following is INCORRECT? one of the tables for the minimum number of tables
(A) An attribute of an entity can have more than one needed to represent M, N, P, R1 and R2
value. (A) {M1, M2, M3, P1}
(B) An attribute of an entity can be composite. (B) {M1, P1, N1, N2}
(C) In a row of a relational table, an attribute can (C) {M1, P1, N1}
have more than one value.
(D) {M1, P1}
(D) In a row of a relational table, an attribute can
have exactly one value or a NULL value.

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

Q.41. Using relational algebra, the query that finds Q.44. In relational databases, the natural join of
customers, who have a balance of over 3000 is two tables is:
(A) πcustomer_name (σbalance>3000(Deposit)) (A) Combination of Union and filtered Cartesian
product.
(B) σcustomer_name (σbalance>3000(Deposit))
(B) Combination of projection and filtered
(C) πcustomer_name (σbalance>3000(Borrow)) Cartesian product.
(D) σcustomer_name (πbalance>3000(Borrow)) (C) Combination of selection and filtered
Cartesian product.
Q.42. Consider the relation schemas R(A, B, C, D)
and S(D, E, F). What will be the degree of the (D) Cartesian product always.
resultant schema R * S, where star (*) symbol Q.45 What is the optimized version of the relation
represents the natural join operation?
algebra expression πA1(πA2( σF1(σ F2(r)))),
(A) 6 (B) 3 where F1, F2 are sets of attributes in r with F1 ⊂ F2
(C) 4 (D) 7 and F1, F2 are Boolean expressions based on the
attributes in r?
Q.43. Consider two relations R1(A, B) with the
tuples (1, 5), (3, 7) and R2(A, C) = (1, 7), (4, 9). (A) πA1(σ(F1 ⋀ F2)(r))
Assume that R(A, B, C) is the full natural outer join
(B) π A1 (σ (F1 ⋁ F2) (r))
of R1 and R2. Consider the following tuples of the
form (A, B, C): a = (1, 5, null), b = (1, null, 7), c = (C) π A2 (σ (F1 ⋀ F2) (r))
(3, null, 9), d=(4, 7, null), e = (1, 5, 7), f = (3, 7,
null), g = (4, null, 9). Which one of the following (D) π (σ( (r))
statements is correct? Q.46 For two union compatible relations R1 (A, B)
(A) R contains a, b, e, f, g but not c, d. and R2 (C, D), what is the result of the operationR1
⋈ (A=C ∧ B=D) R2?
(B) R contains all of a, b, c, d, e, f, g.
(C) R contains e, f, g but not a, b. (A) R1 ∪ R2 (B) R1 × R2

(D) R contains e but not f, g. (C) R1 - R2 (D) R1 ∩ R2

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

Q.47. Consider the following relations X (S, Si, C) Q.49. Consider the following relations X (S, Si, C)
and Y (S, P, D). and Y (S, P, D).

Which of the following join is used to get all the Find the number of tuples by applying the operation
tuples of relation X and Y with Null values of X⟕X.s = y.sY
corresponding missing values ? (A) 1 (B) 3
(A) Left outer join (C) 4 (D) 6
(B) Right outer join Q.50. ______ operation preserves those tuples that
(C) Natural join would be lost in____
(D) Full outer join (A) Natural join, outer join
Q.48. Consider the following relations X (S, Si, C) (B) Outer join, natural join
and Y (S, P, D). (C)Left outer join, right outer join
(D)Left outer join, natural join
Q.51. Which of the following Relational Algebra
operations can be used when you want to keep all
the tuples of the first relation irrespective of whether
or not they have matching tuples in the second
relation?
Number of tuples obtained by applying cartesian
product over X and Y are : (A) Natural join
(A) 16 (B) 12 (B) Left-outer join
(C) 04 (D) 32 (C) Right-outer-join
(D) Theta join

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

Q.52. Consider Join of a relation R with a relation Q.55.A and B are brothers. C and D are sisters. A's
S. If R has m tuples and S has n tuples, then son is D's brother. How is B related to C ?
maximum and minimum sizes of the Join (A) Father (B) Brother
respectively are
(C) Uncle (D) Grandfather
(A) m + n and 0
Q.56.Leela, who is Sohan's daughter, says to Latika,
(B) mn and 0 "Your mother Alka is the younger sister of my
(C) m + n and |m - n| father who is the third child of Gajanan." What is
the relation of Gajanan to Latika ?
(D) mn and m + n
Q.53. Consider a weak entity set W and its (A) Father (B) Uncle
identifying (owner) entity set O. Primary key of W (C) Grandfather (D) Father-in-law
is composed of
Q.57.Arun said, "This girl is the wife of the
(A) Discriminator of W and primary key of O grandson of my mother." Who is Arun to the girl?
(B) Superkey of W and primary key of O (A) Father (B) Grandfather
(C) Discriminator of W and foreign key of O (C) Husband (D) Father-in-law
(D) Superkey of W and foreign key of O Q.58. P's father is Q's son. M is the paternal uncle of
P and N is the Brother of Q. How is N related to M
Q.54. Which of the following statements related to
?
attribute is/are incorrect?
(A) Composite attributes can have multiple values (A) Brother (B) Cousin
for a single or same entity. (C) Nephew (D) Data inadequate
(B) Multivalued attributes can be further divided Q.59.Suresh's sister is the wife of Ram. Ram is
into more attributes. Rani's brother. Ram's father is Madhur. Sheetal is
Ram's grandmother. Rema is Sheetal's daughter-in-
(C) Complex attributes cannot have multivalued as
law. Rohit is Rani's brother's son. Who is Rohit to
well as composite attributes.
Suresh ?
(D) None of above
(A) Brother-in-law (B) Son
(C) Brother (D) Nephew
Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 011 of 016
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -02
Time: 02.00 Hours Questions: 100 Negative:0.33

Q.60.Count the number of cubes in the given figure. Q.64 The minimum number of colours required to
paint all the sides of a cube that no two adjacent
faces may have the same colours, is
(A) 1 (B) 2
(C) 3 (D) 6
(A) 57 (B) 58
Q.65. The first step in the systems development life
(C) 60 (D) 62 cycle (SDLC) is:
Q.61.Count the number of cubes in the given figure. (A) Analysis.
(B) Design.
(C) Problem/Opportunity Identification.
(D) Development and Documentation.
Q.66. The make-or-buy decision is associated with
the ____________ step in the SDLC.
(A) 6 (B) 8
(A) Problem/Opportunity Identification
(C) 10 (D) 1
(B) Design
Q.62.All surfaces of a cube are coloured. If a
number of smaller cubes are taken out from it, each (C) Analysis
side 1/4 the size of the original cube's side, indicate (D) Development and Documentation
the number of cubes with only one side painted.
Q.67. Actual programming of software code is done
(A) 60 (B) 32 during the ____________ step in the SDLC.
(C) 24 (D) 16 (A) Maintenance and Evaluation
Q.63.A cube, painted yellow on all faces is cut into (B) Design
2, small cubes of equal size. How many small cubes
(C) Analysis
are painted on one face only?
(D) Development and Documentation
(A) 1 (B) 6
(C) 8 (D) 12
Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 012 of 016
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -02
Time: 02.00 Hours Questions: 100 Negative:0.33

Q.68. Enhancements, upgrades, and bug fixes are Q.72. ____________ spend most of their time in the
done during the ____________ step in the SDLC. beginning stages of the SDLC, talking with end-
(A) Maintenance and Evaluation users, gathering information, documenting systems,
and proposing solutions.
(B) Problem/Opportunity Identification
(A) Systems analysts
(C) Design
(B) Project managers
(D) Development and Documentation
(C) Network engineers
Q.69. The ____________ determines whether the
project should go forward. (D) Database administrators
Q.73. ____________ manage the system
(A) feasibility assessment
development, assign staff, manage the budget and
(B) opportunity identification reporting, and ensure that deadlines are met.
(C) system evaluation (A) Project managers
(D) program specification (B) Network engineers
Q.70. Technical writers generally provide the (C) Graphic designers
____________ for the new system.
(D) Systems analysts
(A) programs (B) network
Q.74. Debugging is:
(C) analysis (D) documentation
(A) creating program code.
Q.71. ____________ design and implement
(B) finding and correcting errors in the program
database structures.
code.
(A) Programmers
(C) identifying the task to be computerized.
(B) Project managers
(D) creating the algorithm.
(C) Technical writers
Q.75. ____________ is the process of translating a
(D) Database administrators task into a series of commands that a computer will
use to perform that task.
(A) Project design (B) Installation
Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 013 of 016
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -02
Time: 02.00 Hours Questions: 100 Negative:0.33

(C) Systems analysis (D) Programming Q.81. Methodology in which project management
Q.76 Translating the algorithm into a programming processes were step-by step.
language occurs at the ____________ step of the (A) Incremental (B) Waterfall
PDLC.
(C) Spiral (D) Prototyping
(A) Debugging Q.82. An individual who plans and directs the work.
(B) Coding
(A) Stakeholder (B) Project manager
(C) Testing and Documentation
(C) Team leader (D) Programmer
(D) Algorithm Development
Q.83. A planned program if work that requires a
Q.77. A model that is the demo implementation of definitive amount of time, effort and planning to
the system. complete.
(A) waterfall (B) prototype (A) Problem (B) Project
(C) incremental (D) agile (C) Process (D) Program
Q.78. ___________ is a step in which design is Q.84 A software program that is outdated or
translated into machine-readable form. obsolete is termed as
(A) Design (B) Conversion (A) legacy application
(C) Debugging (D) Coding (B) engineering application
Q.79 What do you call a technical person who is (C) embedded application
capable of understanding the basic requirements?
(D) open source application
(A) team leader (B) analyst
Q.85. Spiral model originally proposed by
(C) engineer (D) stakeholder
(A) Boehm (B) Winston
Q.80. A step in waterfall model that involves a
(C) Royce (D)John Crinion
meeting with the customer to understand the
requirements.
(A) Requirement Gathering (B) SRS
(C) Implementation (D) Customer review
Ridhi-Sidhi Circle In Front of Mangalam Electronic Mall Near By IOC Petrol Pump
Page 014 of 016
MOB: 7014528940 / 8949174075 www.infiqueclasses.com
RPSC PROGRAMMER TOPIC WISE TEST – 2024
test NUMBER -02
Time: 02.00 Hours Questions: 100 Negative:0.33

Q.86. In the spiral model ‘risk analysis’ is Q.90. Each loop in the spiral represents _____ of
performed the software process in Boehm’s spiral model
(A) In the first loop (A) phase (B) design
(B) In every loop (C) documentation (D) none of the above
(C) Before using the spiral model Q.91 Spiral model provides support for ____.
(D) in first and second loop (A) Issues diagnosis
Q.87. The spiral model of software development (B) Risk handling
(A) It is more chaotic than the incremental model (C) Problem Identification
(B) Include project risks evaluation during each (D) None of the mentioned above
iteration
Q.92 निम्िनिनित यग्ु मों में कौिसा गित है -
(C) Ends with the delivery of software product
(A) आमेर राज्य की स्थापिा-967
(D) it create only one logical design (B) जैसिमेर की स्थापिा-1156
Q.88. The spiral model has two dimensions namely
(C) अजमेर की स्थापिा-1163
_____________ and ____________.
(D) उदयपरु की स्थापिा-1559
(A) diagonal, angular
Q.93 नकस कछवाहा शासक िे अपिी पत्रु ी का नववाह सम्राट
(B) radial, perpendicular
अकबर से नकया था -
(C) radial, angular (A) राजा मािनसिंह (B) राजा भारमि
(D) diagonal, perpendicular
(C) राजा दि
ु हराय (D) राजा नबहारमि
Q.89 Identify the disadvantage of the Spiral Model. Q.94 सवाई जयनसहिं िे जयपरु की स्थापिा की थी -
(A) Doesn’t work well for smaller projects
(A) 1737 में (B) 1729 में
(B) High amount of risk analysis (C) 1727 में (D) 1735 में
(C) Strong approval and documentation control
(D) None of these

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

Q.95 बातािं री फुिवारी के िेिक कौि है - Q.100 हाि ही में सक्ष्ू म, िघु और मध्यम उद्यम औद्योनगक
(A) श्यामिदास (B) नशवचरण भारतीय प्रदशचिी और मेिे का आयोजि नकस नजिे में नकया गया -
(A) जयपरु (B) अिवर
(C) नवजयदाि देथा (D) सीताराम िािस
(C) कोटा (D) भीिवाडा
Q.96 राजस्थाि के िगरों के िवीि व प्राचीि िामों के जोडों में
कौिसा जोडा गित है -
(A) अराविी - आडवाि
(B) guqekux<+ - भटिेर
(C) जैसिमेर - माड
(D) धौिपरु - धौडिी
Q.97 राजस्थाि में कछवाहा वश
िं का शासि कहािं था -
(A) जयपरु के समीपवती क्षेत्र
(B) भरतपरु के समीपवती क्षेत्र
(C) उदयपरु के समीपवती क्षेत्र
(D) चरू
ु के समीपवती क्षेत्र
Q.98 कौि सा राज्य स्वास््य का अनधकार नबि पाररत करिे
वािा पहिा राज्य बि गया है -
(A) नबहार (B) राजस्थाि
(C) महाराष्ट्र (D) उत्तर प्रदेश
Q.99 हाि ही में (माचच 2023 में) G20 सस्टेिेबि फाइिेंस
वनकिं ग ग्रपु की बैठक कहािं आयोनजत की गयी -
(A) उदयपरु (B) जयपरु
(C) जोधपरु (D) बीकािेर

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

You might also like