JRE Exam Python July SET-B
JRE Exam Python July SET-B
A. limits the column data that are returned. C. limits the rows& columns
returned
B. limits the row data are returned. D.None of these
A. Feature begins with two 0’s C. Feature has more than two 0’s
B. Feature ends with two 0’s D. Feature has two 0’s in it, at any position
15) Find the names of these cities with temperature and condition
whose condition is neither sunny nor cloudy.
A. SELECT city, temperature, condition FROM weather WHERE condition NOT
IN (‘sunny’, ‘cloudy’)
B. SELECT city, temperature, condition FROM weather WHERE condition NOT
BETWEEN (‘sunny’, ‘cloudy’)
C. SELECT city, temperature, condition FROM weather WHERE condition IN
(‘sunny’, ‘cloudy’)
D. SELECT city, temperature, condition FROM weather WHERE condition
BETWEEN (‘sunny’, ‘cloudy’)
JRE Exam Python July SET-B
double_numbe decimal_numbe
r r
1.5 2.5
Name Populatio
n
Nauru 12000
Tuvalu 12000
Which of the following statements will return all rows in the table,
sorted by the value in the Population column? Select the best response
A. SELECT Name, Population ASCFROM Country
B. SELECT Name, ORDER BY Population FROM Country
C. SELECT Name, Population FROM Country GROUP BY Population ASC.
D. SELECT Name, Population FROM Country ORDER BY Population
JRE Exam Python July SET-B
A. 10 B. 5 C. 15 D. 105
23) Which of the following is used to take input from the user in Python?
print((a-b)/2)
else:
print(a-b/2)
b)
a=10
b=4
if(a^b):
print((a-b)/2)
else:
print(a-b/2)
c)
a=10
b=4
if(~a):
print(a-2*b+1)
else:
print(a-b/2)
d)
a=10
b=4
if(a-b):
print(a-2*(b+1))
else:
print(a-b/2)
A. a B. b C. c D. B
41) What is the default database used by Django?
A. MySQL B. SQLite C. PostgreSQL D. MongoDB
JRE Exam Python July SET-B