Q.1.
What is the output of the following program?y == lambda x: x * yprint z (6)
Q.2.
What will be the output of the following Python code snippet?d1 = {"john":"peter":d2 = {"john":"peter":d1 > d2
Q.3.
What does the function re.match do?
Q.4.
Point out the correct combination with regards to kind keyword for graph plotting.
Q.5.
What is the output of the following program?squares = {1:2:3:4:5:25}print(squares.pop(4))print(squares)
Q.6.
Data Frame in pandas is
Q.7.
This function in the library of Pandas allows you to manipulate data and create new variables:
Q.8.
______________ function returns current date and time.
Q.9.
In a SELECT with a GROUP BY clause, a WHERE clause, and a HAVING clause, the WHERE conditions are applied before the HAVING conditions.
Q.10.
We apply the aggregate function to a group of sets of tuples using the _______ clause.