adplus-dvertising
frame-decoration

Question

What will be the output?
>>>t1 = (1, 2, 4, 3)
>>>t2 = (1, 2, 3, 4)
>>>t1 < t2

a.

True

b.

False

c.

Error

d.

None

Posted under Tuples and Sets Python

Answer: (b).False

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What will be the output?

Similar Questions

Discover Related MCQs

Q. What is the data type of (1)?

Q. If a=(1,2,3,4), a[1:-1] is

Q. What type of data is: a=[(1,1),(2,4),(3,9)]?

Q. Tuples can’t be made keys of a dictionary. True or False?

Q. Which of these about a set is not true?

Q. Which of the following is not the correct syntax for creating a set?

Q. Which of the following statements is used to create an empty set?

Q. If a={5,6,7,8}, which of the following statements is false?

Q. If a={5,6,7}, what happens when a.add(5) is executed?

Q. Which of these about a frozenset is not true?

Q. Set members must not be hashable. True or False?

Q. Which of the following functions will return the symmetric difference between two sets, x and y?

Q. The ____________ function removes the first element of a set and the last element of a list.

Q. The difference between the functions discard and remove is that:

Q. If we have two sets, s1 and s2, and we want to check if all the elements of s1 are present in s2 or not, we can use the function:

Q. Set makes use of __________
Dictionary makes use of ____________

Q. Which of the following lines of code will result in an error?

Q. Input order is preserved in sets. State whether this statement is true or false.

Q. Write a list comprehension for number and its cube for:

l=[1, 2, 3, 4, 5, 6, 7, 8, 9]

Q. Which of the following functions cannot be used on heterogeneous sets?