This quiz is for Batch 1( NON IT batch) and contains 50 MCQ questions. All the best :)
1
2
3
4
Rate this question:
0 1 4 6
0 1 4 5
0 1 4 2
1 2 3 4 5
Rate this question:
Hello and welcome to python13
13hello and welcome to python
Hello and welcome to python 13
None of the above
Rate this question:
List1[0]: physics list1[0]: 2000 list1[-2]: ['chemistry', 1997, 2000] list2[1:5]: [2, 3, 4, 5]
List1[0]: physics list1[0]: 1997 list1[-2]: ['chemistry', 1997, 2000] list2[1:5]: [2, 3, 4, 5]
List1[0]: chemistry list1[0]: 1997 list1[-2]: ['chemistry', 1997, 2000] list2[1:5]: [3,4,5,6]
List1[0]: physics list1[0]: 1997 list1[-2]: ['chemistry', 1997, 2000] list2[1:5]: [1, 3, 4, 5]
Rate this question:
List1 + list 2 = : [1998, 2002, 1997, 2000, 2014, 2016, 1996, 2009]list1 * 2 = : [2002, 1997, 2000, 1998, 2002, 1997, 2000,1998]
List1 + list 2 = : [1998, 2002, 1997, 2000, 2014, 2016, 1996, 2009] list1 * 2 = : [1998, 2002, 2000,1997, 1998, 2002, 1997, 2000]
List1 + list 2 = : [1998, 2002, 1997, 2000, 2014, 2016, 1996, 2009] list1 * 2 = : [1998, 2002, 1997, 2000, 1998, 2002, 1997, 2000]
List1 + list 2 = : [1998, 2002, 1997, 2000, 2014, 2016, 1996, 2009] list1 * 2 = : [1998, 2002, 1997, 2000, 1998, 2002, 2000,1997]
Rate this question:
List1= : [0, 2, 3, 4, 5]
List1= : [1, 2, 3, 4, 5]
List1= : [0, 1, 2, 3, 4]
List1= : [0, 2, 3, 4, 1]
Rate this question:
['ab', 'cd']
['AB', 'CD']
['cd', 'ab']
['cd', 'AB']
Rate this question:
Hello('Frodo','Sauron')
Syntax Error
Hello ('Frodo', 'Sauron')
Hello('Sauron'Frodo'')
Rate this question:
Print(math.pi)
Print(pi)
From math import pi print(pi)
From math import pi print(math.pi)
Rate this question:
Returns the class of object
Type of the object
Memory location of the object
All of above
Rate this question:
Dictionary comprehension doesn’t exist
{0: 0, 1: 1, 2: 4, 3: 9, 4: 16, 5: 25, 6:36}
{0: 0, 1: 1, 4: 4, 9: 9, 16: 16, 25: 25}
{0: 0, 1: 1, 2: 4, 3: 9, 4: 16, 5: 25}
Rate this question:
[‘What’, ‘will’, ‘have’, ‘so’, ‘will’]
Wh t will h ve so will
What will have so will
[‘Wh’, ‘t will h’, ‘ve so will’]
Rate this question:
1 2 3
1 2
Syntax Error
None of these
Rate this question:
11
12
5
6
Rate this question:
[]
No output
Error
None of these
Rate this question:
0 1 2 3 0
0 1 2 0
0 1 2
Error
Rate this question:
Welcometocampusconnectaaaaaaaaaaaa
Welcometocampusconnect a a a a a a a a a a a a
Welcometocampusconnect
A a a a a a a a a a a a
Rate this question:
Hello
Welcome
Infosys
None of the above
Rate this question:
Cannot divide by 0 Hello
Cannot divide by 0
Cannot divide by 0 Inside except block Hello
Cannot divide by 0 Inside except block
Rate this question:
SELECT * FROM emp WHERE empid = 493945;
SELECT empid FROM emp WHERE empid= 493945;
SELECT empid FROM emp;
SELECT empid WHERE empid = 56949 AND lastname = ‘SMITH’;
Rate this question:
Primary Key Ì Super Key Ì Candidate Key
Candidate Key Ì Super Key Ì Primary Key
Primary Key Ì Candidate Key Ì Super Key
Super Key Ì Primary Key Ì Candidate Key
Max
Min
Sum
All of above
Rate this question:
1-D, 2-C,3-B, 4-A
1-C, 2-B, 3-D, 4-A
1-B, 2-A, 3-D, 4-C
1-A, 2-C, 3-B, 4-D
SELECT ENAME FROM EMP ORDER BY SALARY
SELECT ENAME, SALARY FROM EMP
SELECT ENAME,SALARY FROM EMP ORDER BY SALARY
SELECT ENAME, SALARY FROM EMP ORDER BY ENAME
Rate this question:
V XYZ
V WXZ
VWXY
VWXYZ
Rate this question:
Normalization
Data Integrity
Materialized View
All of above
Rate this question:
Acts like a WHERE clause but is used for groups rather than rows
Acts like a WHERE clause but is used for rows rather than columns
Acts like a WHERE clause but is used for columns rather than groups
Acts EXACTLY like a WHERE clause.
Rate this question:
A transaction writes a data item after it is read by an uncommitted transaction
A transaction reads a data item after it is read by an uncommitted transaction
A transaction reads a data item after it is written by a committed transaction
A transaction reads a data item after it is written by an uncommitted transaction
Rate this question:
Be in Second Normal Form (2NF)
Be in Third Normal Form (3NF)
Have a single attribute key
Have a Composite key
Rate this question:
Null
Unique
Not Null
Distinct
Rate this question:
Cx_Oracle
Sqlite3
MySQLDB
None of the above
Rate this question:
Fetchone()
Execute()
Close()
Scroll()
Rate this question:
"for con in cur: print con"
Print cur.printall()
"for result in cur: print result"
None of the above
Rate this question:
Undo changes when a transaction is rolled back
Ensure other transactions do not see uncommitted changes made to the database
Recover the database to a consistent state in case of failures
All of above
Rate this question:
Username, password
Username, password and Connection String
Connection String
None of the above
Rate this question:
True
False
Rate this question:
2 4
2 2
2 Error
Rate this question:
2
No output
Error:Super has no attribute count
Rate this question:
Access Base class members
Access Derived class members
None of the above
Rate this question:
Error
45 4
1 3
Rate this question:
Error in calling super
M1 from B followed by m1 from A
No method as m1 in B
Option 4
Rate this question:
1 10
1 20
2 10*
1 20
Rate this question:
IS-A HAS-A
HAS-A IS-A
IS-A USES-A
USES-A HAS-A
Rate this question:
Yes
NO
Rate this question:
From
Select
Order by
Where
Rate this question:
Cross join
Natural Join
Outer Join
Join with USING clause
Rate this question:
Zero tuples and empty relation
One tuple from one relation
Zero tuples from two relation
Two tuples from empty relations
Rate this question:
Define Clause
Where Clause
Having Clasue
Select Clause
Rate this question:
Quiz Review Timeline (Updated): Jan 31, 2023 +
Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.
Wait!
Here's an interesting quiz for you.