121. The headquarter of RBI is
- New Delhi
- Mumbai
- Chennai
- Bengaluru
122. Taxation is a tool of
- Price Policy
- Fiscal Policy
- Wage Policy
- monetary Policy
123. Typhoid is caused by
- Bacteria
- Virus
- Fungus
- Protozoa
124. Where are mesons found?
- Cosmic rays
- x-rays
- gamma rays
- laser beam
125. Kidney stone are composed of
- Calcium oxalate
- Sodium chloride
- Magnesium nitrate
- Calcium bicarbonate
126. Antonym of ‘Amenable’ is
- Stubborn
- Docile
- Obedient
- Offensive
127. One word substitution for ‘A child of unusual or remarkable talent’ is
- Scholar
- Diligent
- Freak
- Prodigy
128. Meaning of the idiom ‘ Have a foot in the grave’ is
- Be afraid to die
- Have no interest in life
- Be close to death
- Have an incurable disease
129. ‘पुरुषोत्तम’ मेंसमासहै
- दन्त
- बहुब्रीहि
- तत्पुरुष
- अव्यईभाव
130. ‘हाथ उठान ‘ मुहाबरे का अर्थ है
- आशा छोड़ना
- आश्रय देना
- आरम्भ करना
- सहायता बंद कर देना
131. ‘देवालय’ कौन सा शब्द है?
- रूढ़ि
- योगिक
- योगरूढ़ि
- इनमे से कोई नहीं
132. Which of the following statement is not true about ‘C’ programming language?
- It is a high-level programming language.
- It was invented by Dennis Ritchie.
- It is case – insensitive programming language.
- It is a compiled programming language.
133. How is a macro defined in ‘C’ language?
- Using a struct
- Using # define directive
- Using a function
- Using a union
134. Which of the following is the correct statement in ‘C’ to read an integer value into a variable x?
- Gets (x) ;
- sCanf (‘%d/n”, x);
- scanf (“/d”, x);
- scanf (“ %d”, & x);
135. What will be the value returned by the following expression in a ‘C’ program?
5++; 4
- 5
- 6
- 7
- It is an invalid expression
136. Which control structure is represented by the flowchart segment shown below?
- While
- Do….while
- Simple if
- If …..else
137. What will be the value returned by the following expression in a ‘C’ program?
5 & 4 ;
- 1
- 9
- 4
- 5
138. Which of the following is the correct statement in C to print the value of a floating point variable x with a precision of two positions after decimal point?
- Printf (“%2f”,X );
- Printf (“%.2f” , x) ;
- Printf (“%.2f” ,& x) ;
- Printf (“%2f” &, x) ;
139. Which of the following is the correct escape sequence for newline character?
- %n
- /n
- &n
- #n
140. What will be the size of the array n after the following declaration in a ‘C’ program?
Char n (_ = ‘Hello world ! “;
- 13
- 14
- 12
- 11
141. Which of the following arithmetic operators cannot be used with a pointer variable?
- –
- *
- ++
- +
142. Which of the following is the right ‘C’ expression for the mathematical expression given below ?
S=ut +1/2at2
- S = u*t + ½*a*t2
- S = u*t +1/(2.0*a*t*t
- S = u*t + ½.0*a*t*t
- S = ut + ½*at^2
143. Which of the following arithmetic operators in ‘C’ requires a ‘valid value as its operand?
- *
- +
- ++
- %
144. What is the correct symbol for address operator in ‘C” ?
- *
- #
- ^
- &
145. Which of the following is the correct symbol for logical OR operator in ‘C’?
- &&
- ++
- II
- >>
146. Which of the following is the correct symbol for bitwise XOR operator in ‘C’ ?
- ~
- <<
- I
- ^
147. Which of the following is a formatted input function in ‘C”?
- Getch ()
- Scanf ()
- Printf()
- Getchar()
148. Which of the following standard header files in ‘C’ defines the function fscanf()?
- Stdlib.h
- Stdio, h
- Limits.h
- Studio .h
149. Which of the following types of expressions is not allowed as Switch expression in switch …… case statement in ‘C’?
- Char
- Float
- Enum
- Int.
150. Which of the following statements is not true about functions in ‘C’ programming?
- A function can either return nothing or a single value only.
- “C” supports recursive functions.
- A function can accept zero or more arguments.
- A function can be defined inside another function.
151. What will be the output produced by the following statement in a ‘C’ Programe?
Printf (“%x”, 64 );
- 40
- 64
- 80
- X
152. What is the full form of SQL?
- Standard Query Learning
- Structured Query language
- Simple Query Language
- Simple Queueing Language
153. How many layers are there in ANSI/SPARC model of database architecture?
- 5
- 3
- 4
- 6
154. Which of the following shapes is used to represent a relationship in ER diagram of a database?
Answer: A
155. A …………. Key consists of one or more columns of a database table used to uniquely identify the records of that table.
- Secondary
- Foreign
- Super
- Primary
156. The Cartesian product of two database tables having two columns and four rows each will result in relation with …… columns and ……… rows.
- 4,16
- 4,8
- 4,4
- 2,8
157. Which of the following constraints in relational databases is used to enforce referential integrity?
- NOT NULL
- FOREIGN KEY
- UNIQUE
- PRIMARY KEY
158. Which of the following is a DDL SQL command?
- UPDATE
- DELETE
- INSERT
- ALTER
159. The …………. Of two database tables contain all the rows which are common in both tables.
- Cartesian product
- Join
- Intersection
- Union
160. Which of the following is the correct SQL query that fetches the different ‘ surname’ from the ‘employee’ table without any duplicate values?
- SELECT UNIQUE surname from employee
- SELECT DUPLICATE surname FROM employee
- SELECT DIFFERENT surname FROM employee
- SELECT DISTINCT surname FROM employee
161. Which of the following is not a Relational Database Management System?
- Oracle
- MongoDB
- MySQL
- MS-SQL Server
162. What is 2’s compliment of the binary number 00110001 ?
- 01011011
- 01111001
- 01001110
- 11001110
163. What is the equivalent binary number of (123 )10?
- 01011011
- 01111001
- 01101011
- 01111011
164. Which of the following Boolean algebra equations is known as DeMorgan’s law?
- A+1=1
- A(b+c)=ab+ac
- a.0=0
- (a+b)’=a’.b’
165. Which of the following is a sequential digital circuit?
- Multiplexer
- Flip flop
- Decoder
- Adder
166. What type of data structure is shown in the diagram given below?
- Stack
- Array
- Linked list
- Tree
167. Which of the following trees is a binary search tree
Answer: A
168. How many comparison operations will binary search algorithm take to search the element 6 in the array ( 1, 2 3, 4, 5, 6, 7 ) ?
- 3
- 2
- 4
- 5
169. Which of the following data structures is also known as First-In- First-Out structure?
- Tree
- Array
- Queue
- Stack
170. Which of the following data structures supports PUSH and POP operations?
- Queue
- Tree
- Linked List
- stack